* [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP
@ 2025-02-28 14:18 Soham Purkait
2025-02-28 14:18 ` [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver Soham Purkait
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: Soham Purkait @ 2025-02-28 14:18 UTC (permalink / raw)
To: igt-dev, riana.tauro, vinay.belgaumkar
Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait,
jonathan.ming.jun.lui
Add single engine busyness support in GPUTOP. This uses
the PMU interface to display the busyness of each
engine instances.
This patch refactors GPUTOP to be vendor-agnostic,
laying the groundwork for future support of multiple
GPU vendors.
Currently, GPUTOP supports GPUs with Xe driver only and can
monitor the engine busyness of multiple GPU devices
simultaneously through abstracting vendor-specific code
into a common interface and implementing vendor-neutral
APIs for monitoring.
DRIVER: xe || SLOT: 0000:00:02.0
ENGINES BUSY
Render/3D/0 | 96.5% ███████████████████████████████████████ |
Blitter/0 | 91.6% █████████████████████████████████████ |
Video/0 | 56.2% ███████████████████████████ |
VideoEnhance/0| 97.7% ████████████████████████████████████████|
Compute/0 | 48.5% ███████████████████████ |
Soham Purkait (4):
lib/igt_device_scan: Enable finding all IGT devices for xe driver
tools/gputop/common_gputop: Add gputop functionality common to all drivers
tools/gputop/xe_gputop: Add gputop support for xe specific devices
tools/gputop: Enable support for multiple GPUs and instances
lib/igt_device_scan.c | 97 +++++++++
lib/igt_device_scan.h | 3 +
tools/gputop/common_gputop.c | 79 +++++++
tools/gputop/common_gputop.h | 58 +++++
tools/{ => gputop}/gputop.c | 203 ++++++++++++++----
tools/gputop/meson.build | 6 +
tools/gputop/xe_gputop.c | 404 +++++++++++++++++++++++++++++++++++
tools/gputop/xe_gputop.h | 74 +++++++
tools/meson.build | 6 +-
9 files changed, 881 insertions(+), 49 deletions(-)
create mode 100644 tools/gputop/common_gputop.c
create mode 100644 tools/gputop/common_gputop.h
rename tools/{ => gputop}/gputop.c (71%)
create mode 100644 tools/gputop/meson.build
create mode 100644 tools/gputop/xe_gputop.c
create mode 100644 tools/gputop/xe_gputop.h
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait @ 2025-02-28 14:18 ` Soham Purkait 2025-02-28 16:58 ` Lucas De Marchi 2025-02-28 14:18 ` [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers Soham Purkait ` (6 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Soham Purkait @ 2025-02-28 14:18 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait, jonathan.ming.jun.lui v2 : fix for refactoring GPUTOP into a vendor-agnostic tool (Lucas) v3 : Separate commit for lib (Kamil) --- lib/igt_device_scan.c | 97 +++++++++++++++++++++++++++++++++++++++++++ lib/igt_device_scan.h | 3 ++ 2 files changed, 100 insertions(+) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 711bedc5c..bdbe09761 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card) safe_strncpy(card->render, dev->drm_render, sizeof(card->render)); + if (dev->driver != NULL) + safe_strncpy(card->driver, dev->driver, + sizeof(card->driver)); + if (dev->pci_slot_name != NULL) safe_strncpy(card->pci_slot_name, dev->pci_slot_name, sizeof(card->pci_slot_name)); @@ -820,6 +824,99 @@ static bool __find_first_intel_card_by_driver_name(struct igt_device_card *card, return false; } +/* + * Iterate over all igt_devices array and find all discrete/integrated card. + * @card: double pointer to igt_device_card structure, containing + * an array of igt_device_card structure upon successful return. + */ +static int __find_all_intel_card_by_driver_name(struct igt_device_card **card, + bool want_discrete, const char *drv_name) +{ + int count = 0; + struct igt_device *dev; + int is_integrated; + struct igt_device_card *tmp; + struct igt_device_card *crd = + (struct igt_device_card *)calloc(1, sizeof(struct igt_device_card)); + + igt_assert(drv_name); + memset(card, 0, sizeof(*card)); + + igt_list_for_each_entry(dev, &igt_devs.all, link) { + if (!is_pci_subsystem(dev) || strcmp(dev->driver, drv_name)) + continue; + + is_integrated = !strncmp(dev->pci_slot_name, INTEGRATED_I915_GPU_PCI_ID, + PCI_SLOT_NAME_SIZE); + + if (want_discrete && !is_integrated) { + __copy_dev_to_card(dev, (crd + count)); + count++; + tmp = realloc(crd, sizeof(struct igt_device_card) * (1 + count)); + if (!tmp) { + free(crd); + return -1; + } + crd = tmp; + + } else if (!want_discrete && is_integrated) { + __copy_dev_to_card(dev, (crd + count)); + count++; + tmp = realloc(crd, sizeof(struct igt_device_card) * (1 + count)); + if (!tmp) { + free(crd); + return -1; + } + crd = tmp; + } + } + if (count == 0) { + free(crd); + return 0; + } + + *card = crd; + return count; +} + +/** + * igt_device_find_all_xe_integrated_card + * @card: double pointer to igt_device_card structure + * + * Iterate over all igt_devices array and find only xe integrated + * cards and populate an array of igt_device_card structure upon + * successful return. + * card will be updated with the pointer to the array of + * igt_device_card structure only if at least a single such device + * is found. + * + * Returns: number of integrated xe device is found. + */ +int igt_device_find_all_xe_integrated_card(struct igt_device_card **card) +{ + igt_assert(card); + return __find_all_intel_card_by_driver_name(card, false, "xe"); +} + +/** + * igt_device_find_all_xe_discrete_card + * @card: double pointer to igt_device_card structure + * + * Iterate over all igt_devices array and find only xe discrete + * cards and populate an array of igt_device_card structure upon + * successful return. + * card will be updated with the pointer to the array of + * igt_device_card structure only if at least a single such device + * is found. + * + * Returns: number of discrete xe device is found. + */ +int igt_device_find_all_xe_discrete_card(struct igt_device_card **card) +{ + igt_assert(card); + return __find_all_intel_card_by_driver_name(card, true, "xe"); +} + bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card) { igt_assert(card); diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h index 92741fe3c..25d3c462f 100644 --- a/lib/igt_device_scan.h +++ b/lib/igt_device_scan.h @@ -59,6 +59,7 @@ struct igt_device_card { char subsystem[NAME_MAX]; char card[NAME_MAX]; char render[NAME_MAX]; + char driver[NAME_MAX]; char pci_slot_name[PCI_SLOT_NAME_SIZE+1]; uint16_t pci_vendor, pci_device; }; @@ -92,6 +93,8 @@ bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card); bool igt_device_find_integrated_card(struct igt_device_card *card); bool igt_device_find_first_xe_discrete_card(struct igt_device_card *card); bool igt_device_find_xe_integrated_card(struct igt_device_card *card); +int igt_device_find_all_xe_integrated_card(struct igt_device_card **card); +int igt_device_find_all_xe_discrete_card(struct igt_device_card **card); char *igt_device_get_pretty_name(struct igt_device_card *card, bool numeric); int igt_open_card(struct igt_device_card *card); int igt_open_render(struct igt_device_card *card); -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver 2025-02-28 14:18 ` [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver Soham Purkait @ 2025-02-28 16:58 ` Lucas De Marchi 0 siblings, 0 replies; 12+ messages in thread From: Lucas De Marchi @ 2025-02-28 16:58 UTC (permalink / raw) To: Soham Purkait Cc: igt-dev, riana.tauro, vinay.belgaumkar, anshuman.gupta, rodrigo.vivi, jonathan.ming.jun.lui On Fri, Feb 28, 2025 at 07:48:07PM +0530, Soham Purkait wrote: >v2 : fix for refactoring GPUTOP into a > vendor-agnostic tool (Lucas) Sorry, but I think the abstraction here is not there yet. I'm commenting more below. > >v3 : Separate commit for lib (Kamil) > >--- > lib/igt_device_scan.c | 97 +++++++++++++++++++++++++++++++++++++++++++ > lib/igt_device_scan.h | 3 ++ > 2 files changed, 100 insertions(+) > >diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c >index 711bedc5c..bdbe09761 100644 >--- a/lib/igt_device_scan.c >+++ b/lib/igt_device_scan.c >@@ -774,6 +774,10 @@ __copy_dev_to_card(struct igt_device *dev, struct igt_device_card *card) > safe_strncpy(card->render, dev->drm_render, > sizeof(card->render)); > >+ if (dev->driver != NULL) >+ safe_strncpy(card->driver, dev->driver, >+ sizeof(card->driver)); >+ > if (dev->pci_slot_name != NULL) > safe_strncpy(card->pci_slot_name, dev->pci_slot_name, > sizeof(card->pci_slot_name)); >@@ -820,6 +824,99 @@ static bool __find_first_intel_card_by_driver_name(struct igt_device_card *card, > return false; > } > >+/* >+ * Iterate over all igt_devices array and find all discrete/integrated card. >+ * @card: double pointer to igt_device_card structure, containing >+ * an array of igt_device_card structure upon successful return. >+ */ >+static int __find_all_intel_card_by_driver_name(struct igt_device_card **card, >+ bool want_discrete, const char *drv_name) >+{ >+ int count = 0; >+ struct igt_device *dev; >+ int is_integrated; >+ struct igt_device_card *tmp; >+ struct igt_device_card *crd = >+ (struct igt_device_card *)calloc(1, sizeof(struct igt_device_card)); >+ >+ igt_assert(drv_name); >+ memset(card, 0, sizeof(*card)); >+ >+ igt_list_for_each_entry(dev, &igt_devs.all, link) { >+ if (!is_pci_subsystem(dev) || strcmp(dev->driver, drv_name)) >+ continue; >+ >+ is_integrated = !strncmp(dev->pci_slot_name, INTEGRATED_I915_GPU_PCI_ID, >+ PCI_SLOT_NAME_SIZE); >+ >+ if (want_discrete && !is_integrated) { >+ __copy_dev_to_card(dev, (crd + count)); >+ count++; >+ tmp = realloc(crd, sizeof(struct igt_device_card) * (1 + count)); >+ if (!tmp) { >+ free(crd); >+ return -1; >+ } >+ crd = tmp; >+ >+ } else if (!want_discrete && is_integrated) { >+ __copy_dev_to_card(dev, (crd + count)); >+ count++; >+ tmp = realloc(crd, sizeof(struct igt_device_card) * (1 + count)); >+ if (!tmp) { >+ free(crd); >+ return -1; >+ } >+ crd = tmp; >+ } >+ } >+ if (count == 0) { >+ free(crd); >+ return 0; >+ } >+ >+ *card = crd; >+ return count; >+} >+ >+/** >+ * igt_device_find_all_xe_integrated_card >+ * @card: double pointer to igt_device_card structure >+ * >+ * Iterate over all igt_devices array and find only xe integrated >+ * cards and populate an array of igt_device_card structure upon >+ * successful return. >+ * card will be updated with the pointer to the array of >+ * igt_device_card structure only if at least a single such device >+ * is found. >+ * >+ * Returns: number of integrated xe device is found. >+ */ >+int igt_device_find_all_xe_integrated_card(struct igt_device_card **card) >+{ >+ igt_assert(card); >+ return __find_all_intel_card_by_driver_name(card, false, "xe"); >+} >+ >+/** >+ * igt_device_find_all_xe_discrete_card >+ * @card: double pointer to igt_device_card structure >+ * >+ * Iterate over all igt_devices array and find only xe discrete >+ * cards and populate an array of igt_device_card structure upon >+ * successful return. >+ * card will be updated with the pointer to the array of >+ * igt_device_card structure only if at least a single such device >+ * is found. >+ * >+ * Returns: number of discrete xe device is found. >+ */ >+int igt_device_find_all_xe_discrete_card(struct igt_device_card **card) >+{ >+ igt_assert(card); >+ return __find_all_intel_card_by_driver_name(card, true, "xe"); >+} >+ > bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card) > { > igt_assert(card); >diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h >index 92741fe3c..25d3c462f 100644 >--- a/lib/igt_device_scan.h >+++ b/lib/igt_device_scan.h >@@ -59,6 +59,7 @@ struct igt_device_card { > char subsystem[NAME_MAX]; > char card[NAME_MAX]; > char render[NAME_MAX]; >+ char driver[NAME_MAX]; For me this is the only part in this patch that should exist (together with the patch above that is populating it). IMO we shouldn't really add igt_device_find_all_{driver}_{type}_card() functions. Imagine supporting 10 drivers. Are we going to create (internal) APIs for everything? I think it's better to use a composition strategy. For that you only need to add the driver name in igt_device_card, i.e. what this part is doing. When you enumerate the gpu devices, it saves the driver name. The callers then decide what to do with the enumerated devices. If a "filter while enumerating" strategy is what you want, then you could add a match callback or match criteria. Example: igt_device_card_match() already implements the latter - filtering by driver could be added if it's not already there. If you are doing a long-running application like gputop, you'd likely call igt_devices_scan() then walk the list to check what drivers you have and do special things for each of them. You shouldn't really call "find all i915 discrete cards" + "find all xe discrete cards" + "find all foobar cards connected via usbc with display active", etc. Handling device disconnects would be nice to have too, but at least we shouldn't crash. Looking at patches 3 and 4, I'm not sure why you are separating the lists for integrated/discrete if then later you do count_int = igt_device_find_all_xe_integrated_card(&card_int); count_dis = igt_device_find_all_xe_discrete_card(&card_dis); and do the same thing for both. Lucas De Marchi > char pci_slot_name[PCI_SLOT_NAME_SIZE+1]; > uint16_t pci_vendor, pci_device; > }; >@@ -92,6 +93,8 @@ bool igt_device_find_first_i915_discrete_card(struct igt_device_card *card); > bool igt_device_find_integrated_card(struct igt_device_card *card); > bool igt_device_find_first_xe_discrete_card(struct igt_device_card *card); > bool igt_device_find_xe_integrated_card(struct igt_device_card *card); >+int igt_device_find_all_xe_integrated_card(struct igt_device_card **card); >+int igt_device_find_all_xe_discrete_card(struct igt_device_card **card); > char *igt_device_get_pretty_name(struct igt_device_card *card, bool numeric); > int igt_open_card(struct igt_device_card *card); > int igt_open_render(struct igt_device_card *card); >-- >2.34.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait 2025-02-28 14:18 ` [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver Soham Purkait @ 2025-02-28 14:18 ` Soham Purkait 2025-03-04 10:07 ` Riana Tauro 2025-02-28 14:18 ` [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices Soham Purkait ` (5 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Soham Purkait @ 2025-02-28 14:18 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait, jonathan.ming.jun.lui v2 : fix for refactoring GPUTOP into a vendor-agnostic tool (Lucas) v3 : Headers in alphabetical order (Kamil, Riana) --- tools/gputop/common_gputop.c | 79 ++++++++++++++++++++++++++++++++++++ tools/gputop/common_gputop.h | 58 ++++++++++++++++++++++++++ 2 files changed, 137 insertions(+) create mode 100644 tools/gputop/common_gputop.c create mode 100644 tools/gputop/common_gputop.h diff --git a/tools/gputop/common_gputop.c b/tools/gputop/common_gputop.c new file mode 100644 index 000000000..578bd0a01 --- /dev/null +++ b/tools/gputop/common_gputop.c @@ -0,0 +1,79 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ +#include <assert.h> + +#include "common_gputop.h" + +static const char * const bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" }; + +/* tr_pmu_name() + * + * Transliterate pci_slot_id to sysfs device name entry for GPU + * from type struct igt_device_card. + * GPU PCI ID ("xxxx:yy:zz.z") device = "xe_xxxx_yy_zz.z". + */ +char *tr_pmu_name(const 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; +} + +void n_spaces(const unsigned int n) +{ + unsigned int i; + + for (i = 0; i < n; i++) + putchar(' '); +} + +void print_percentage_bar(double percent, int max_len) +{ + int bar_len, i, len = max_len - 1; + const int w = 8; + + len -= printf("|%5.1f%% ", percent); + + /* no space left for bars, do what we can */ + if (len < 0) + len = 0; + + bar_len = ceil(w * percent * len / 100.0); + if (bar_len > w * len) + bar_len = w * len; + + for (i = bar_len; i >= w; i -= w) + printf("%s", bars[w]); + if (i) + printf("%s", bars[i]); + + len -= (bar_len + (w - 1)) / w; + n_spaces(len); + + putchar('|'); +} + +int print_engines_footer(int lines, int con_w, int con_h) +{ + if (lines++ < con_h) + printf("\n"); + + return lines; +} diff --git a/tools/gputop/common_gputop.h b/tools/gputop/common_gputop.h new file mode 100644 index 000000000..4e6f632af --- /dev/null +++ b/tools/gputop/common_gputop.h @@ -0,0 +1,58 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +#ifndef COMMON_GPUTOP_H +#define COMMON_GPUTOP_H + +#include <math.h> +#include <stdbool.h> +#include <stdio.h> +#include <stdlib.h> + +#include "igt_device_scan.h" + +#define ANSI_HEADER "\033[7m" +#define ANSI_RESET "\033[0m" + +/** + * struct gputop_device + * + * @driver_present: It is set if at least a + * single device found of the respective driver + * @len: Number of total device discovered + * of the respective driver + * @instances: pointer to the array of + * discovered instances of the devices + * of the same driver + */ +struct gputop_device { + bool driver_present; + int len; + void *instances; +}; + +/** + * struct device_operations - Structure to hold function + * pointers for device specific operations for each individual driver. + * @populate_device_instances: Function to populate device instances. + * @discover_engines: Function to discover engines. + * @pmu_init: Function to initialize the PMU (Performance Monitoring Unit). + * @pmu_sample: Function to sample PMU data. + * @print_engines: Function to print engine business. + */ +struct device_operations { + void (*populate_device_instances)(struct gputop_device *dv); + void *(*discover_engines)(const void *obj); + int (*pmu_init)(const void *obj); + void (*pmu_sample)(const void *obj); + int (*print_engines)(const void *obj, int lines, int w, int h); +}; + +void print_percentage_bar(double percent, int max_len); +int print_engines_footer(int lines, int con_w, int con_h); +void n_spaces(const unsigned int n); +char *tr_pmu_name(const struct igt_device_card *card); + +#endif // COMMON_GPUTOP_H -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers 2025-02-28 14:18 ` [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers Soham Purkait @ 2025-03-04 10:07 ` Riana Tauro 0 siblings, 0 replies; 12+ messages in thread From: Riana Tauro @ 2025-03-04 10:07 UTC (permalink / raw) To: Soham Purkait, igt-dev, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, jonathan.ming.jun.lui Hi Soham Add description for each patch On 2/28/2025 7:48 PM, Soham Purkait wrote: > v2 : fix for refactoring GPUTOP into a > vendor-agnostic tool (Lucas) > > v3 : Headers in alphabetical order (Kamil, Riana) missing signed-off-by use git commit -s > > --- > tools/gputop/common_gputop.c | 79 ++++++++++++++++++++++++++++++++++++ > tools/gputop/common_gputop.h | 58 ++++++++++++++++++++++++++ > 2 files changed, 137 insertions(+) > create mode 100644 tools/gputop/common_gputop.c > create mode 100644 tools/gputop/common_gputop.h > > diff --git a/tools/gputop/common_gputop.c b/tools/gputop/common_gputop.c > new file mode 100644 > index 000000000..578bd0a01 > --- /dev/null > +++ b/tools/gputop/common_gputop.c since this file has formatting and printing related functions. different name? > @@ -0,0 +1,79 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2025 Intel Corporation > + */ > +#include <assert.h> > + > +#include "common_gputop.h" > + > +static const char * const bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" }; > + > +/* tr_pmu_name() > + * > + * Transliterate pci_slot_id to sysfs device name entry for GPU > + * from type struct igt_device_card. > + * GPU PCI ID ("xxxx:yy:zz.z") device = "xe_xxxx_yy_zz.z". > + */ > +char *tr_pmu_name(const 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); this file is named common but has "xe" in this function you can use below from lib/igt_perf.h const char *xe_perf_device(int xe, char *buf, int buflen) const char *i915_perf_device(int i915, char *buf, int buflen) or add a common function in igt_perf and re-use > + assert(ret == (bufsize - 1)); > + > + buf = device; > + for (; *buf; buf++) > + if (*buf == ':') > + *buf = '_'; > + > + return device; > +} > + > +void n_spaces(const unsigned int n) > +{ > + unsigned int i; > + > + for (i = 0; i < n; i++) > + putchar(' '); > +} > + > +void print_percentage_bar(double percent, int max_len) > +{ > + int bar_len, i, len = max_len - 1; > + const int w = 8; > + > + len -= printf("|%5.1f%% ", percent); > + > + /* no space left for bars, do what we can */ > + if (len < 0) > + len = 0; > + > + bar_len = ceil(w * percent * len / 100.0); > + if (bar_len > w * len) > + bar_len = w * len; > + > + for (i = bar_len; i >= w; i -= w) > + printf("%s", bars[w]); > + if (i) > + printf("%s", bars[i]); > + > + len -= (bar_len + (w - 1)) / w; > + n_spaces(len); > + > + putchar('|'); > +} > + > +int print_engines_footer(int lines, int con_w, int con_h) > +{ > + if (lines++ < con_h) > + printf("\n"); > + > + return lines; > +} > diff --git a/tools/gputop/common_gputop.h b/tools/gputop/common_gputop.h > new file mode 100644 > index 000000000..4e6f632af > --- /dev/null > +++ b/tools/gputop/common_gputop.h > @@ -0,0 +1,58 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2025 Intel Corporation > + */ > + > +#ifndef COMMON_GPUTOP_H > +#define COMMON_GPUTOP_H > + > +#include <math.h> > +#include <stdbool.h> > +#include <stdio.h> > +#include <stdlib.h> > + > +#include "igt_device_scan.h" > + > +#define ANSI_HEADER "\033[7m" > +#define ANSI_RESET "\033[0m" > + > +/** > + * struct gputop_device > + * > + * @driver_present: It is set if at least a > + * single device found of the respective driver > + * @len: Number of total device discovered > + * of the respective driver > + * @instances: pointer to the array of > + * discovered instances of the devices > + * of the same driver > + */ > +struct gputop_device { > + bool driver_present; > + int len; > + void *instances; > +}; > + > +/** > + * struct device_operations - Structure to hold function > + * pointers for device specific operations for each individual driver. > + * @populate_device_instances: Function to populate device instances. > + * @discover_engines: Function to discover engines. > + * @pmu_init: Function to initialize the PMU (Performance Monitoring Unit). > + * @pmu_sample: Function to sample PMU data. > + * @print_engines: Function to print engine business. > + */ > +struct device_operations { > + void (*populate_device_instances)(struct gputop_device *dv); %s/dv/dev or device > + void *(*discover_engines)(const void *obj); > + int (*pmu_init)(const void *obj); > + void (*pmu_sample)(const void *obj); > + int (*print_engines)(const void *obj, int lines, int w, int h); > +}; Why not combine both? Both are device specific. Thanks Riana Tauro > + > +void print_percentage_bar(double percent, int max_len); > +int print_engines_footer(int lines, int con_w, int con_h); > +void n_spaces(const unsigned int n); > +char *tr_pmu_name(const struct igt_device_card *card); > + > +#endif // COMMON_GPUTOP_H ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait 2025-02-28 14:18 ` [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver Soham Purkait 2025-02-28 14:18 ` [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers Soham Purkait @ 2025-02-28 14:18 ` Soham Purkait 2025-03-04 10:22 ` Riana Tauro 2025-02-28 14:18 ` [PATCH i-g-t v3 4/4] Enable support for multiple GPUs and instances Soham Purkait ` (4 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Soham Purkait @ 2025-02-28 14:18 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait, jonathan.ming.jun.lui v2 : fix for refactoring GPUTOP into a vendor-agnostic tool (Lucas) v3 : Separate commit (Kamil) --- tools/gputop/xe_gputop.c | 404 +++++++++++++++++++++++++++++++++++++++ tools/gputop/xe_gputop.h | 74 +++++++ 2 files changed, 478 insertions(+) create mode 100644 tools/gputop/xe_gputop.c create mode 100644 tools/gputop/xe_gputop.h diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c new file mode 100644 index 000000000..21717c49a --- /dev/null +++ b/tools/gputop/xe_gputop.c @@ -0,0 +1,404 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2025 Intel Corporation + */ + +#include "xe_gputop.h" +#include "common_gputop.h" + +#define engine_ptr(engines, n) (&(engines)->engine + (n)) + +static void __update_sample(struct xe_pmu_counter *counter, uint64_t val) +{ + counter->val.prev = counter->val.cur; + counter->val.cur = val; +} + +static void update_sample(struct xe_pmu_counter *counter, uint64_t *val) +{ + if (counter->present) + __update_sample(counter, val[counter->idx]); +} + +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 inline void *clean_up(void *engines) +{ + if (engines) + free(engines); + + return NULL; +} + +static int _open_pmu(uint64_t type, unsigned int *cnt, struct xe_pmu_counter *pmu, int *fd) +{ + int fd__ = igt_perf_open_group(type, pmu->config, *fd); + + if (fd__ >= 0) { + if (*fd == -1) + *fd = fd__; + pmu->present = true; + pmu->idx = (*cnt)++; + } + + return fd__; +} + +void xe_gputop_init(struct xe_gputop *obj, + struct igt_device_card *card) +{ + obj->pmu_device = tr_pmu_name(card); + obj->card = card; +} + +static int pmu_format_shift(int xe, const char *name) +{ + uint32_t start; + int format; + char device[80]; + + format = perf_event_format(xe_perf_device(xe, device, sizeof(device)), + name, &start); + if (format) + return 0; + + return start; +} + +static int engine_cmp(const void *__a, const void *__b) +{ + const struct xe_engine *a = (struct xe_engine *)__a; + const struct xe_engine *b = (struct xe_engine *)__b; + + if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class) + return a->drm_xe_engine.engine_class - b->drm_xe_engine.engine_class; + else + return a->drm_xe_engine.engine_instance - b->drm_xe_engine.engine_instance; +} + +void xe_populate_device_instances(struct gputop_device *dv) +{ + struct igt_device_card *card_int = NULL, *card_dis = NULL, *cards_combi = NULL; + int count_int = 0, count_dis = 0; + + count_int = igt_device_find_all_xe_integrated_card(&card_int); + count_dis = igt_device_find_all_xe_discrete_card(&card_dis); + + if (count_int > 0 || count_dis > 0) { + // Allocate memory for the combined array + cards_combi = (struct igt_device_card *)calloc((count_int + count_dis), + sizeof(struct igt_device_card)); + if (!cards_combi) { + fprintf(stderr, "Memory allocation failed for igt_device_card\n"); + if (card_int) + free(card_int); + if (card_dis) + free(card_dis); + exit(EXIT_FAILURE); + } + + if (card_int) { + memcpy(cards_combi, card_int, + count_int * sizeof(struct igt_device_card)); + free(card_int); + } + + if (card_dis) { + memcpy(cards_combi + count_int, + card_dis, count_dis * sizeof(struct igt_device_card)); + free(card_dis); + } + + dv->driver_present = true; + dv->len = count_int + count_dis; + dv->instances = calloc(dv->len, sizeof(struct xe_gputop)); + for (int i = 0; i < count_int; i++) { + xe_gputop_init((struct xe_gputop *)dv->instances + i, + cards_combi + i + ); + } + + for (int i = 0; i < count_dis; i++) { + xe_gputop_init((struct xe_gputop *)dv->instances + count_int + i, + cards_combi + count_int + i + ); + } + } +} + +void *xe_discover_engines(const void *obj) +{ + struct igt_device_card *card = ((struct xe_gputop *)obj)->card; + struct xe_engines *engines; + int ret = 0; + char device[30]; + struct drm_xe_engine_class_instance *hwe; + int card_fd; + + if (!card || !strlen(card->card) || !strlen(card->render)) + return NULL; + + if (strlen(card->card)) { + card_fd = igt_open_card(card); + } else if (strlen(card->render)) { + card_fd = igt_open_render(card); + } else { + fprintf(stderr, "Failed to detect device!\n"); + return clean_up(engines); + } + xe_device_get(card_fd); + engines = malloc(sizeof(struct xe_engines)); + if (!engines) + return NULL; + + memset(engines, 0, sizeof(*xe_engines)); + + engines->num_engines = 0; + engines->device = ((struct xe_gputop *)obj)->pmu_device; + xe_for_each_engine(card_fd, hwe) { + uint64_t engine_class, engine_instance, gt_shift, param_config; + struct xe_engine *engine; + + engine = engine_ptr(engines, engines->num_engines); + gt_shift = pmu_format_shift(card_fd, "gt"); + engine_class = pmu_format_shift(card_fd, "engine_class"); + engine_instance = pmu_format_shift(card_fd, "engine_instance"); + param_config = (uint64_t)hwe->gt_id << gt_shift | hwe->engine_class << engine_class + | hwe->engine_instance << engine_instance; + + engine->drm_xe_engine = *hwe; + + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)), + "engine-active-ticks", &engine->busy.config); + if (ret < 0) + break; + + engine->busy.config |= param_config; + + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)), + "engine-total-ticks", &engine->total.config); + if (ret < 0) + break; + + engine->total.config |= param_config; + + if (engine->busy.config == -1 || engine->total.config == -1) { + ret = ENOENT; + break; + } + + ret = asprintf(&engine->display_name, "%s/%u", + class_display_name(engine->drm_xe_engine.engine_class), + engine->drm_xe_engine.engine_instance); + + if (ret <= 0) { + ret = errno; + break; + } + ret = asprintf(&engine->short_name, "%s/%u", + xe_engine_class_short_string(engine->drm_xe_engine.engine_class), + engine->drm_xe_engine.engine_instance); + + if (ret <= 0) { + ret = errno; + break; + } + + engines->num_engines++; + engines = realloc(engines, sizeof(struct xe_engines) + + engines->num_engines * sizeof(struct xe_engine)); + if (!engines) { + ret = errno; + break; + } + } + + if (!ret) { + errno = ret; + return clean_up(engines); + } + + qsort(engine_ptr(engines, 0), engines->num_engines, + sizeof(struct xe_engine), engine_cmp); + + //engines->root = d; + ((struct xe_gputop *)obj)->eng_obj = engines; + + return engines; +} + +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]; +} + +void xe_pmu_sample(const void *obj) +{ + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj; + 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 xe_engine *engine = engine_ptr(engines, i); + + update_sample(&engine->busy, val); + update_sample(&engine->total, val); + } +} + +int xe_pmu_init(const void *obj) +{ + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj; + unsigned int i; + int fd; + struct xe_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 double pmu_calc_total(struct xe_pmu_pair *p) +{ + double v; + + v = (p->cur - p->prev) / 1e9; + return v; +} + +static double pmu_calc(struct xe_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_device_description(const void *obj, int lines, int w, int h) +{ + char *desc; + int len; + + len = asprintf(&desc, "DRIVER: %s || SLOT: %s", + ((struct xe_gputop *)obj)->card->driver, + ((struct xe_gputop *)obj)->card->pci_slot_name); + + printf("\033[7m%s%*s\033[0m\n", + desc, + (int)(w - len), " "); + lines++; + free(desc); + return lines; +} + +static int +print_engines_header(struct xe_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 xe_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 xe_engines *engines, unsigned int i, + int lines, int con_w, int con_h) +{ + struct xe_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); + print_percentage_bar(percentage, con_w - strlen(" ENGINES")); + printf("\n"); + + return ++lines; +} + +int xe_print_engines(const void *obj, int lines, int w, int h) +{ + struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj; + + lines = print_device_description(obj, lines, w, h); + + 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(lines, w, h); + + return lines; +} + diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h new file mode 100644 index 000000000..e02987ddd --- /dev/null +++ b/tools/gputop/xe_gputop.h @@ -0,0 +1,74 @@ +/* SPDX-License-Identifier: MIT + * + * Copyright © 2025 Intel Corporation + */ + +#ifndef __XE_GPUTOP_H__ +#define __XE_GPUTOP_H__ + +#include <dirent.h> + +#include "igt_device_scan.h" +#include "xe/xe_query.h" +#include "igt_perf.h" +#include "common_gputop.h" + +struct xe_pmu_pair { + uint64_t cur; + uint64_t prev; +}; + +struct xe_pmu_counter { + uint64_t type; + uint64_t config; + unsigned int idx; + struct xe_pmu_pair val; + bool present; +}; + +struct xe_engine { + const char *name; + char *display_name; + char *short_name; + struct drm_xe_engine_class_instance drm_xe_engine; + unsigned int num_counters; + struct xe_pmu_counter busy; + struct xe_pmu_counter total; +}; + +struct xe_engines { + unsigned int num_engines; + unsigned int num_classes; + unsigned int num_counters; + DIR *root; + int fd; + struct xe_pmu_pair ts; + 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 xe_engine engine; + +}; + +struct xe_gputop { + char *pmu_device; + struct igt_device_card *card; + struct xe_engines *eng_obj; +}; + +void xe_gputop_init(struct xe_gputop *obj, + struct igt_device_card *card); + +void xe_populate_device_instances(struct gputop_device *dv); +void *xe_discover_engines(const void *obj); +void xe_pmu_sample(const void *obj); +int xe_pmu_init(const void *obj); +int xe_print_engines(const void *obj, int lines, int w, int h); + +#endif // __XE_GPUTOP_H__ + -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices 2025-02-28 14:18 ` [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices Soham Purkait @ 2025-03-04 10:22 ` Riana Tauro 0 siblings, 0 replies; 12+ messages in thread From: Riana Tauro @ 2025-03-04 10:22 UTC (permalink / raw) To: Soham Purkait, igt-dev, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, jonathan.ming.jun.lui Hi Soham On 2/28/2025 7:48 PM, Soham Purkait wrote: > v2 : fix for refactoring GPUTOP into a > vendor-agnostic tool (Lucas) > > v3 : Separate commit (Kamil) > Add missing Signed-off and description > --- > tools/gputop/xe_gputop.c | 404 +++++++++++++++++++++++++++++++++++++++ > tools/gputop/xe_gputop.h | 74 +++++++ > 2 files changed, 478 insertions(+) > create mode 100644 tools/gputop/xe_gputop.c > create mode 100644 tools/gputop/xe_gputop.h > > diff --git a/tools/gputop/xe_gputop.c b/tools/gputop/xe_gputop.c > new file mode 100644 > index 000000000..21717c49a > --- /dev/null > +++ b/tools/gputop/xe_gputop.c > @@ -0,0 +1,404 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2025 Intel Corporation > + */ > + > +#include "xe_gputop.h" > +#include "common_gputop.h" alphabetical > + > +#define engine_ptr(engines, n) (&(engines)->engine + (n)) > + > +static void __update_sample(struct xe_pmu_counter *counter, uint64_t val) > +{ > + counter->val.prev = counter->val.cur; > + counter->val.cur = val; > +} > + > +static void update_sample(struct xe_pmu_counter *counter, uint64_t *val) > +{ > + if (counter->present) > + __update_sample(counter, val[counter->idx]); > +} > + > +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 inline void *clean_up(void *engines) > +{ > + if (engines) > + free(engines); > + > + return NULL; > +} > + > +static int _open_pmu(uint64_t type, unsigned int *cnt, struct xe_pmu_counter *pmu, int *fd) > +{ > + int fd__ = igt_perf_open_group(type, pmu->config, *fd); > + > + if (fd__ >= 0) { > + if (*fd == -1) > + *fd = fd__; > + pmu->present = true; > + pmu->idx = (*cnt)++; > + } > + > + return fd__; > +} > + > +void xe_gputop_init(struct xe_gputop *obj, > + struct igt_device_card *card) > +{ > + obj->pmu_device = tr_pmu_name(card); > + obj->card = card; > +} > + > +static int pmu_format_shift(int xe, const char *name) > +{ > + uint32_t start; > + int format; > + char device[80]; > + > + format = perf_event_format(xe_perf_device(xe, device, sizeof(device)), > + name, &start); > + if (format) > + return 0; > + > + return start; > +} > + > +static int engine_cmp(const void *__a, const void *__b) > +{ > + const struct xe_engine *a = (struct xe_engine *)__a; > + const struct xe_engine *b = (struct xe_engine *)__b; > + > + if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class) > + return a->drm_xe_engine.engine_class - b->drm_xe_engine.engine_class; > + else > + return a->drm_xe_engine.engine_instance - b->drm_xe_engine.engine_instance; > +} > + > +void xe_populate_device_instances(struct gputop_device *dv) > +{ > + struct igt_device_card *card_int = NULL, *card_dis = NULL, *cards_combi = NULL; > + int count_int = 0, count_dis = 0; > + > + count_int = igt_device_find_all_xe_integrated_card(&card_int); > + count_dis = igt_device_find_all_xe_discrete_card(&card_dis); > + > + if (count_int > 0 || count_dis > 0) { > + // Allocate memory for the combined array > + cards_combi = (struct igt_device_card *)calloc((count_int + count_dis), > + sizeof(struct igt_device_card)); > + if (!cards_combi) { > + fprintf(stderr, "Memory allocation failed for igt_device_card\n"); > + if (card_int) > + free(card_int); > + if (card_dis) > + free(card_dis); > + exit(EXIT_FAILURE); > + } > + > + if (card_int) { > + memcpy(cards_combi, card_int, > + count_int * sizeof(struct igt_device_card)); > + free(card_int); > + } > + > + if (card_dis) { > + memcpy(cards_combi + count_int, > + card_dis, count_dis * sizeof(struct igt_device_card)); > + free(card_dis); > + } > + > + dv->driver_present = true; > + dv->len = count_int + count_dis; > + dv->instances = calloc(dv->len, sizeof(struct xe_gputop)); > + for (int i = 0; i < count_int; i++) { > + xe_gputop_init((struct xe_gputop *)dv->instances + i, > + cards_combi + i > + ); > + } > + > + for (int i = 0; i < count_dis; i++) { > + xe_gputop_init((struct xe_gputop *)dv->instances + count_int + i, > + cards_combi + count_int + i > + ); > + } > + } > +} > + > +void *xe_discover_engines(const void *obj) > +{ > + struct igt_device_card *card = ((struct xe_gputop *)obj)->card; > + struct xe_engines *engines; > + int ret = 0; > + char device[30]; > + struct drm_xe_engine_class_instance *hwe; > + int card_fd; > + > + if (!card || !strlen(card->card) || !strlen(card->render)) > + return NULL; > + > + if (strlen(card->card)) { > + card_fd = igt_open_card(card); > + } else if (strlen(card->render)) { > + card_fd = igt_open_render(card); > + } else { > + fprintf(stderr, "Failed to detect device!\n"); > + return clean_up(engines); > + } > + xe_device_get(card_fd); > + engines = malloc(sizeof(struct xe_engines)); > + if (!engines) > + return NULL; > + > + memset(engines, 0, sizeof(*xe_engines)); Why not allocate at once? xe_number_engines should give you the number of engines > + > + engines->num_engines = 0; > + engines->device = ((struct xe_gputop *)obj)->pmu_device; > + xe_for_each_engine(card_fd, hwe) { > + uint64_t engine_class, engine_instance, gt_shift, param_config; > + struct xe_engine *engine; > + > + engine = engine_ptr(engines, engines->num_engines); > + gt_shift = pmu_format_shift(card_fd, "gt"); > + engine_class = pmu_format_shift(card_fd, "engine_class"); > + engine_instance = pmu_format_shift(card_fd, "engine_instance"); > + param_config = (uint64_t)hwe->gt_id << gt_shift | hwe->engine_class << engine_class > + | hwe->engine_instance << engine_instance; > + > + engine->drm_xe_engine = *hwe; > + > + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)), > + "engine-active-ticks", &engine->busy.config); > + if (ret < 0) > + break; > + > + engine->busy.config |= param_config; > + > + ret = perf_event_config(xe_perf_device(card_fd, device, sizeof(device)), > + "engine-total-ticks", &engine->total.config); > + if (ret < 0) > + break; > + > + engine->total.config |= param_config; > + > + if (engine->busy.config == -1 || engine->total.config == -1) { > + ret = ENOENT; > + break; > + } > + > + ret = asprintf(&engine->display_name, "%s/%u", > + class_display_name(engine->drm_xe_engine.engine_class), > + engine->drm_xe_engine.engine_instance); > + > + if (ret <= 0) { > + ret = errno; > + break; > + } > + ret = asprintf(&engine->short_name, "%s/%u", > + xe_engine_class_short_string(engine->drm_xe_engine.engine_class), > + engine->drm_xe_engine.engine_instance); > + > + if (ret <= 0) { > + ret = errno; > + break; > + } > + > + engines->num_engines++; > + engines = realloc(engines, sizeof(struct xe_engines) + > + engines->num_engines * sizeof(struct xe_engine)); > + if (!engines) { > + ret = errno; > + break; > + } > + } > + > + if (!ret) { > + errno = ret; > + return clean_up(engines); > + } > + > + qsort(engine_ptr(engines, 0), engines->num_engines, > + sizeof(struct xe_engine), engine_cmp); why? > + > + //engines->root = d; don't use // > + ((struct xe_gputop *)obj)->eng_obj = engines; > + > + return engines; > +} > + > +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]; > +} > + > +void xe_pmu_sample(const void *obj) > +{ > + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj; > + 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 xe_engine *engine = engine_ptr(engines, i); > + > + update_sample(&engine->busy, val); > + update_sample(&engine->total, val); > + } > +} > + > +int xe_pmu_init(const void *obj) > +{ > + struct xe_engines *engines = ((struct xe_gputop *)obj)->eng_obj; > + unsigned int i; > + int fd; > + struct xe_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 double pmu_calc_total(struct xe_pmu_pair *p) > +{ > + double v; > + > + v = (p->cur - p->prev) / 1e9; > + return v; > +} why 1e9? > + > +static double pmu_calc(struct xe_pmu_pair *p, double total_tick) > +{ > + double bz = (p->cur - p->prev) / 1e9; why 1e9? > + double total; > + > + total = (bz * 100) / total_tick; > + return total; > +} > + > +static int > +print_device_description(const void *obj, int lines, int w, int h) > +{ > + char *desc; > + int len; > + > + len = asprintf(&desc, "DRIVER: %s || SLOT: %s", > + ((struct xe_gputop *)obj)->card->driver, > + ((struct xe_gputop *)obj)->card->pci_slot_name); > + > + printf("\033[7m%s%*s\033[0m\n", > + desc, > + (int)(w - len), " "); > + lines++; > + free(desc); > + return lines; > +} > + > +static int > +print_engines_header(struct xe_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 xe_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 xe_engines *engines, unsigned int i, > + int lines, int con_w, int con_h) > +{ > + struct xe_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); > + print_percentage_bar(percentage, con_w - strlen(" ENGINES")); > + printf("\n"); > + > + return ++lines; > +} > + > +int xe_print_engines(const void *obj, int lines, int w, int h) > +{ > + struct xe_engines *show = ((struct xe_gputop *)obj)->eng_obj; > + > + lines = print_device_description(obj, lines, w, h); > + > + 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(lines, w, h); > + > + return lines; > +} > + > diff --git a/tools/gputop/xe_gputop.h b/tools/gputop/xe_gputop.h > new file mode 100644 > index 000000000..e02987ddd > --- /dev/null > +++ b/tools/gputop/xe_gputop.h > @@ -0,0 +1,74 @@ > +/* SPDX-License-Identifier: MIT > + * > + * Copyright © 2025 Intel Corporation > + */ > + > +#ifndef __XE_GPUTOP_H__ > +#define __XE_GPUTOP_H__ > + > +#include <dirent.h> > + > +#include "igt_device_scan.h" > +#include "xe/xe_query.h" > +#include "igt_perf.h" > +#include "common_gputop.h" alphabetical > + > +struct xe_pmu_pair { > + uint64_t cur; > + uint64_t prev; > +}; > + > +struct xe_pmu_counter { > + uint64_t type; > + uint64_t config; > + unsigned int idx; > + struct xe_pmu_pair val; > + bool present; > +}; > + > +struct xe_engine { > + const char *name; > + char *display_name; > + char *short_name; > + struct drm_xe_engine_class_instance drm_xe_engine; > + unsigned int num_counters; > + struct xe_pmu_counter busy; %s/busy/active_ticks > + struct xe_pmu_counter total; %s/total/total_ticks > +}; > + > +struct xe_engines { > + unsigned int num_engines; > + unsigned int num_classes; > + unsigned int num_counters; > + DIR *root; > + int fd; > + struct xe_pmu_pair ts; > + 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 xe_engine engine; > + > +}; > + > +struct xe_gputop { > + char *pmu_device; > + struct igt_device_card *card; > + struct xe_engines *eng_obj; > +}; > + > +void xe_gputop_init(struct xe_gputop *obj, > + struct igt_device_card *card); > + > +void xe_populate_device_instances(struct gputop_device *dv); > +void *xe_discover_engines(const void *obj); > +void xe_pmu_sample(const void *obj); > +int xe_pmu_init(const void *obj); > +int xe_print_engines(const void *obj, int lines, int w, int h); > + > +#endif // __XE_GPUTOP_H__ do not use // Thanks Riana > + ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v3 4/4] Enable support for multiple GPUs and instances 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait ` (2 preceding siblings ...) 2025-02-28 14:18 ` [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices Soham Purkait @ 2025-02-28 14:18 ` Soham Purkait 2025-02-28 22:37 ` ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev4) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Soham Purkait @ 2025-02-28 14:18 UTC (permalink / raw) To: igt-dev, riana.tauro, vinay.belgaumkar Cc: anshuman.gupta, lucas.demarchi, rodrigo.vivi, soham.purkait, jonathan.ming.jun.lui v2 : fix for refactoring GPUTOP into a vendor-agnostic tool (Lucas) v3 : New year included in copyright (Kamil, Riana) Removed caps in function name (Riana) Struct for driver specific operations (Riana) Headers in alphabetical order (Kamil, Riana) --- tools/{ => gputop}/gputop.c | 203 ++++++++++++++++++++++++++++-------- tools/gputop/meson.build | 6 ++ tools/meson.build | 6 +- 3 files changed, 166 insertions(+), 49 deletions(-) rename tools/{ => gputop}/gputop.c (71%) create mode 100644 tools/gputop/meson.build diff --git a/tools/gputop.c b/tools/gputop/gputop.c similarity index 71% rename from tools/gputop.c rename to tools/gputop/gputop.c index 43b01f566..23014de17 100644 --- a/tools/gputop.c +++ b/tools/gputop/gputop.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT /* - * Copyright © 2023 Intel Corporation + * Copyright © 2023-2025 Intel Corporation */ #include <assert.h> @@ -14,66 +14,96 @@ #include <math.h> #include <poll.h> #include <signal.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <sys/sysmacros.h> #include <sys/ioctl.h> #include <sys/stat.h> #include <sys/types.h> -#include <unistd.h> #include <termios.h> -#include <sys/sysmacros.h> -#include <stdbool.h> +#include <unistd.h> +#include "drmtest.h" #include "igt_core.h" #include "igt_drm_clients.h" #include "igt_drm_fdinfo.h" +#include "igt_perf.h" #include "igt_profiling.h" -#include "drmtest.h" - -enum utilization_type { - UTILIZATION_TYPE_ENGINE_TIME, - UTILIZATION_TYPE_TOTAL_CYCLES, +#include "xe_gputop.h" +#include "xe/xe_query.h" + +/** + * Supported Drivers + * + * Adhere to the following requirements + * when implementing support for the + * new driver: + * @drivers: Update drivers[] with + * driver string. + * @total_count: Update NUM_DRIVER with + * the total number of supported drivers. + * @operations: Update the respective + * operations of the new driver: + * populate_device_instances, + * discover_engines, + * pmu_init, + * pmu_sample, + * print_engines + * @devices: Update devices[] array + * of type "struct gputop_device" with + * the initial values. + */ +static const char * const drivers[] = { + "xe", + /*Keep the last one as NULL*/ + NULL }; -static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" }; +/** + * Number of supported drivers needs to be adjusted + * as per the letgth of the drivers[] array. + */ +#define NUM_DRIVER 1 -#define ANSI_HEADER "\033[7m" -#define ANSI_RESET "\033[0m" +/** + * Supported operations on driver instances. + * Update the oprs[] array for + * each individual driver specific function. + * Maintain the sequence as per drivers[] array. + */ +struct device_operations oprs[NUM_DRIVER] = { + { + xe_populate_device_instances, + xe_discover_engines, + xe_pmu_init, + xe_pmu_sample, + xe_print_engines + } +}; -static void n_spaces(const unsigned int n) -{ - unsigned int i; +/* + * devices[] array of type + * struct gputop_device + */ +struct gputop_device devices[] = { + {false, 0, NULL} +}; - for (i = 0; i < n; i++) - putchar(' '); -} +enum utilization_type { + UTILIZATION_TYPE_ENGINE_TIME, + UTILIZATION_TYPE_TOTAL_CYCLES, +}; -static void print_percentage_bar(double percent, int max_len) +static int find_driver(struct igt_device_card *card) { - int bar_len, i, len = max_len - 1; - const int w = 8; - - len -= printf("|%5.1f%% ", percent); - - /* no space left for bars, do what we can */ - if (len < 0) - len = 0; - - bar_len = ceil(w * percent * len / 100.0); - if (bar_len > w * len) - bar_len = w * len; - - for (i = bar_len; i >= w; i -= w) - printf("%s", bars[w]); - if (i) - printf("%s", bars[i]); - - len -= (bar_len + (w - 1)) / w; - n_spaces(len); - - putchar('|'); + for (int i = 0; drivers[i]; i++) { + if (strcmp(drivers[i], card->driver) == 0) + return i; + } + return -1; } static int @@ -333,6 +363,7 @@ static void clrscr(void) struct gputop_args { long n_iter; unsigned long delay_usec; + char *device; }; static void help(void) @@ -343,16 +374,18 @@ static void help(void) "\t-h, --help show this help\n" "\t-d, --delay =SEC[.TENTHS] iterative delay as SECS [.TENTHS]\n" "\t-n, --iterations =NUMBER number of executions\n" + "\t-D, --device Device filter" , program_invocation_short_name); } static int parse_args(int argc, char * const argv[], struct gputop_args *args) { - static const char cmdopts_s[] = "hn:d:"; + static const char cmdopts_s[] = "hn:d:D:"; static const struct option cmdopts[] = { {"help", no_argument, 0, 'h'}, {"delay", required_argument, 0, 'd'}, {"iterations", required_argument, 0, 'n'}, + {"device", required_argument, 0, 'D'}, { } }; @@ -360,6 +393,7 @@ static int parse_args(int argc, char * const argv[], struct gputop_args *args) memset(args, 0, sizeof(*args)); args->n_iter = -1; args->delay_usec = 2 * USEC_PER_SEC; + args->device = NULL; for (;;) { int c, idx = 0; @@ -383,6 +417,9 @@ static int parse_args(int argc, char * const argv[], struct gputop_args *args) return -1; } break; + case 'D': + args->device = optarg; + break; case 'h': help(); return 0; @@ -422,6 +459,76 @@ int main(int argc, char **argv) n = args.n_iter; period_us = args.delay_usec; + igt_devices_scan(); + + if (args.device) { + struct igt_device_card *card = calloc(1, sizeof(struct igt_device_card)); + + if (!igt_device_card_match(args.device, card)) { + printf("No device found for the filter\n" + "Showing for all devices\n"); + free(card); + } else { + int driver_no = find_driver(card); + + if (driver_no < 0) { + fprintf(stderr, "The driver %s could not be found.", card->driver); + exit(EXIT_FAILURE); + } + + devices[driver_no].driver_present = true; + devices[driver_no].len = 1; + devices[driver_no].instances = + calloc(1, sizeof(struct xe_gputop)); + xe_gputop_init(devices[driver_no].instances, + card + ); + goto explore_devices; + } + } + + for (int i = 0; drivers[i]; i++) + oprs[i].populate_device_instances(devices + i); + +explore_devices: + + for (int i = 0; drivers[i]; i++) { + if (devices[i].driver_present) { + for (int j = 0; j < devices[i].len; j++) { + if (!oprs[i].discover_engines(devices[i].instances + j)) { + fprintf(stderr, + "Failed to discover engines! (%s)\n", + strerror(errno)); + return EXIT_FAILURE; + } + ret = oprs[i].pmu_init(devices[i].instances + j); + + 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"); + + igt_devices_free(); + return EXIT_FAILURE; + } + } + } + } + + for (int i = 0; drivers[i]; i++) { + for (int j = 0; devices[i].driver_present && j < devices[i].len; j++) + oprs[i].pmu_sample(devices[i].instances + j); + } + clients = igt_drm_clients_init(NULL); if (!clients) exit(1); @@ -442,7 +549,7 @@ int main(int argc, char **argv) while ((n != 0) && !stop_top) { struct igt_drm_client *c, *prevc = NULL; - int i, engine_w = 0, lines = 0; + int k, engine_w = 0, lines = 0; igt_drm_clients_scan(clients, NULL, NULL, 0, NULL, 0); igt_drm_clients_sort(clients, client_cmp); @@ -450,6 +557,14 @@ int main(int argc, char **argv) update_console_size(&con_w, &con_h); clrscr(); + for (int i = 0; drivers[i]; i++) { + for (int j = 0; devices[i].driver_present && j < devices[i].len; j++) { + oprs[i].pmu_sample(devices[i].instances + j); + lines = oprs[i].print_engines(devices[i].instances + j, + lines, con_w, con_h); + } + } + if (!clients->num_clients) { const char *msg = " (No GPU clients yet. Start workload to see stats)"; @@ -457,7 +572,7 @@ int main(int argc, char **argv) (int)(con_w - strlen(msg) - 1), msg); } - igt_for_each_drm_client(clients, c, i) { + igt_for_each_drm_client(clients, c, k) { assert(c->status != IGT_DRM_CLIENT_PROBE); if (c->status != IGT_DRM_CLIENT_ALIVE) break; /* Active clients are first in the array. */ diff --git a/tools/gputop/meson.build b/tools/gputop/meson.build new file mode 100644 index 000000000..0512ac3d6 --- /dev/null +++ b/tools/gputop/meson.build @@ -0,0 +1,6 @@ +gputop_src = [ 'gputop.c', 'common_gputop.c', 'xe_gputop.c'] +executable('gputop', sources : gputop_src, + install : true, + install_rpath : bindir_rpathdir, + dependencies : [igt_deps,lib_igt_perf,lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math], + install: true) diff --git a/tools/meson.build b/tools/meson.build index 1dfe1f839..44c127c01 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -68,11 +68,6 @@ if libudev.found() install : true) endif -executable('gputop', 'gputop.c', - install : true, - install_rpath : bindir_rpathdir, - dependencies : [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, dependencies : tool_deps, @@ -121,3 +116,4 @@ endif subdir('i915-perf') subdir('xe-perf') subdir('null_state_gen') +subdir('gputop') -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev4) 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait ` (3 preceding siblings ...) 2025-02-28 14:18 ` [PATCH i-g-t v3 4/4] Enable support for multiple GPUs and instances Soham Purkait @ 2025-02-28 22:37 ` Patchwork 2025-02-28 23:06 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-28 22:37 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9729 bytes --] == Series Details == Series: Add single engine busyness stats in GPUTOP (rev4) URL : https://patchwork.freedesktop.org/series/143086/ State : success == Summary == CI Bug Log - changes from IGT_8255 -> IGTPW_12685 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/index.html Participating hosts (44 -> 45) ------------------------------ Additional (1): bat-arlh-2 Known issues ------------ Here are the changes found in IGTPW_12685 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11346] / [i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@debugfs_test@basic-hwmon.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-n3050: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html * igt@fbdev@eof: - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11345] / [i915#11346]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@fbdev@eof.html * igt@fbdev@info: - bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11346] / [i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@fbdev@info.html * igt@gem_lmem_swapping@basic: - bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11343] / [i915#11346]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#11346] / [i915#12637]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#10206] / [i915#11346] / [i915#11724]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@gem_tiled_pread_basic.html * igt@i915_module_load@load: - bat-mtlp-9: [PASS][11] -> [DMESG-WARN][12] ([i915#13494]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-mtlp-9/igt@i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#10209] / [i915#11346] / [i915#11681]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@ring_submission: - bat-twl-1: [PASS][14] -> [INCOMPLETE][15] ([i915#13761] / [i915#13776]) +1 other test incomplete [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-twl-1/igt@i915_selftest@live@ring_submission.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-twl-1/igt@i915_selftest@live@ring_submission.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][16] -> [DMESG-FAIL][17] ([i915#12061]) +1 other test dmesg-fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_psr@psr-primary-page-flip: - bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#11346]) +32 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#10208] / [i915#11346] / [i915#8809]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10212] / [i915#11346] / [i915#11726]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10214] / [i915#11346] / [i915#11726]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#10216] / [i915#11346] / [i915#11723]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arlh-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][25] ([i915#12061]) -> [PASS][26] +1 other test pass [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-arls-5/igt@i915_selftest@live@workarounds.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [DMESG-WARN][29] -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724 [i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725 [i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203 [i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13761 [i915#13776]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13776 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8255 -> IGTPW_12685 CI-20190529: 20190529 CI_DRM_16205: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12685: cb668941c1b9e5928ae07be65941f77e661b70fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8255: 4ef742fae97d2f4af680f9e29f7ea45920f939b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/index.html [-- Attachment #2: Type: text/html, Size: 12319 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev4) 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait ` (4 preceding siblings ...) 2025-02-28 22:37 ` ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev4) Patchwork @ 2025-02-28 23:06 ` Patchwork 2025-03-01 7:45 ` ✗ Xe.CI.Full: failure " Patchwork 2025-03-01 11:23 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-28 23:06 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1163 bytes --] == Series Details == Series: Add single engine busyness stats in GPUTOP (rev4) URL : https://patchwork.freedesktop.org/series/143086/ State : success == Summary == CI Bug Log - changes from XEIGT_8255_BAT -> XEIGTPW_12685_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8255 -> IGTPW_12685 * Linux: xe-2736-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c -> xe-2738-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c IGTPW_12685: cb668941c1b9e5928ae07be65941f77e661b70fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8255: 4ef742fae97d2f4af680f9e29f7ea45920f939b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2736-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c xe-2738-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/index.html [-- Attachment #2: Type: text/html, Size: 1722 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.Full: failure for Add single engine busyness stats in GPUTOP (rev4) 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait ` (5 preceding siblings ...) 2025-02-28 23:06 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-03-01 7:45 ` Patchwork 2025-03-01 11:23 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-03-01 7:45 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 116330 bytes --] == Series Details == Series: Add single engine busyness stats in GPUTOP (rev4) URL : https://patchwork.freedesktop.org/series/143086/ State : failure == Summary == CI Bug Log - changes from XEIGT_8255_full -> XEIGTPW_12685_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12685_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12685_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_12685_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-6.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][2] -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@xe_live_ktest@xe_bo.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_live_ktest@xe_bo.html Known issues ------------ Here are the changes found in XEIGTPW_12685_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2233]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3157]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#3701] / [Intel XE#3718] / [Intel XE#827]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2: - shard-bmg: NOTRUN -> [FAIL][8] ([Intel XE#3701] / [Intel XE#827]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: NOTRUN -> [FAIL][9] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/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-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#3767]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: NOTRUN -> [FAIL][11] ([Intel XE#911]) +3 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#873]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3908]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-bmg: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#4330]) +30 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-7/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3658]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2328]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#607]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +14 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +10 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +10 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#610]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#610]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1428]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2191]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2191]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1512]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#367]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#367]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#367]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +23 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +199 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2887]) +14 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#3442]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#4199]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3432]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#3432]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][49] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4417]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#4416]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2325]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2252]) +14 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373]) +13 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2341]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2390]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#307]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][61] ([Intel XE#3304]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1468]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#1188]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#308]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2321]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2321]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x64: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][68] ([Intel XE#4330]) +20 other tests dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-64x64.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1424]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2286]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#309]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#309]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#309]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#323]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#323]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1508]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#4302]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_display_modes@extended-mode-basic.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4354]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@kms_dp_link_training@uhbr-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#4356]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4354]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#4331]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4294]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4331]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2244]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2244]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4422]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@fbc: - shard-dg2-set2: [PASS][89] -> [DMESG-FAIL][90] ([Intel XE#4330]) +1 other test dmesg-fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@kms_fbcon_fbt@fbc.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4156]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#776]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2373]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1138]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2374]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_feature_discovery@psr1.html - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1135]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: [PASS][97] -> [SKIP][98] ([Intel XE#310]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_flip@2x-blocking-absolute-wf_vblank.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#2316]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][101] ([Intel XE#3321]) +7 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][102] ([Intel XE#301]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1421]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2316]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#2882]) +2 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check@ac-dp2-hdmi-a3.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-bmg: [PASS][106] -> [DMESG-WARN][107] ([Intel XE#2955]) +1 other test dmesg-warn [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_flip@dpms-vs-vblank-race-interruptible.html - shard-dg2-set2: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#2955]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6: - shard-dg2-set2: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#4330]) +39 other tests dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a6.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][112] -> [FAIL][113] ([Intel XE#886]) +3 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][114] ([Intel XE#301] / [Intel XE#3321]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][115] -> [FAIL][116] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1397] / [Intel XE#1745]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1397]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1401]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2293]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#651]) +21 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#651]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2311]) +33 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4141]) +17 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#656]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2312]) +18 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#658]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1469]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2352]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2313]) +32 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#656]) +42 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#4439]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#4439]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#656]) +14 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#653]) +32 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2502]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#605]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#605]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2340]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1470]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1503]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1450] / [Intel XE#2568]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1450]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#346]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#346]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#346]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2934]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2925]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4298]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2927]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#356]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2486]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#4329]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#4359]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#4329]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][159] ([Intel XE#616]) +2 other tests fail [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-4: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#599]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2763]) +23 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - shard-bmg: NOTRUN -> [DMESG-WARN][162] ([Intel XE#2566] / [Intel XE#4330]) +1 other test dmesg-warn [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2-set2: [PASS][163] -> [DMESG-WARN][164] ([Intel XE#2566] / [Intel XE#4330]) +5 other tests dmesg-warn [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2763]) +9 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#3309]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][167] ([Intel XE#1430]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2392]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#1129]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1439] / [Intel XE#3141]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][172] ([Intel XE#2042] / [Intel XE#4330]) +1 other test dmesg-warn [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1489]) +9 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#2893]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#1489]) +10 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#1122]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2387]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1128]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1406]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2414]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2939]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1127]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#3414] / [Intel XE#3904]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#3414]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2413]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2-set2: [PASS][189] -> [SKIP][190] ([Intel XE#455]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_setmode@clone-exclusive-crtc.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#1435]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#1435]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][193] ([Intel XE#1729]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#362]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#362]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#330]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#330]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2450]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][199] -> [FAIL][200] ([Intel XE#899]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#455]) +19 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#1499]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#756]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#756]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@kms_writeback@writeback-fb-id.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#1091] / [Intel XE#2849]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#1126]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#2905]) +12 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_eudebug@basic-vm-access-parameters.html - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2905]) +11 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#2905]) +14 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][211] ([Intel XE#3889]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#3889]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_evict@evict-beng-small-external: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#688]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-large-multi-vm: - shard-dg2-set2: [PASS][214] -> [DMESG-WARN][215] ([Intel XE#1473] / [Intel XE#4330]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@xe_evict@evict-large-multi-vm.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-dg2-set2: [PASS][216] -> [SKIP][217] ([Intel XE#1392]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#1392]) +10 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#2322]) +8 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#1392]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#288]) +28 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#2360]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_gt_freq@freq_reset_multiple: - shard-bmg: NOTRUN -> [DMESG-WARN][223] ([Intel XE#4330]) +15 other tests dmesg-warn [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#2229]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#2833]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][226] ([Intel XE#1999]) +2 other tests fail [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_mmap@pci-membarrier-bad-object: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#4045]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@xe_mmap@pci-membarrier-bad-object.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#586]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_mmap@small-bar.html - shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#512]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#512]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@xe_mmap@small-bar.html * igt@xe_module_load@load: - shard-lnl: ([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], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255]) -> ([PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [SKIP][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281]) ([Intel XE#378]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-5/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-2/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-2/igt@xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-7/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-7/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-8/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-8/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-8/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-5/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-6/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-6/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-3/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-3/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-8/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-1/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-6/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-5/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-1/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-4/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-4/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-4/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-7/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-7/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-1/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-lnl-3/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-4/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-1/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-5/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-2/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306]) -> ([PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [SKIP][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332]) ([Intel XE#378]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@xe_module_load@load.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][333] ([Intel XE#2541] / [Intel XE#3573]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][334] ([Intel XE#2248]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][335] ([Intel XE#977]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][336] ([Intel XE#2245]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][337] ([Intel XE#1061]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-7/igt@xe_peer2peer@write.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][338] ([Intel XE#1173]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][339] ([Intel XE#2284]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_pm@d3cold-mmap-system.html - shard-dg2-set2: NOTRUN -> [SKIP][340] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_pm@d3cold-mmap-system.html - shard-lnl: NOTRUN -> [SKIP][341] ([Intel XE#2284] / [Intel XE#366]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][342] -> [DMESG-WARN][343] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-7/igt@xe_pm@s3-multiple-execs.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][344] ([Intel XE#4330] / [Intel XE#569]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: NOTRUN -> [ABORT][345] ([Intel XE#4268]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-dg2-set2: NOTRUN -> [ABORT][346] ([Intel XE#4268]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-lnl: NOTRUN -> [ABORT][347] ([Intel XE#4268]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm_residency@gt-c6-freeze@gt0: - shard-bmg: NOTRUN -> [DMESG-WARN][348] ([Intel XE#3088] / [Intel XE#4330]) +1 other test dmesg-warn [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt0.html * igt@xe_query@multigpu-query-gt-list: - shard-bmg: NOTRUN -> [SKIP][349] ([Intel XE#944]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_query@multigpu-query-gt-list.html * igt@xe_query@multigpu-query-hwconfig: - shard-lnl: NOTRUN -> [SKIP][350] ([Intel XE#944]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-3/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-bmg: NOTRUN -> [SKIP][351] ([Intel XE#4130]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [SKIP][352] ([Intel XE#4273]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][353] ([Intel XE#3342]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html - shard-lnl: NOTRUN -> [SKIP][354] ([Intel XE#3342]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-lnl-6/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: NOTRUN -> [SKIP][355] ([Intel XE#3342]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-dg2-set2: NOTRUN -> [SKIP][356] ([Intel XE#4273]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][357] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [DMESG-WARN][359] ([Intel XE#4199]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: [DMESG-WARN][361] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][363] ([Intel XE#3124]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-dg2-set2: [DMESG-WARN][365] ([Intel XE#4330]) -> [PASS][366] +62 other tests pass [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@kms_cursor_edge_walk@128x128-right-edge.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][367] ([Intel XE#2291]) -> [PASS][368] +1 other test pass [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][369] ([Intel XE#4302]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [SKIP][371] ([Intel XE#702]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_feature_discovery@display-2x.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][373] ([Intel XE#2316]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][375] ([Intel XE#3098]) -> [PASS][376] +1 other test pass [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-dp2-hdmi-a3.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2-set2: [SKIP][377] ([Intel XE#310]) -> [PASS][378] +6 other tests pass [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@2x-flip-vs-modeset.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2-set2: [DMESG-WARN][379] ([Intel XE#2955] / [Intel XE#4330]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2-set2: [FAIL][381] ([Intel XE#2882] / [Intel XE#3149]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@plain-flip-ts-check-interruptible.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][383] ([Intel XE#886]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a6.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a6: - shard-dg2-set2: [FAIL][385] -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a6.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-436/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a6.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][387] ([Intel XE#656]) -> [PASS][388] +4 other tests pass [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][389] ([Intel XE#3012]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_lowres@tiling-x: - shard-dg2-set2: [DMESG-WARN][391] ([Intel XE#4091]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-436/igt@kms_plane_lowres@tiling-x.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2-set2: [SKIP][393] ([Intel XE#309]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d: - shard-dg2-set2: [DMESG-WARN][395] ([Intel XE#2566] / [Intel XE#4330]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][397] ([Intel XE#836]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][399] ([Intel XE#1392]) -> [PASS][400] +3 other tests pass [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_module_load@load: - shard-bmg: ([PASS][401], [PASS][402], [PASS][403], [PASS][404], [PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [SKIP][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422]) ([Intel XE#2457]) -> ([PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429], [PASS][430], [PASS][431], [PASS][432], [PASS][433], [PASS][434], [PASS][435], [PASS][436], [PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@xe_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@xe_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@xe_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@xe_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@xe_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@xe_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@xe_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@xe_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-7/igt@xe_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-7/igt@xe_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@xe_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@xe_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-7/igt@xe_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@xe_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@xe_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@xe_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@xe_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@xe_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@xe_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@xe_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@xe_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@xe_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@xe_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@xe_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@xe_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@xe_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_module_load@load.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_module_load@load.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_module_load@load.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_module_load@load.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_module_load@load.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_module_load@load.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@xe_module_load@load.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_module_load@load.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@xe_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@xe_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@xe_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@xe_module_load@load.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][444] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][445] +1 other test pass [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm_residency@cpg-basic: - shard-bmg: [DMESG-WARN][446] ([Intel XE#4330]) -> [PASS][447] +19 other tests pass [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@xe_pm_residency@cpg-basic.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@xe_pm_residency@cpg-basic.html #### Warnings #### * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][448] ([Intel XE#787]) -> [SKIP][449] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][450] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [DMESG-WARN][451] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][452] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][453] ([Intel XE#787]) +9 other tests skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][454] ([Intel XE#1178]) -> [DMESG-FAIL][455] ([Intel XE#4330]) +1 other test dmesg-fail [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-8/igt@kms_content_protection@legacy.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_content_protection@legacy.html - shard-dg2-set2: [FAIL][456] ([Intel XE#1178]) -> [SKIP][457] ([Intel XE#455]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_content_protection@legacy.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [SKIP][458] ([Intel XE#455]) -> [FAIL][459] ([Intel XE#1178]) +1 other test fail [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_content_protection@lic-type-0.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-434/igt@kms_content_protection@lic-type-0.html - shard-bmg: [TIMEOUT][460] -> [SKIP][461] ([Intel XE#2341]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@kms_content_protection@lic-type-0.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: [DMESG-FAIL][462] ([Intel XE#4330]) -> [FAIL][463] ([Intel XE#1178]) +1 other test fail [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][464] ([Intel XE#2341]) -> [FAIL][465] ([Intel XE#1188]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_content_protection@uevent.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-set2: [DMESG-WARN][466] ([Intel XE#4330]) -> [SKIP][467] ([Intel XE#309]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][468] ([Intel XE#2291]) -> [DMESG-WARN][469] ([Intel XE#877]) [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-bmg: [SKIP][470] ([Intel XE#2316]) -> [DMESG-WARN][471] ([Intel XE#4330]) [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][472] ([Intel XE#2316]) -> [FAIL][473] ([Intel XE#3321]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html - shard-dg2-set2: [SKIP][474] ([Intel XE#310]) -> [FAIL][475] ([Intel XE#301]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [DMESG-WARN][476] ([Intel XE#2955]) -> [SKIP][477] ([Intel XE#310]) [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_flip@2x-flip-vs-suspend.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-bmg: [DMESG-WARN][478] ([Intel XE#4330]) -> [SKIP][479] ([Intel XE#2316]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@kms_flip@2x-plain-flip-interruptible.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2-set2: [DMESG-WARN][480] ([Intel XE#4330]) -> [SKIP][481] ([Intel XE#310]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_flip@2x-plain-flip-ts-check.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][482] ([Intel XE#656]) -> [SKIP][483] ([Intel XE#651]) +9 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][484] ([Intel XE#2312]) -> [SKIP][485] ([Intel XE#2311]) +8 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][486] ([Intel XE#4141]) -> [SKIP][487] ([Intel XE#2312]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][488] ([Intel XE#2312]) -> [SKIP][489] ([Intel XE#4141]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [DMESG-WARN][490] ([Intel XE#4330]) -> [SKIP][491] ([Intel XE#656]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][492] ([Intel XE#651]) -> [SKIP][493] ([Intel XE#656]) +8 other tests skip [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][494] ([Intel XE#2311]) -> [SKIP][495] ([Intel XE#2312]) +8 other tests skip [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][496] ([Intel XE#2312]) -> [SKIP][497] ([Intel XE#2313]) +3 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][498] ([Intel XE#656]) -> [SKIP][499] ([Intel XE#653]) +5 other tests skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][500] ([Intel XE#653]) -> [SKIP][501] ([Intel XE#656]) +10 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][502] ([Intel XE#2313]) -> [SKIP][503] ([Intel XE#2312]) +9 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][504] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][505] ([Intel XE#3544]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2-set2: [DMESG-WARN][506] ([Intel XE#4212]) -> [SKIP][507] ([Intel XE#455]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8255/shard-dg2-463/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [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#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3088]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3088 [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#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [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#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [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#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4199]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4199 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4439 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8255 -> IGTPW_12685 * Linux: xe-2736-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c -> xe-2738-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c IGTPW_12685: cb668941c1b9e5928ae07be65941f77e661b70fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8255: 4ef742fae97d2f4af680f9e29f7ea45920f939b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2736-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c xe-2738-ca9d01b66c70413a62a1a28fbf8709d2e8440c1c: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12685/index.html [-- Attachment #2: Type: text/html, Size: 134989 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for Add single engine busyness stats in GPUTOP (rev4) 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait ` (6 preceding siblings ...) 2025-03-01 7:45 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-03-01 11:23 ` Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-03-01 11:23 UTC (permalink / raw) To: Soham Purkait; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133720 bytes --] == Series Details == Series: Add single engine busyness stats in GPUTOP (rev4) URL : https://patchwork.freedesktop.org/series/143086/ State : failure == Summary == CI Bug Log - changes from IGT_8255_full -> IGTPW_12685_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12685_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12685_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_12685/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): shard-snb-0 shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12685_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk8/igt@gem_softpin@noreloc-s3.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][2] -> [DMESG-WARN][3] +1 other test dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][4] -> [FAIL][5] +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a4: - shard-dg1: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-15/igt@kms_flip@blocking-wf_vblank@a-hdmi-a4.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@kms_flip@blocking-wf_vblank@a-hdmi-a4.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-tglu: [PASS][8] -> [FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html - shard-dg2: NOTRUN -> [FAIL][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html Known issues ------------ Here are the changes found in IGTPW_12685_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#6230]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8411]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8411]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8411]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#11078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +24 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-8/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2-9: NOTRUN -> [SKIP][20] ([i915#8414]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_busy@semaphore: - shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#3936]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4873]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@gem_caching@reads.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#13356]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-2/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][27] ([i915#9323]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#12392] / [i915#13356]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#7697]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#7697]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#8562]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#8555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#5882]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#5882]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#280]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-tglu-1: NOTRUN -> [ABORT][42] ([i915#7975]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_eio@hibernate.html - shard-mtlp: NOTRUN -> [ABORT][43] ([i915#7975]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2-9: NOTRUN -> [FAIL][44] ([i915#5784]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][45] -> [FAIL][46] ([i915#12543] / [i915#5784]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-16/igt@gem_eio@reset-stress.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2-9: NOTRUN -> [SKIP][47] ([i915#4771]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4036]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4525]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-7/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4525]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@sliced: - shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-tglu: [PASS][52] -> [ABORT][53] ([i915#11713]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-2/igt@gem_exec_big@single.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-8/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-6/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3539]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3539] / [i915#4852]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +14 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@gem_exec_reloc@basic-active.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3281]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#3281]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3281]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@independent@vecs0: - shard-rkl: NOTRUN -> [DMESG-WARN][65] ([i915#12964]) +10 other tests dmesg-warn [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@gem_exec_schedule@independent@vecs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-10/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk1/igt@gem_lmem_swapping@random-engines.html - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4613]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#8289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-8/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) +10 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@close: - shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#4083]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4083]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-5/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@write: - shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#3282]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +13 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@gem_pwrite_snooped.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3282]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#13398]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#4270]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12964]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4270]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][92] ([i915#12917] / [i915#12964]) +3 other tests timeout [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: [PASS][93] -> [TIMEOUT][94] ([i915#12917] / [i915#12964]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#5190] / [i915#8428]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_tiled_blits@basic: - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#4077]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_tiled_blits@basic.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4077]) +17 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4079]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu-1: NOTRUN -> [FAIL][102] ([i915#12941]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@access-control: - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#3297]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][106] ([i915#3323]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3282] / [i915#3297]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4880]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3281] / [i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume: - shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#13356]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-glk4/igt@gem_workarounds@suspend-resume.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk4/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#2856]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-5/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#2527]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#2856]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2856]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#13786]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][121] ([i915#13592]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#8399]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#8399]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-glk: [PASS][124] -> [DMESG-WARN][125] ([i915#118]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-glk3/igt@i915_pm_rc6_residency@rc6-idle.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][126] -> [FAIL][127] ([i915#3591]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-mmap-type: - shard-dg1: [PASS][128] -> [DMESG-WARN][129] ([i915#4423]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-13/igt@i915_pm_rpm@gem-mmap-type.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@i915_pm_rpm@gem-mmap-type.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#11681]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#4387]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6245]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6188]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk3/igt@i915_selftest@mock.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7707]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][136] ([i915#4212]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#4212]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4212]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#12761]) +1 other test incomplete [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#8709]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-3-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#8709]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#12967] / [i915#6228]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#9531]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg1: [PASS][145] -> [FAIL][146] ([i915#5956]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][147] ([i915#5956]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#5286]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5286]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#5286]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5286]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#5286]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][153] -> [FAIL][154] ([i915#5138]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3638]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +12 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][157] +13 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5190]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3638]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6187]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5190]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6095]) +34 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#6095]) +133 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#6095]) +79 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-7/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][167] +429 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#10307] / [i915#6095]) +64 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#12313]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#12313]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#12805]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#6095]) +97 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#6095]) +17 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#12796]) +1 other test incomplete [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#6095]) +39 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#12313]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#10307] / [i915#6095]) +167 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#12313]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3742]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3742]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-9: NOTRUN -> [SKIP][181] +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +12 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +12 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#7116] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-16/igt@kms_content_protection@atomic.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-10/igt@kms_content_protection@atomic.html - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@kms_content_protection@atomic.html - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#7118] / [i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3299]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#3299]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3116]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3299]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][198] ([i915#7173]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#7118]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2-9: NOTRUN -> [SKIP][202] ([i915#3555]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#13049]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#13049]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][206] -> [FAIL][207] ([i915#13566]) +3 other tests fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-rkl: [PASS][208] -> [FAIL][209] ([i915#13566]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][210] ([i915#13566]) +5 other tests fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#13049]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][212] ([i915#13566]) +1 other test fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3555]) +8 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-10/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3555]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#13049]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-tglu-1: NOTRUN -> [FAIL][217] ([i915#13566]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8814]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-rkl: [PASS][219] -> [DMESG-WARN][220] ([i915#12964]) +16 other tests dmesg-warn [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x256.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#13049]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#13049]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8814]) +4 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#13046] / [i915#5354]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#4103]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#9809]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][227] +22 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][228] ([i915#13046] / [i915#5354]) +5 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#4103] / [i915#4213]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9833]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9723]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#1257]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-10/igt@kms_dp_aux_dev.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1257]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#13707]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#13707]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#13707]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#13707]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2-9: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840] / [i915#9053]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3840] / [i915#9053]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3840] / [i915#9053]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3840] / [i915#9053]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#13798]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#13798]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4854]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9337]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#658]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#658]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#658]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#3637]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#9934]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#3637]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#9934]) +12 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#9934]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][261] -> [FAIL][262] ([i915#1522]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-5/igt@kms_flip@blocking-wf_vblank.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html - shard-dg2: [PASS][263] -> [FAIL][264] ([i915#1522]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-5/igt@kms_flip@blocking-wf_vblank.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_flip@blocking-wf_vblank.html - shard-dg1: [PASS][265] -> [FAIL][266] ([i915#1522]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-15/igt@kms_flip@blocking-wf_vblank.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-tglu: [PASS][267] -> [FAIL][268] ([i915#1522]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-3/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][269] ([i915#1522]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#8381]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][271] ([i915#12745] / [i915#4839]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#12745]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk7/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [FAIL][273] ([i915#10826]) +1 other test fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#8813]) +5 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#2587] / [i915#2672]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555] / [i915#8813]) +7 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2672]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#2672] / [i915#3555]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#2587] / [i915#2672]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672] / [i915#3555]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555] / [i915#5190]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][286] ([i915#2672]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/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][288] ([i915#2672]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/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-upscaling: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][290] -> [FAIL][291] ([i915#6880]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#5354]) +29 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#8708]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][294] +15 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#8708]) +9 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][296] ([i915#10055]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][297] ([i915#3458]) +13 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3458]) +6 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#5354]) +22 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#1825]) +40 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9766]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#9766]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#3023]) +17 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#3458]) +21 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#8708]) +16 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#8708]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][307] +173 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#1825]) +24 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#4423] / [i915#8708]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][310] +93 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8228]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#10656]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#13688]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#10656]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#10656]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#10656]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#10656]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#6301]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-1: NOTRUN -> [SKIP][322] +44 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][323] +14 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][324] ([i915#13409] / [i915#13476]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][325] -> [INCOMPLETE][326] ([i915#13026]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-glk7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][327] ([i915#10647] / [i915#12169]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk4/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][328] ([i915#10647]) +1 other test fail [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#8806]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#6953]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][331] ([i915#6953]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#12247]) +12 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#12247]) +12 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +6 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#12247] / [i915#9423]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#12247]) +7 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#12247] / [i915#3555] / [i915#9423]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-9: NOTRUN -> [SKIP][338] ([i915#12247] / [i915#6953] / [i915#9423]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#12247] / [i915#6953]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-7/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-d: - shard-dg2-9: NOTRUN -> [SKIP][340] ([i915#12247]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#5354]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#5354]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9812]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9685]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#3828]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3828]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][347] ([i915#3828]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][348] -> [SKIP][349] ([i915#4281]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#9340]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][351] ([i915#9340]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][352] ([i915#9340]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][353] ([i915#3828]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2-9: NOTRUN -> [SKIP][354] ([i915#9519]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#9519]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#9519]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][357] -> [SKIP][358] ([i915#9519]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9519]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#6524] / [i915#6805]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#6524]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#6524]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#11520]) +3 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][364] ([i915#11520]) +6 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb4/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][365] ([i915#11520]) +5 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9808]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12316]) +4 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#11520]) +7 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html - shard-glk: NOTRUN -> [SKIP][369] ([i915#11520]) +11 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#11520]) +10 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#11520]) +10 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#11520]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-9: NOTRUN -> [SKIP][373] ([i915#9683]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#9683]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#9683]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9688]) +17 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +21 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-5/igt@kms_psr@fbc-psr-primary-mmap-cpu.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][378] ([i915#1072] / [i915#9732]) +14 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#1072] / [i915#9732]) +14 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-16/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-render: - shard-tglu: NOTRUN -> [SKIP][380] ([i915#9732]) +26 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-3/igt@kms_psr@psr-primary-render.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#9732]) +24 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9732]) +10 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-9: NOTRUN -> [SKIP][383] ([i915#12755]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2-9: NOTRUN -> [SKIP][384] ([i915#4235]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#12755] / [i915#5190]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#12755]) +2 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#12755] / [i915#5190]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#5289]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#5289]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#5289]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][391] ([i915#13179]) +1 other test abort [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk2/igt@kms_selftest@drm_framebuffer.html * igt@kms_sequence@get-busy: - shard-dg1: NOTRUN -> [DMESG-WARN][392] ([i915#4423]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@kms_sequence@get-busy.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#3555] / [i915#8809]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][394] ([i915#8623]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern.html - shard-tglu: NOTRUN -> [SKIP][395] ([i915#8623]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#8623]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][397] ([i915#8623]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][398] ([i915#8623]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#8623]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: NOTRUN -> [FAIL][400] ([i915#9196]) +1 other test fail [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][401] ([i915#12276]) +3 other tests incomplete [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#3555]) +4 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][403] ([i915#8808] / [i915#9906]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-1/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][404] ([i915#9906]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#9906]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][406] ([i915#9906]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#11920]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][408] ([i915#3555] / [i915#9906]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][409] ([i915#9906]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][410] ([i915#9906]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#2437]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#2437] / [i915#9412]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][413] ([i915#2437] / [i915#9412]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-10/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][414] ([i915#2437]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk3/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#2437] / [i915#9412]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2-9: NOTRUN -> [SKIP][416] ([i915#2436]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][417] ([i915#7387]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][418] ([i915#7387]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][419] ([i915#9100]) +1 other test fail [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@perf@non-zero-reason.html * igt@perf_pmu@busy-accuracy-98: - shard-tglu: [PASS][420] -> [FAIL][421] ([i915#4349]) +1 other test fail [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-5/igt@perf_pmu@busy-accuracy-98.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-4/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@busy-hang@rcs0: - shard-mtlp: [PASS][422] -> [ABORT][423] ([i915#13193]) +2 other tests abort [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-2/igt@perf_pmu@busy-hang@rcs0.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][424] ([i915#8516]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html - shard-dg2-9: NOTRUN -> [SKIP][425] ([i915#8516]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][426] ([i915#8516]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][427] ([i915#13356]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk9/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][428] ([i915#9351]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][429] ([i915#9351]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-read: - shard-dg2-9: NOTRUN -> [SKIP][430] ([i915#3291] / [i915#3708]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][431] ([i915#3291] / [i915#3708]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][432] ([i915#3708] / [i915#4077]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][433] ([i915#3708]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-7/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][434] ([i915#3708] / [i915#4077]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][435] ([i915#3708] / [i915#4077]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2-9: NOTRUN -> [SKIP][436] ([i915#3708]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][437] ([i915#3708]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@prime_vgem@fence-read-hang.html - shard-dg2: NOTRUN -> [SKIP][438] ([i915#3708]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-9: NOTRUN -> [SKIP][439] ([i915#9917]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][440] ([i915#12910]) +9 other tests fail [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][441] ([i915#9917]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][442] ([i915#9917]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-mtlp: [ABORT][443] ([i915#13193]) -> [PASS][444] +2 other tests pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-7/igt@gem_eio@reset-stress.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-4/igt@gem_eio@reset-stress.html - shard-dg2: [FAIL][445] ([i915#12543] / [i915#5784]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-1/igt@gem_eio@reset-stress.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][447] ([i915#11441] / [i915#13304]) -> [PASS][448] +1 other test pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [TIMEOUT][449] ([i915#12917] / [i915#12964]) -> [PASS][450] [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@i915_module_load@reload: - shard-snb: [ABORT][451] ([i915#11703]) -> [PASS][452] [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb2/igt@i915_module_load@reload.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb4/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][453] ([i915#9820]) -> [PASS][454] [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][455] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][457] ([i915#12942]) -> [PASS][458] +1 other test pass [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][459] ([i915#3591]) -> [PASS][460] [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rpm@gem-pread: - shard-rkl: [SKIP][461] ([i915#13328]) -> [PASS][462] [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-2/igt@i915_pm_rpm@gem-pread.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@i915_pm_rpm@gem-pread.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][463] ([i915#7984]) -> [PASS][464] [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-4/igt@i915_power@sanity.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-2/igt@i915_power@sanity.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][465] ([i915#5956]) -> [PASS][466] [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][467] ([i915#5138]) -> [PASS][468] [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][469] ([i915#13028]) -> [PASS][470] [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-snb: [FAIL][471] ([i915#11832] / [i915#1522]) -> [PASS][472] [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1: - shard-snb: [FAIL][473] ([i915#11832]) -> [PASS][474] [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: [FAIL][475] ([i915#1522]) -> [PASS][476] +4 other tests pass [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite: - shard-snb: [SKIP][477] -> [PASS][478] [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][479] ([i915#3555] / [i915#8228]) -> [PASS][480] [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][481] ([i915#12756]) -> [PASS][482] [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][483] ([i915#9519]) -> [PASS][484] [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_selftest@drm_format: - shard-rkl: [DMESG-WARN][485] ([i915#12964]) -> [PASS][486] +18 other tests pass [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-2/igt@kms_selftest@drm_format.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-8/igt@kms_selftest@drm_format.html * igt@kms_setmode@basic: - shard-dg1: [FAIL][487] ([i915#5465]) -> [PASS][488] [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-12/igt@kms_setmode@basic.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-17/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [FAIL][489] ([i915#5465]) -> [PASS][490] +2 other tests pass [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-3: - shard-dg2: [FAIL][491] ([i915#5465]) -> [PASS][492] +2 other tests pass [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-2/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][493] ([i915#12917] / [i915#12964]) -> [PASS][494] +1 other test pass [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-1/igt@kms_vblank@query-forked-hang.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-5/igt@kms_vblank@query-forked-hang.html * igt@prime_mmap_coherency@write: - shard-snb: [INCOMPLETE][495] -> [PASS][496] [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb1/igt@prime_mmap_coherency@write.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb1/igt@prime_mmap_coherency@write.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][497] ([i915#10887] / [i915#9820]) -> [ABORT][498] ([i915#9820]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_chamelium_color@ctm-max: - shard-dg1: [SKIP][499] -> [SKIP][500] ([i915#4423]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-12/igt@kms_chamelium_color@ctm-max.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@kms_chamelium_color@ctm-max.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][501] ([i915#7118] / [i915#9424]) -> [FAIL][502] ([i915#7173]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-1/igt@kms_content_protection@legacy.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][503] -> [INCOMPLETE][504] ([i915#8816]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-snb5/igt@kms_content_protection@srm.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-snb7/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][505] ([i915#7118] / [i915#9424]) -> [SKIP][506] ([i915#7118] / [i915#7162] / [i915#9424]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-5/igt@kms_content_protection@type1.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [DMESG-FAIL][507] ([i915#12964]) -> [FAIL][508] ([i915#13566]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: [SKIP][509] ([i915#8381]) -> [SKIP][510] ([i915#4423] / [i915#8381]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][511] ([i915#3458]) -> [SKIP][512] ([i915#10433] / [i915#3458]) +1 other test skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-slowdraw.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][513] ([i915#12713]) -> [SKIP][514] ([i915#13331]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][515] ([i915#12713]) -> [SKIP][516] ([i915#1187] / [i915#12713]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][517] ([i915#12713]) -> [SKIP][518] ([i915#1187] / [i915#12713]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][519] ([i915#4816]) -> [SKIP][520] ([i915#4070] / [i915#4816]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_rpm@fences-dpms: - shard-dg1: [SKIP][521] ([i915#4077]) -> [SKIP][522] ([i915#4077] / [i915#4423]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8255/shard-dg1-18/igt@kms_pm_rpm@fences-dpms.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/shard-dg1-19/igt@kms_pm_rpm@fences-dpms.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13028]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13028 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798 [i915#1522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1522 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8255 -> IGTPW_12685 CI-20190529: 20190529 CI_DRM_16205: ca9d01b66c70413a62a1a28fbf8709d2e8440c1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12685: cb668941c1b9e5928ae07be65941f77e661b70fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8255: 4ef742fae97d2f4af680f9e29f7ea45920f939b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12685/index.html [-- Attachment #2: Type: text/html, Size: 171332 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-03-04 10:23 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-28 14:18 [PATCH i-g-t v3 0/4] Add single engine busyness stats in GPUTOP Soham Purkait 2025-02-28 14:18 ` [PATCH i-g-t v3 1/4] Enable finding all IGT devices for xe driver Soham Purkait 2025-02-28 16:58 ` Lucas De Marchi 2025-02-28 14:18 ` [PATCH i-g-t v3 2/4] Add gputop functionality common to all drivers Soham Purkait 2025-03-04 10:07 ` Riana Tauro 2025-02-28 14:18 ` [PATCH i-g-t v3 3/4] Add gputop support for xe specific devices Soham Purkait 2025-03-04 10:22 ` Riana Tauro 2025-02-28 14:18 ` [PATCH i-g-t v3 4/4] Enable support for multiple GPUs and instances Soham Purkait 2025-02-28 22:37 ` ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP (rev4) Patchwork 2025-02-28 23:06 ` ✓ Xe.CI.BAT: " Patchwork 2025-03-01 7:45 ` ✗ Xe.CI.Full: failure " Patchwork 2025-03-01 11:23 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox