* [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
@ 2025-01-30 10:27 Zbigniew Kempczyński
2025-01-30 12:00 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-30 10:27 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
Tests don't need all attributes so default device scanning is now
limited to small list directly used in device filters. To be backward
compatible tools like lsgpu still may scan whole attribute list what
keeps this behavior intact.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
v2: refactor code a bit (Kamil)
---
lib/igt_device_scan.c | 50 ++++++++++++++++++++++++++++++++++---------
lib/igt_device_scan.h | 1 +
tools/lsgpu.c | 2 +-
3 files changed, 42 insertions(+), 11 deletions(-)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index c36b0efa90..711bedc5c8 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -22,6 +22,7 @@
*
*/
+#include "drmtest.h"
#include "igt_core.h"
#include "igt_device_scan.h"
#include "igt_list.h"
@@ -206,6 +207,8 @@ enum dev_type {
#define STR_INTEGRATED "integrated"
#define STR_DISCRETE "discrete"
+static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
+
static inline bool strequal(const char *a, const char *b)
{
if (a == NULL || b == NULL)
@@ -548,7 +551,7 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
* Function skips sysattrs from blacklist ht (acquiring some values can take
* seconds).
*/
-static void get_attrs(struct udev_device *dev, struct igt_device *idev)
+static void get_attrs_all(struct udev_device *dev, struct igt_device *idev)
{
struct udev_list_entry *entry;
@@ -569,6 +572,19 @@ static void get_attrs(struct udev_device *dev, struct igt_device *idev)
}
}
+static void get_attrs_limited(struct udev_device *dev, struct igt_device *idev)
+{
+ const char *value;
+
+ for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
+ value = udev_device_get_sysattr_value(dev, attrs[i]);
+ if (!value)
+ continue;
+ igt_device_add_attr(idev, attrs[i], value);
+ DBG("attr: %s, val: %s\n", attrs[i], value);
+ }
+}
+
#define get_prop(dev, prop) ((char *) g_hash_table_lookup(dev->props_ht, prop))
#define get_attr(dev, attr) ((char *) g_hash_table_lookup(dev->attrs_ht, attr))
#define get_prop_subsystem(dev) get_prop(dev, "SUBSYSTEM")
@@ -639,7 +655,8 @@ static char* strdup_nullsafe(const char* str)
* Fills structure with most usable udev device variables, properties
* and sysattrs.
*/
-static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
+static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
+ bool limit_attrs)
{
struct igt_device *idev = igt_device_new();
@@ -654,7 +671,8 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
idev->drm_render = strdup(idev->devnode);
get_props(dev, idev);
- get_attrs(dev, idev);
+ limit_attrs ? get_attrs_limited(dev, idev) :
+ get_attrs_all(dev, idev);
if (is_pci_subsystem(idev)) {
uint16_t vendor, device;
@@ -868,7 +886,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
*/
static void update_or_add_parent(struct udev *udev,
struct udev_device *dev,
- struct igt_device *idev)
+ struct igt_device *idev,
+ bool limit_attrs)
{
struct udev_device *parent_dev;
struct igt_device *parent_idev;
@@ -899,7 +918,7 @@ static void update_or_add_parent(struct udev *udev,
* return fresh udev device.
*/
parent_dev = udev_device_new_from_syspath(udev, syspath);
- parent_idev = igt_device_new_from_udev(parent_dev);
+ parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
udev_device_unref(parent_dev);
if (parent_idev)
@@ -1000,7 +1019,7 @@ static void index_pci_devices(void)
* Function sorts all found devices to keep same order of bus devices
* for providing predictable search.
*/
-static void scan_drm_devices(void)
+static void scan_drm_devices(bool limit_attrs)
{
struct udev *udev;
struct udev_enumerate *enumerate;
@@ -1035,9 +1054,9 @@ static void scan_drm_devices(void)
path = udev_list_entry_get_name(dev_list_entry);
udev_dev = udev_device_new_from_syspath(udev, path);
- idev = igt_device_new_from_udev(udev_dev);
+ idev = igt_device_new_from_udev(udev_dev, limit_attrs);
igt_list_add_tail(&idev->link, &igt_devs.all);
- update_or_add_parent(udev, udev_dev, idev);
+ update_or_add_parent(udev, udev_dev, idev, limit_attrs);
udev_device_unref(udev_dev);
}
@@ -1092,17 +1111,28 @@ void igt_devices_free(void)
*
* Function scans udev in search of gpu devices.
*/
-void igt_devices_scan(void)
+
+static void __igt_devices_scan(bool limit_attrs)
{
if (igt_devs.devs_scanned)
igt_devices_free();
prepare_scan();
- scan_drm_devices();
+ scan_drm_devices(limit_attrs);
igt_devs.devs_scanned = true;
}
+void igt_devices_scan(void)
+{
+ __igt_devices_scan(true);
+}
+
+void igt_devices_scan_all_attrs(void)
+{
+ __igt_devices_scan(false);
+}
+
static inline void _pr_simple(const char *k, const char *v)
{
printf(" %-16s: %s\n", k, v);
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index fa90134aa3..92741fe3c7 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -64,6 +64,7 @@ struct igt_device_card {
};
void igt_devices_scan(void);
+void igt_devices_scan_all_attrs(void);
void igt_devices_print(const struct igt_devices_print_format *fmt);
void igt_devices_print_vendors(void);
diff --git a/tools/lsgpu.c b/tools/lsgpu.c
index e482ca6b75..e683900833 100644
--- a/tools/lsgpu.c
+++ b/tools/lsgpu.c
@@ -362,7 +362,7 @@ int main(int argc, char *argv[])
printf("Notice: Using filter from .igtrc\n");
}
- igt_devices_scan();
+ igt_devices_scan_all_attrs();
if (igt_device != NULL) {
struct igt_device_card card;
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
@ 2025-01-30 12:00 ` Kamil Konieczny
2025-02-03 8:04 ` Bernatowicz, Marcin
2025-01-31 7:06 ` ✓ Xe.CI.BAT: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Kamil Konieczny @ 2025-01-30 12:00 UTC (permalink / raw)
To: igt-dev
Cc: Zbigniew Kempczyński, Marcin Bernatowicz, Lukasz Laguna,
Lucas De Marchi
Hi Zbigniew,
On 2025-01-30 at 11:27:41 +0100, Zbigniew Kempczyński wrote:
> Tests don't need all attributes so default device scanning is now
> limited to small list directly used in device filters. To be backward
> compatible tools like lsgpu still may scan whole attribute list what
> keeps this behavior intact.
>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
+Cc sriov developers, please wait with merge until you hear
opinion from them
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
> v2: refactor code a bit (Kamil)
Now it looks better, change is smaller and easy to read.
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> lib/igt_device_scan.c | 50 ++++++++++++++++++++++++++++++++++---------
> lib/igt_device_scan.h | 1 +
> tools/lsgpu.c | 2 +-
> 3 files changed, 42 insertions(+), 11 deletions(-)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index c36b0efa90..711bedc5c8 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -22,6 +22,7 @@
> *
> */
>
> +#include "drmtest.h"
> #include "igt_core.h"
> #include "igt_device_scan.h"
> #include "igt_list.h"
> @@ -206,6 +207,8 @@ enum dev_type {
> #define STR_INTEGRATED "integrated"
> #define STR_DISCRETE "discrete"
>
> +static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
> +
> static inline bool strequal(const char *a, const char *b)
> {
> if (a == NULL || b == NULL)
> @@ -548,7 +551,7 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
> * Function skips sysattrs from blacklist ht (acquiring some values can take
> * seconds).
> */
> -static void get_attrs(struct udev_device *dev, struct igt_device *idev)
> +static void get_attrs_all(struct udev_device *dev, struct igt_device *idev)
> {
> struct udev_list_entry *entry;
>
> @@ -569,6 +572,19 @@ static void get_attrs(struct udev_device *dev, struct igt_device *idev)
> }
> }
>
> +static void get_attrs_limited(struct udev_device *dev, struct igt_device *idev)
> +{
> + const char *value;
> +
> + for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
> + value = udev_device_get_sysattr_value(dev, attrs[i]);
> + if (!value)
> + continue;
> + igt_device_add_attr(idev, attrs[i], value);
> + DBG("attr: %s, val: %s\n", attrs[i], value);
> + }
> +}
> +
> #define get_prop(dev, prop) ((char *) g_hash_table_lookup(dev->props_ht, prop))
> #define get_attr(dev, attr) ((char *) g_hash_table_lookup(dev->attrs_ht, attr))
> #define get_prop_subsystem(dev) get_prop(dev, "SUBSYSTEM")
> @@ -639,7 +655,8 @@ static char* strdup_nullsafe(const char* str)
> * Fills structure with most usable udev device variables, properties
> * and sysattrs.
> */
> -static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> +static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
> + bool limit_attrs)
> {
> struct igt_device *idev = igt_device_new();
>
> @@ -654,7 +671,8 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> idev->drm_render = strdup(idev->devnode);
>
> get_props(dev, idev);
> - get_attrs(dev, idev);
> + limit_attrs ? get_attrs_limited(dev, idev) :
> + get_attrs_all(dev, idev);
>
> if (is_pci_subsystem(idev)) {
> uint16_t vendor, device;
> @@ -868,7 +886,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
> */
> static void update_or_add_parent(struct udev *udev,
> struct udev_device *dev,
> - struct igt_device *idev)
> + struct igt_device *idev,
> + bool limit_attrs)
> {
> struct udev_device *parent_dev;
> struct igt_device *parent_idev;
> @@ -899,7 +918,7 @@ static void update_or_add_parent(struct udev *udev,
> * return fresh udev device.
> */
> parent_dev = udev_device_new_from_syspath(udev, syspath);
> - parent_idev = igt_device_new_from_udev(parent_dev);
> + parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
> udev_device_unref(parent_dev);
>
> if (parent_idev)
> @@ -1000,7 +1019,7 @@ static void index_pci_devices(void)
> * Function sorts all found devices to keep same order of bus devices
> * for providing predictable search.
> */
> -static void scan_drm_devices(void)
> +static void scan_drm_devices(bool limit_attrs)
> {
> struct udev *udev;
> struct udev_enumerate *enumerate;
> @@ -1035,9 +1054,9 @@ static void scan_drm_devices(void)
>
> path = udev_list_entry_get_name(dev_list_entry);
> udev_dev = udev_device_new_from_syspath(udev, path);
> - idev = igt_device_new_from_udev(udev_dev);
> + idev = igt_device_new_from_udev(udev_dev, limit_attrs);
> igt_list_add_tail(&idev->link, &igt_devs.all);
> - update_or_add_parent(udev, udev_dev, idev);
> + update_or_add_parent(udev, udev_dev, idev, limit_attrs);
>
> udev_device_unref(udev_dev);
> }
> @@ -1092,17 +1111,28 @@ void igt_devices_free(void)
> *
> * Function scans udev in search of gpu devices.
> */
> -void igt_devices_scan(void)
> +
> +static void __igt_devices_scan(bool limit_attrs)
> {
> if (igt_devs.devs_scanned)
> igt_devices_free();
>
> prepare_scan();
> - scan_drm_devices();
> + scan_drm_devices(limit_attrs);
>
> igt_devs.devs_scanned = true;
> }
>
> +void igt_devices_scan(void)
> +{
> + __igt_devices_scan(true);
> +}
> +
> +void igt_devices_scan_all_attrs(void)
> +{
> + __igt_devices_scan(false);
> +}
> +
> static inline void _pr_simple(const char *k, const char *v)
> {
> printf(" %-16s: %s\n", k, v);
> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> index fa90134aa3..92741fe3c7 100644
> --- a/lib/igt_device_scan.h
> +++ b/lib/igt_device_scan.h
> @@ -64,6 +64,7 @@ struct igt_device_card {
> };
>
> void igt_devices_scan(void);
> +void igt_devices_scan_all_attrs(void);
>
> void igt_devices_print(const struct igt_devices_print_format *fmt);
> void igt_devices_print_vendors(void);
> diff --git a/tools/lsgpu.c b/tools/lsgpu.c
> index e482ca6b75..e683900833 100644
> --- a/tools/lsgpu.c
> +++ b/tools/lsgpu.c
> @@ -362,7 +362,7 @@ int main(int argc, char *argv[])
> printf("Notice: Using filter from .igtrc\n");
> }
>
> - igt_devices_scan();
> + igt_devices_scan_all_attrs();
>
> if (igt_device != NULL) {
> struct igt_device_card card;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
2025-01-30 12:00 ` Kamil Konieczny
@ 2025-02-03 8:04 ` Bernatowicz, Marcin
0 siblings, 0 replies; 12+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-03 8:04 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Zbigniew Kempczyński,
Lukasz Laguna, Lucas De Marchi
On 1/30/2025 1:00 PM, Kamil Konieczny wrote:
> Hi Zbigniew,
> On 2025-01-30 at 11:27:41 +0100, Zbigniew Kempczyński wrote:
>> Tests don't need all attributes so default device scanning is now
>> limited to small list directly used in device filters. To be backward
>> compatible tools like lsgpu still may scan whole attribute list what
>> keeps this behavior intact.
>>
>> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
>> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> +Cc sriov developers, please wait with merge until you hear
> opinion from them
>
> Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
>
>> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
>> ---
>> v2: refactor code a bit (Kamil)
>
> Now it looks better, change is smaller and easy to read.
>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
>
>> ---
>> lib/igt_device_scan.c | 50 ++++++++++++++++++++++++++++++++++---------
>> lib/igt_device_scan.h | 1 +
>> tools/lsgpu.c | 2 +-
>> 3 files changed, 42 insertions(+), 11 deletions(-)
>>
>> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
>> index c36b0efa90..711bedc5c8 100644
>> --- a/lib/igt_device_scan.c
>> +++ b/lib/igt_device_scan.c
>> @@ -22,6 +22,7 @@
>> *
>> */
>>
>> +#include "drmtest.h"
>> #include "igt_core.h"
>> #include "igt_device_scan.h"
>> #include "igt_list.h"
>> @@ -206,6 +207,8 @@ enum dev_type {
>> #define STR_INTEGRATED "integrated"
>> #define STR_DISCRETE "discrete"
>>
>> +static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
>> +
>> static inline bool strequal(const char *a, const char *b)
>> {
>> if (a == NULL || b == NULL)
>> @@ -548,7 +551,7 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
>> * Function skips sysattrs from blacklist ht (acquiring some values can take
>> * seconds).
>> */
>> -static void get_attrs(struct udev_device *dev, struct igt_device *idev)
>> +static void get_attrs_all(struct udev_device *dev, struct igt_device *idev)
>> {
>> struct udev_list_entry *entry;
>>
>> @@ -569,6 +572,19 @@ static void get_attrs(struct udev_device *dev, struct igt_device *idev)
>> }
>> }
>>
>> +static void get_attrs_limited(struct udev_device *dev, struct igt_device *idev)
>> +{
>> + const char *value;
>> +
>> + for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
>> + value = udev_device_get_sysattr_value(dev, attrs[i]);
>> + if (!value)
>> + continue;
>> + igt_device_add_attr(idev, attrs[i], value);
>> + DBG("attr: %s, val: %s\n", attrs[i], value);
>> + }
>> +}
>> +
>> #define get_prop(dev, prop) ((char *) g_hash_table_lookup(dev->props_ht, prop))
>> #define get_attr(dev, attr) ((char *) g_hash_table_lookup(dev->attrs_ht, attr))
>> #define get_prop_subsystem(dev) get_prop(dev, "SUBSYSTEM")
>> @@ -639,7 +655,8 @@ static char* strdup_nullsafe(const char* str)
>> * Fills structure with most usable udev device variables, properties
>> * and sysattrs.
>> */
>> -static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
>> +static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
>> + bool limit_attrs)
>> {
>> struct igt_device *idev = igt_device_new();
>>
>> @@ -654,7 +671,8 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
>> idev->drm_render = strdup(idev->devnode);
>>
>> get_props(dev, idev);
>> - get_attrs(dev, idev);
>> + limit_attrs ? get_attrs_limited(dev, idev) :
>> + get_attrs_all(dev, idev);
>>
>> if (is_pci_subsystem(idev)) {
>> uint16_t vendor, device;
>> @@ -868,7 +886,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
>> */
>> static void update_or_add_parent(struct udev *udev,
>> struct udev_device *dev,
>> - struct igt_device *idev)
>> + struct igt_device *idev,
>> + bool limit_attrs)
>> {
>> struct udev_device *parent_dev;
>> struct igt_device *parent_idev;
>> @@ -899,7 +918,7 @@ static void update_or_add_parent(struct udev *udev,
>> * return fresh udev device.
>> */
>> parent_dev = udev_device_new_from_syspath(udev, syspath);
>> - parent_idev = igt_device_new_from_udev(parent_dev);
>> + parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
>> udev_device_unref(parent_dev);
>>
>> if (parent_idev)
>> @@ -1000,7 +1019,7 @@ static void index_pci_devices(void)
>> * Function sorts all found devices to keep same order of bus devices
>> * for providing predictable search.
>> */
>> -static void scan_drm_devices(void)
>> +static void scan_drm_devices(bool limit_attrs)
>> {
>> struct udev *udev;
>> struct udev_enumerate *enumerate;
>> @@ -1035,9 +1054,9 @@ static void scan_drm_devices(void)
>>
>> path = udev_list_entry_get_name(dev_list_entry);
>> udev_dev = udev_device_new_from_syspath(udev, path);
>> - idev = igt_device_new_from_udev(udev_dev);
>> + idev = igt_device_new_from_udev(udev_dev, limit_attrs);
>> igt_list_add_tail(&idev->link, &igt_devs.all);
>> - update_or_add_parent(udev, udev_dev, idev);
>> + update_or_add_parent(udev, udev_dev, idev, limit_attrs);
>>
>> udev_device_unref(udev_dev);
>> }
>> @@ -1092,17 +1111,28 @@ void igt_devices_free(void)
>> *
>> * Function scans udev in search of gpu devices.
>> */
>> -void igt_devices_scan(void)
>> +
>> +static void __igt_devices_scan(bool limit_attrs)
>> {
>> if (igt_devs.devs_scanned)
>> igt_devices_free();
>>
>> prepare_scan();
>> - scan_drm_devices();
>> + scan_drm_devices(limit_attrs);
>>
>> igt_devs.devs_scanned = true;
>> }
>>
>> +void igt_devices_scan(void)
>> +{
>> + __igt_devices_scan(true);
>> +}
>> +
>> +void igt_devices_scan_all_attrs(void)
>> +{
>> + __igt_devices_scan(false);
>> +}
>> +
>> static inline void _pr_simple(const char *k, const char *v)
>> {
>> printf(" %-16s: %s\n", k, v);
>> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
>> index fa90134aa3..92741fe3c7 100644
>> --- a/lib/igt_device_scan.h
>> +++ b/lib/igt_device_scan.h
>> @@ -64,6 +64,7 @@ struct igt_device_card {
>> };
>>
>> void igt_devices_scan(void);
>> +void igt_devices_scan_all_attrs(void);
>>
>> void igt_devices_print(const struct igt_devices_print_format *fmt);
>> void igt_devices_print_vendors(void);
>> diff --git a/tools/lsgpu.c b/tools/lsgpu.c
>> index e482ca6b75..e683900833 100644
>> --- a/tools/lsgpu.c
>> +++ b/tools/lsgpu.c
>> @@ -362,7 +362,7 @@ int main(int argc, char *argv[])
>> printf("Notice: Using filter from .igtrc\n");
>> }
>>
>> - igt_devices_scan();
>> + igt_devices_scan_all_attrs();
>>
>> if (igt_device != NULL) {
>> struct igt_device_card card;
LGTM,
Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
>> --
>> 2.34.1
>>
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3)
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
2025-01-30 12:00 ` Kamil Konieczny
@ 2025-01-31 7:06 ` Patchwork
2025-01-31 7:32 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-01-31 7:06 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3214 bytes --]
== Series Details ==
Series: lib/igt_device_scan: limit fetched device attributes from udev (rev3)
URL : https://patchwork.freedesktop.org/series/144019/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8218_BAT -> XEIGTPW_12524_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_12524_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_exec_basic@twice-bindexecqueue-rebind:
- bat-adlp-vf: [DMESG-WARN][3] ([Intel XE#3970] / [Intel XE#4078]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [SKIP][5] ([Intel XE#1192]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4078
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8218 -> IGTPW_12524
* Linux: xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b -> xe-2578-0c2a60e7f1e779d87754254d9e3443beedbb684e
IGTPW_12524: 12524
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b: c2a5da40b8b1c5af77dcdabed8516069949fea3b
xe-2578-0c2a60e7f1e779d87754254d9e3443beedbb684e: 0c2a60e7f1e779d87754254d9e3443beedbb684e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/index.html
[-- Attachment #2: Type: text/html, Size: 4176 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✓ i915.CI.BAT: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3)
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
2025-01-30 12:00 ` Kamil Konieczny
2025-01-31 7:06 ` ✓ Xe.CI.BAT: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3) Patchwork
@ 2025-01-31 7:32 ` Patchwork
2025-01-31 8:54 ` ✗ i915.CI.Full: failure " Patchwork
2025-01-31 9:11 ` ✓ Xe.CI.Full: success " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-01-31 7:32 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1980 bytes --]
== Series Details ==
Series: lib/igt_device_scan: limit fetched device attributes from udev (rev3)
URL : https://patchwork.freedesktop.org/series/144019/
State : success
== Summary ==
CI Bug Log - changes from IGT_8218 -> IGTPW_12524
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/index.html
Participating hosts (44 -> 40)
------------------------------
Missing (4): fi-tgl-1115g4 bat-jsl-1 fi-snb-2520m bat-jsl-3
Known issues
------------
Here are the changes found in IGTPW_12524 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@runner@aborted:
- fi-pnv-d510: NOTRUN -> [FAIL][1] ([i915#13350])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/fi-pnv-d510/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][2] ([i915#12061]) -> [PASS][3] +1 other test pass
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8218/bat-mtlp-8/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/bat-mtlp-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8218 -> IGTPW_12524
* Linux: CI_DRM_16041 -> CI_DRM_16047
CI-20190529: 20190529
CI_DRM_16041: c2a5da40b8b1c5af77dcdabed8516069949fea3b @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16047: 0c2a60e7f1e779d87754254d9e3443beedbb684e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12524: 12524
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/index.html
[-- Attachment #2: Type: text/html, Size: 2604 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ i915.CI.Full: failure for lib/igt_device_scan: limit fetched device attributes from udev (rev3)
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
` (2 preceding siblings ...)
2025-01-31 7:32 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-01-31 8:54 ` Patchwork
2025-02-03 6:06 ` Zbigniew Kempczyński
2025-01-31 9:11 ` ✓ Xe.CI.Full: success " Patchwork
4 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-01-31 8:54 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100289 bytes --]
== Series Details ==
Series: lib/igt_device_scan: limit fetched device attributes from udev (rev3)
URL : https://patchwork.freedesktop.org/series/144019/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16047_full -> IGTPW_12524_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12524_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12524_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_12524/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12524_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-mtlp: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@i915_selftest@live@hangcheck:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@i915_selftest@live@hangcheck.html
Known issues
------------
Here are the changes found in IGTPW_12524_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +16 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-2/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_busy@semaphore.html
* igt@gem_caching@writes:
- shard-rkl: [PASS][13] -> [DMESG-WARN][14] ([i915#12917] / [i915#12964])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-rkl-2/igt@gem_caching@writes.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#13008])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#7297])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][23] ([i915#12392] / [i915#7297])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#6335])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#8562])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][28] -> [FAIL][29] ([i915#9561]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg2-2/igt@gem_ctx_freq@sysfs.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][30] ([i915#1099]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-snb5/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#13197] / [i915#13390])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk7/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@unwedge-stress:
- shard-mtlp: [PASS][37] -> [ABORT][38] ([i915#13193])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-6/igt@gem_eio@unwedge-stress.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@gem_eio@unwedge-stress.html
- shard-snb: NOTRUN -> [FAIL][39] ([i915#8898]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4036])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4036])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4036])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4525]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4525])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4525])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#6334]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@gem_exec_capture@capture-invisible.html
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#6334]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#6334]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_nop@basic-sequential:
- shard-rkl: [PASS][54] -> [DMESG-WARN][55] ([i915#12964]) +21 other tests dmesg-warn
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-rkl-5/igt@gem_exec_nop@basic-sequential.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_exec_nop@basic-sequential.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +13 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3281]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3281]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3281]) +12 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][61] ([i915#7975] / [i915#8213]) +1 other test abort
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive-random:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#4613]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#12193])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4565])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#284])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#284])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#284])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#284])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gem_media_vme.html
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#284])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@gem_media_vme.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +14 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4083]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3282]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][86] ([i915#12964])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [TIMEOUT][87] ([i915#12917] / [i915#12964]) +1 other test timeout
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +9 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-6/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#4079])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4077]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4880])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3281] / [i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#3281] / [i915#3297])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#13356])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#2527] / [i915#2856]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
- shard-glk: NOTRUN -> [ABORT][107] ([i915#5566])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2856]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#2856]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][113] -> [ABORT][114] ([i915#10131] / [i915#10887])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#6412])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#8399]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#8399])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][118] ([i915#2681]) +1 other test warn
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@thresholds:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#11681])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6245])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-7/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live:
- shard-rkl: NOTRUN -> [DMESG-FAIL][122] ([i915#12964] / [i915#13550])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: NOTRUN -> [DMESG-FAIL][123] ([i915#13550])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][124] ([i915#12061]) +1 other test dmesg-fail
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][125] ([i915#9311]) +1 other test dmesg-warn
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][126] ([i915#9311]) +1 other test dmesg-warn
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][127] ([i915#4817])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk6/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][128] -> [INCOMPLETE][129] ([i915#4817]) +1 other test incomplete
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-glk3/igt@i915_suspend@sysfs-reader.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk3/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#7707])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#4215])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#4212])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4212]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#8709]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#8709]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#12967] / [i915#6228])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#9531])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#9531])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#9531])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [PASS][144] -> [FAIL][145] ([i915#11808] / [i915#5956]) +1 other test fail
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5286]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#5286]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#5286]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#5286]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#5286]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3638]) +6 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][152] +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3638])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#4538]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6095]) +39 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#6095]) +79 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/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-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#6095]) +149 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#12313])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#12313])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#12313]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#12805])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +86 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +29 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#12805])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#6095]) +104 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6095]) +19 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][170] ([i915#12796]) +1 other test incomplete
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#12313]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#7213] / [i915#9010]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3742]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3742])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +13 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +8 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +8 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#7118] / [i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3116] / [i915#3299])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3116])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3116] / [i915#3299])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [TIMEOUT][186] ([i915#7173]) +1 other test timeout
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9424]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#9424]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9424])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#7116] / [i915#9424])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8814])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8814]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13049])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#13049]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#13049])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13049]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: NOTRUN -> [FAIL][199] ([i915#13566]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#3555]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#13049])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [PASS][203] -> [FAIL][204] ([i915#13566]) +3 other tests fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#12358] / [i915#7882])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12358])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4213])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9809])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#13046] / [i915#5354]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#9067])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4103])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-dg1: [PASS][213] -> [DMESG-WARN][214] ([i915#4423]) +2 other tests dmesg-warn
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg1-18/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9833])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3555])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#8588])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#1769] / [i915#3555] / [i915#3804])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3804])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#1257])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#1257])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#1257])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_dp_aux_dev.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#1257])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-7/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#8812])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3840])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#3840] / [i915#9053])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#3840] / [i915#9053])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3840] / [i915#9053])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#3469])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3469])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#4854])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@kms_feature_discovery@chamelium.html
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#2065] / [i915#4854])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#1839]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#1839])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#1839]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#658]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9934]) +6 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#9934]) +12 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3637]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8381])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8381])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8381])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#3637]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][250] ([i915#12314] / [i915#12745] / [i915#1982] / [i915#4839])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][251] ([i915#1982] / [i915#4839])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#3637]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [FAIL][253] ([i915#11989]) +3 other tests fail
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#9934]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-tglu: [PASS][255] -> [FAIL][256] ([i915#11989]) +1 other test fail
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-tglu-10/igt@kms_flip@basic-flip-vs-wf_vblank.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][257] -> [FAIL][258] ([i915#11989]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-fences@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][259] ([i915#12964]) +25 other tests dmesg-warn
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb:
- shard-dg1: [PASS][260] -> [INCOMPLETE][261] ([i915#6113]) +1 other test incomplete
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg1-12/igt@kms_flip@flip-vs-rmfb.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][262] ([i915#12745] / [i915#4839])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][263] ([i915#12745])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-dg1: NOTRUN -> [DMESG-WARN][264] ([i915#4423]) +4 other tests dmesg-warn
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#3555])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#8813]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#2672])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#2587] / [i915#2672]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#2672]) +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8708]) +7 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#8708]) +18 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#5354]) +31 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][281] +95 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][282] +57 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][283] +36 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#3458]) +16 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][285] +25 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#1825]) +15 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#10433] / [i915#3458])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#5439])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#9766])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9766])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#8708]) +17 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3023]) +35 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#3458]) +19 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#1825]) +57 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][295] +469 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8228]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#1187] / [i915#12713])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#3555] / [i915#8228])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-7/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#12339])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#10656])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#12394])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#12339]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#12339]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#12339])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#13522])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#1839])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#6301]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#6301])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][315] ([i915#10647] / [i915#12177])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][316] ([i915#10647]) +1 other test fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#11614] / [i915#3582]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_plane_lowres@tiling-none.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8806])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#6953])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12247]) +13 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#12247]) +23 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +14 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#9423]) +3 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#12247]) +7 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-glk: NOTRUN -> [SKIP][326] +282 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247]) +19 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953] / [i915#9423])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#6953])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#12247] / [i915#6953])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#12247]) +13 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#5354]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9812])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#12343])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#9812]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_pm_backlight@fade-with-suspend.html
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#5354])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#9685])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#9685])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#9685])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#5978])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#9519])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][343] -> [SKIP][344] ([i915#9519])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][345] -> [SKIP][346] ([i915#9519])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#9519])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#9519])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#6524] / [i915#6805])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#6524])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#6524])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][352] ([i915#11520]) +14 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-snb1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11520]) +6 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +6 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#9808]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#12316]) +4 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#11520]) +14 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][358] ([i915#11520]) +5 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#11520]) +7 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#11520]) +8 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg1: NOTRUN -> [SKIP][361] ([i915#9683])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#9683]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +18 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-5/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9688]) +8 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-1/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#9732]) +23 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-10/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@pr-suspend:
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +14 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +25 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9732]) +12 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9685]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9685])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#5289])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#5289])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#5289])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][376] ([i915#3555]) +9 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][377] ([i915#13179]) +1 other test abort
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][378] ([i915#12276]) +1 other test incomplete
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#9906]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#11920])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#11920])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#3555] / [i915#9906])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#9906])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][384] ([i915#9906])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#2437])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#2437])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-9/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][388] ([i915#2437])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-glk2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][389] +6 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#7387])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-10/igt@perf@global-sseu-config.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [PASS][391] -> [FAIL][392] ([i915#11943])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#8850])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#8516])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][395] ([i915#3708])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#3708])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-4/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#3291] / [i915#3708])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [FAIL][398] ([i915#12910]) +9 other tests fail
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#9917]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#9917]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][401] ([i915#9917]) +2 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
- shard-mtlp: NOTRUN -> [FAIL][402] ([i915#12910]) +9 other tests fail
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
#### Possible fixes ####
* igt@gem_eio@context-create:
- shard-mtlp: [ABORT][403] -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-7/igt@gem_eio@context-create.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@gem_eio@context-create.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][405] ([i915#12543] / [i915#5784]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg1-13/igt@gem_eio@reset-stress.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-14/igt@gem_eio@reset-stress.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [ABORT][407] ([i915#7975] / [i915#8213]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][409] ([i915#10729]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [FAIL][411] ([i915#3591]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][413] ([i915#12739] / [i915#3591]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-mtlp: [ABORT][415] ([i915#13193]) -> [PASS][416] +2 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-7/igt@i915_pm_rpm@system-suspend-devices.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [DMESG-FAIL][417] ([i915#12964]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][419] ([i915#5138]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][421] ([i915#13566]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16047/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-snb: [SKIP][423] -> [PASS][424] +1 other test pass
[423]: http
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/index.html
[-- Attachment #2: Type: text/html, Size: 110038 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: ✗ i915.CI.Full: failure for lib/igt_device_scan: limit fetched device attributes from udev (rev3)
2025-01-31 8:54 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-03 6:06 ` Zbigniew Kempczyński
0 siblings, 0 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2025-02-03 6:06 UTC (permalink / raw)
To: igt-dev
On Fri, Jan 31, 2025 at 08:54:05AM +0000, Patchwork wrote:
> Patch Details
>
> Series: lib/igt_device_scan: limit fetched device attributes from udev
> (rev3)
> URL: https://patchwork.freedesktop.org/series/144019/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12524/index.html
>
> CI Bug Log - changes from CI_DRM_16047_full -> IGTPW_12524_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_12524_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12524_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_12524/index.html
>
> Participating hosts (11 -> 11)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_12524_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>
> * shard-mtlp: PASS -> ABORT +1 other test abort
> * igt@i915_selftest@live@hangcheck:
>
> * shard-mtlp: NOTRUN -> DMESG-FAIL
Unrelated to the change.
--
Zbigniew
>
> Known issues
>
> Here are the changes found in IGTPW_12524_full that come from known
> issues:
>
> IGT changes
>
> Issues hit
>
> * igt@api_intel_bb@crc32:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6230])
> * igt@api_intel_bb@object-reloc-keep-cache:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8411]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#8411])
> * shard-dg2: NOTRUN -> SKIP ([i915#8411])
> * igt@device_reset@cold-reset-bound:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#11078])
> * igt@drm_fdinfo@all-busy-check-all:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8414]) +1 other test skip
> * igt@drm_fdinfo@busy-check-all@bcs0:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8414]) +5 other tests skip
> * igt@drm_fdinfo@virtual-busy-all:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8414]) +16 other tests skip
> * igt@gem_busy@semaphore:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3936])
> * igt@gem_caching@writes:
>
> * shard-rkl: PASS -> DMESG-WARN ([i915#12917] / [i915#12964])
> * igt@gem_ccs@block-multicopy-compressed:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9323])
> * igt@gem_ccs@block-multicopy-inplace:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#9323])
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#9323])
> * igt@gem_ccs@ctrl-surf-copy-new-ctx:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9323])
> * igt@gem_ccs@large-ctrl-surf-copy:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#13008])
> * igt@gem_ccs@suspend-resume:
>
> * shard-dg2: NOTRUN -> INCOMPLETE ([i915#7297])
> * shard-rkl: NOTRUN -> SKIP ([i915#9323])
> * shard-dg1: NOTRUN -> SKIP ([i915#9323])
> * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
>
> * shard-dg2: NOTRUN -> INCOMPLETE ([i915#12392] / [i915#7297])
> * igt@gem_close_race@multigpu-basic-threads:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#7697])
> * igt@gem_create@create-ext-cpu-access-sanity-check:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6335])
> * shard-mtlp: NOTRUN -> SKIP ([i915#6335])
> * igt@gem_create@create-ext-set-pat:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8562])
> * igt@gem_ctx_freq@sysfs:
>
> * shard-dg2: PASS -> FAIL ([i915#9561]) +1 other test fail
> * igt@gem_ctx_persistence@processes:
>
> * shard-snb: NOTRUN -> SKIP ([i915#1099]) +3 other tests skip
> * igt@gem_ctx_sseu@engines:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#280]) +1 other test skip
> * igt@gem_ctx_sseu@invalid-args:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#280])
> * igt@gem_ctx_sseu@invalid-sseu:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#280]) +1 other test skip
> * shard-tglu-1: NOTRUN -> SKIP ([i915#280])
> * shard-mtlp: NOTRUN -> SKIP ([i915#280])
> * igt@gem_eio@in-flight-suspend:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#13197] / [i915#13390])
> * igt@gem_eio@unwedge-stress:
>
> * shard-mtlp: PASS -> ABORT ([i915#13193])
> * shard-snb: NOTRUN -> FAIL ([i915#8898]) +1 other test fail
> * igt@gem_exec_balancer@bonded-dual:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4771])
> * igt@gem_exec_balancer@bonded-true-hang:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4812])
> * shard-dg1: NOTRUN -> SKIP ([i915#4812])
> * igt@gem_exec_balancer@invalid-bonds:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4036])
> * shard-dg1: NOTRUN -> SKIP ([i915#4036])
> * shard-mtlp: NOTRUN -> SKIP ([i915#4036])
> * igt@gem_exec_balancer@parallel-contexts:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4525]) +1 other test skip
> * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4525])
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4525])
> * igt@gem_exec_capture@capture-invisible:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6334]) +2 other tests skip
> * shard-rkl: NOTRUN -> SKIP ([i915#6334]) +1 other test skip
> * shard-tglu: NOTRUN -> SKIP ([i915#6334]) +1 other test skip
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3539] / [i915#4852]) +2 other
> tests skip
> * igt@gem_exec_flush@basic-uc-rw-default:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3539] / [i915#4852]) +3 other
> tests skip
> * igt@gem_exec_nop@basic-sequential:
>
> * shard-rkl: PASS -> DMESG-WARN ([i915#12964]) +21 other tests
> dmesg-warn
> * igt@gem_exec_reloc@basic-active:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3281]) +13 other tests skip
> * igt@gem_exec_reloc@basic-cpu-read-noreloc:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3281]) +3 other tests skip
> * igt@gem_exec_reloc@basic-wc-read-active:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3281]) +6 other tests skip
> * igt@gem_exec_reloc@basic-wc-read-noreloc:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3281]) +12 other tests skip
> * igt@gem_exec_schedule@reorder-wide:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4537] / [i915#4812]) +1 other
> test skip
> * igt@gem_exec_suspend@basic-s4-devices:
>
> * shard-rkl: NOTRUN -> ABORT ([i915#7975] / [i915#8213]) +1 other
> test abort
> * igt@gem_fence_thrash@bo-write-verify-none:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4860]) +2 other tests skip
> * igt@gem_fenced_exec_thrash@too-many-fences:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4860])
> * igt@gem_lmem_swapping@basic:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#4613]) +1 other test skip
> * igt@gem_lmem_swapping@massive-random:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4613]) +1 other test skip
> * igt@gem_lmem_swapping@parallel-multi:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4613]) +3 other tests skip
> * igt@gem_lmem_swapping@parallel-random:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#4613]) +3 other tests skip
> * igt@gem_lmem_swapping@parallel-random-verify:
>
> * shard-glk: NOTRUN -> SKIP ([i915#4613]) +2 other tests skip
> * igt@gem_lmem_swapping@verify-ccs:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12193])
> * igt@gem_lmem_swapping@verify-ccs@lmem0:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4565])
> * igt@gem_madvise@dontneed-before-exec:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3282]) +3 other tests skip
> * igt@gem_media_vme:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#284])
> * shard-dg2: NOTRUN -> SKIP ([i915#284])
> * shard-rkl: NOTRUN -> SKIP ([i915#284])
> * shard-dg1: NOTRUN -> SKIP ([i915#284])
> * shard-tglu: NOTRUN -> SKIP ([i915#284])
> * igt@gem_mmap@pf-nonblock:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4083]) +4 other tests skip
> * igt@gem_mmap_gtt@cpuset-big-copy:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4077]) +14 other tests skip
> * igt@gem_mmap_gtt@fault-concurrent-y:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4077]) +1 other test skip
> * igt@gem_mmap_wc@read:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4083]) +5 other tests skip
> * igt@gem_partial_pwrite_pread@writes-after-reads-display:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3282]) +4 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3282]) +3 other tests skip
> * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3282]) +6 other tests skip
> * igt@gem_pxp@create-protected-buffer:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4270]) +2 other tests skip
> * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4270]) +2 other tests skip
> * igt@gem_pxp@fail-invalid-protected-context:
>
> * shard-rkl: NOTRUN -> TIMEOUT ([i915#12964])
> * igt@gem_pxp@hw-rejects-pxp-context:
>
> * shard-rkl: NOTRUN -> TIMEOUT ([i915#12917] / [i915#12964]) +1
> other test timeout
> * igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4270])
> * igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5190] / [i915#8428]) +9 other
> tests skip
> * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8428]) +1 other test skip
> * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4079])
> * igt@gem_set_tiling_vs_pwrite:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4079])
> * shard-dg2: NOTRUN -> SKIP ([i915#4079]) +1 other test skip
> * igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4077]) +7 other tests skip
> * igt@gem_userptr_blits@dmabuf-unsync:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * igt@gem_userptr_blits@invalid-mmap-offset-unsync:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * shard-dg2: NOTRUN -> SKIP ([i915#3297])
> * igt@gem_userptr_blits@map-fixed-invalidate:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3297] / [i915#4880])
> * igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297] / [i915#4880]) +1 other
> test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * igt@gem_userptr_blits@readonly-unsync:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3297])
> * igt@gem_userptr_blits@relocations:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3281] / [i915#3297])
> * shard-rkl: NOTRUN -> SKIP ([i915#3281] / [i915#3297])
> * igt@gem_userptr_blits@unsync-overlap:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3297]) +1 other test skip
> * igt@gem_workarounds@suspend-resume-context:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#13356])
> * igt@gen9_exec_parse@allowed-single:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +1 other
> test skip
> * shard-glk: NOTRUN -> ABORT ([i915#5566])
> * igt@gen9_exec_parse@basic-rejected:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2856]) +1 other test skip
> * igt@gen9_exec_parse@batch-without-end:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2856]) +2 other tests skip
> * igt@gen9_exec_parse@bb-chained:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2527]) +5 other tests skip
> * igt@gen9_exec_parse@cmd-crossing-page:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +4 other
> tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#2527])
> * igt@i915_module_load@reload-with-fault-injection:
>
> * shard-mtlp: PASS -> ABORT ([i915#10131] / [i915#10887])
> * igt@i915_module_load@resize-bar:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6412])
> * igt@i915_pm_freq_api@freq-basic-api:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#8399]) +2 other tests skip
> * shard-rkl: NOTRUN -> SKIP ([i915#8399])
> * igt@i915_pm_rc6_residency@rc6-fence:
>
> * shard-tglu-1: NOTRUN -> WARN ([i915#2681]) +1 other test warn
> * igt@i915_pm_rps@thresholds:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#11681])
> * igt@i915_pm_rps@thresholds-park:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11681])
> * igt@i915_query@hwconfig_table:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6245])
> * igt@i915_selftest@live:
>
> * shard-rkl: NOTRUN -> DMESG-FAIL ([i915#12964] / [i915#13550])
> * igt@i915_selftest@live@gt_pm:
>
> * shard-rkl: NOTRUN -> DMESG-FAIL ([i915#13550])
> * igt@i915_selftest@live@workarounds:
>
> * shard-mtlp: NOTRUN -> DMESG-FAIL ([i915#12061]) +1 other test
> dmesg-fail
> * igt@i915_selftest@mock@memory_region:
>
> * shard-rkl: NOTRUN -> DMESG-WARN ([i915#9311]) +1 other test
> dmesg-warn
> * shard-dg1: NOTRUN -> DMESG-WARN ([i915#9311]) +1 other test
> dmesg-warn
> * igt@i915_suspend@fence-restore-untiled:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#4817])
> * igt@i915_suspend@sysfs-reader:
>
> * shard-glk: PASS -> INCOMPLETE ([i915#4817]) +1 other test
> incomplete
> * igt@intel_hwmon@hwmon-write:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#7707])
> * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4212])
> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5190]) +2 other tests skip
> * igt@kms_addfb_basic@basic-y-tiled-legacy:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4215])
> * shard-mtlp: NOTRUN -> SKIP ([i915#4212])
> * igt@kms_addfb_basic@tile-pitch-mismatch:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4212]) +1 other test skip
> * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8709]) +1 other test skip
> * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8709]) +7 other tests skip
> * igt@kms_async_flips@invalid-async-flip:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12967] / [i915#6228])
> * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9531])
> * shard-rkl: NOTRUN -> SKIP ([i915#9531])
> * shard-dg1: NOTRUN -> SKIP ([i915#9531])
> * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#1769] / [i915#3555])
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1769] / [i915#3555])
> * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
>
> * shard-mtlp: PASS -> FAIL ([i915#11808] / [i915#5956]) +1 other
> test fail
> * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4538] / [i915#5286]) +4 other
> tests skip
> * igt@kms_big_fb@4-tiled-addfb:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#5286]) +1 other test skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#5286]) +7 other tests skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5286]) +5 other tests skip
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#5286]) +2 other tests skip
> * igt@kms_big_fb@linear-32bpp-rotate-90:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3638]) +6 other tests skip
> * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
>
> * shard-dg2: NOTRUN -> SKIP +10 other tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3638])
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4538] / [i915#5190]) +13 other
> tests skip
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4538]) +4 other tests skip
> * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#10307] / [i915#10434] /
> [i915#6095]) +4 other tests skip
> * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#6095]) +39 other tests skip
> * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6095]) +79 other tests skip
> * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#10307] / [i915#6095]) +149 other
> tests skip
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12313])
> * shard-dg1: NOTRUN -> SKIP ([i915#12313]) +1 other test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#12313])
> * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12313]) +3 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12805])
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6095]) +86 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#6095]) +29 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12805])
> * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#6095]) +104 other tests skip
> * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6095]) +19 other tests skip
> * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12796]) +1 other test
> incomplete
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12313]) +3 other tests skip
> * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12313]) +3 other tests skip
> * igt@kms_cdclk@mode-transition:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#7213] / [i915#9010]) +4 other
> tests skip
> * igt@kms_cdclk@plane-scaling:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3742]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#3742])
> * igt@kms_chamelium_edid@dp-mode-timings:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +3 other
> tests skip
> * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +13 other
> tests skip
> * igt@kms_chamelium_edid@hdmi-mode-timings:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +8 other
> tests skip
> * igt@kms_chamelium_hpd@dp-hpd-after-suspend:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +5 other
> tests skip
> * igt@kms_chamelium_hpd@dp-hpd-fast:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#11151] / [i915#7828])
> * igt@kms_chamelium_hpd@dp-hpd-storm:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11151] / [i915#7828]) +8 other
> tests skip
> * igt@kms_content_protection@atomic-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#7118] / [i915#9424])
> * igt@kms_content_protection@dp-mst-lic-type-0:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3116] / [i915#3299])
> * igt@kms_content_protection@dp-mst-lic-type-1:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3116])
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3116] / [i915#3299])
> * igt@kms_content_protection@legacy:
>
> * shard-dg2: NOTRUN -> TIMEOUT ([i915#7173]) +1 other test timeout
> * igt@kms_content_protection@mei-interface:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9424]) +1 other test skip
> * shard-rkl: NOTRUN -> SKIP ([i915#9424]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#9424])
> * igt@kms_content_protection@type1:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#7116] / [i915#9424])
> * igt@kms_cursor_crc@cursor-offscreen-256x85:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8814])
> * igt@kms_cursor_crc@cursor-offscreen-32x10:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8814]) +2 other
> tests skip
> * igt@kms_cursor_crc@cursor-offscreen-512x170:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#13049])
> * shard-rkl: NOTRUN -> SKIP ([i915#13049]) +1 other test skip
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#13049]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#13049])
> * igt@kms_cursor_crc@cursor-random-32x10:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555]) +7 other tests skip
> * igt@kms_cursor_crc@cursor-random-512x170:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#13049]) +1 other test skip
> * igt@kms_cursor_crc@cursor-random-64x21:
>
> * shard-tglu: NOTRUN -> FAIL ([i915#13566]) +1 other test fail
> * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555]) +9 other tests skip
> * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555]) +9 other tests skip
> * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#13049])
> * igt@kms_cursor_crc@cursor-sliding-128x42:
>
> * shard-tglu: PASS -> FAIL ([i915#13566]) +3 other tests fail
> * igt@kms_cursor_crc@cursor-suspend:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12358] / [i915#7882])
> * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12358])
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#4103] / [i915#4213])
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#4213])
> * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9809])
> * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#13046] / [i915#5354]) +3 other
> tests skip
> * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9067])
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#4103])
> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
>
> * shard-dg1: PASS -> DMESG-WARN ([i915#4423]) +2 other tests
> dmesg-warn
> * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9833])
> * igt@kms_display_modes@extended-mode-basic:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555])
> * igt@kms_display_modes@mst-extended-mode-negative:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8588])
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#1769] / [i915#3555] /
> [i915#3804])
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3804])
> * igt@kms_dp_aux_dev:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#1257])
> * shard-rkl: NOTRUN -> SKIP ([i915#1257])
> * shard-dg1: NOTRUN -> SKIP ([i915#1257])
> * shard-tglu: NOTRUN -> SKIP ([i915#1257])
> * igt@kms_draw_crc@draw-method-mmap-gtt:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8812])
> * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3840])
> * igt@kms_dsc@dsc-with-bpc:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * igt@kms_dsc@dsc-with-bpc-formats:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * igt@kms_dsc@dsc-with-formats:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * shard-dg2: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * shard-dg1: NOTRUN -> SKIP ([i915#3555] / [i915#3840])
> * igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3840] / [i915#9053])
> * shard-dg1: NOTRUN -> SKIP ([i915#3840] / [i915#9053])
> * shard-tglu: NOTRUN -> SKIP ([i915#3840] / [i915#9053])
> * igt@kms_fbcon_fbt@psr:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3469])
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3469])
> * igt@kms_feature_discovery@chamelium:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#4854])
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2065] / [i915#4854])
> * igt@kms_feature_discovery@display-3x:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1839]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#1839])
> * igt@kms_feature_discovery@display-4x:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1839]) +1 other test skip
> * igt@kms_feature_discovery@psr1:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#658]) +1 other test skip
> * igt@kms_flip@2x-absolute-wf_vblank:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9934]) +6 other tests skip
> * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9934]) +12 other tests skip
> * igt@kms_flip@2x-flip-vs-expired-vblank:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3637]) +2 other tests skip
> * igt@kms_flip@2x-flip-vs-fences-interruptible:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8381])
> * shard-mtlp: NOTRUN -> SKIP ([i915#8381])
> * shard-dg2: NOTRUN -> SKIP ([i915#8381])
> * igt@kms_flip@2x-flip-vs-modeset:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3637]) +5 other tests skip
> * igt@kms_flip@2x-flip-vs-suspend-interruptible:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12314] / [i915#12745] /
> [i915#1982] / [i915#4839])
> * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#1982] / [i915#4839])
> * igt@kms_flip@2x-plain-flip:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3637]) +4 other tests skip
> * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
>
> * shard-snb: NOTRUN -> FAIL ([i915#11989]) +3 other tests fail
> * igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9934]) +5 other tests skip
> * igt@kms_flip@basic-flip-vs-wf_vblank:
>
> * shard-tglu: PASS -> FAIL ([i915#11989]) +1 other test fail
> * igt@kms_flip@flip-vs-absolute-wf_vblank:
>
> * shard-mtlp: PASS -> FAIL ([i915#11989]) +1 other test fail
> * igt@kms_flip@flip-vs-fences@a-hdmi-a1:
>
> * shard-rkl: NOTRUN -> DMESG-WARN ([i915#12964]) +25 other tests
> dmesg-warn
> * igt@kms_flip@flip-vs-rmfb:
>
> * shard-dg1: PASS -> INCOMPLETE ([i915#6113]) +1 other test
> incomplete
> * igt@kms_flip@flip-vs-suspend-interruptible:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12745] / [i915#4839])
> * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12745])
> * igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
>
> * shard-dg1: NOTRUN -> DMESG-WARN ([i915#4423]) +4 other tests
> dmesg-warn
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +2 other
> tests skip
> * shard-dg1: NOTRUN -> SKIP ([i915#2672] / [i915#3555])
> * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#2587] / [i915#2672])
> * shard-tglu: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +4 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +4 other
> tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672] / [i915#3555])
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#8813]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2672])
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2672] / [i915#3555]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#2587] / [i915#2672]) +1 other
> test skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672] / [i915#3555] /
> [i915#5190]) +3 other tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#2672] / [i915#3555] /
> [i915#8813]) +3 other tests skip
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#2672]) +6 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#8708]) +7 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#8708]) +18 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5354]) +31 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
>
> * shard-tglu: NOTRUN -> SKIP +95 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>
> * shard-tglu-1: NOTRUN -> SKIP +57 other tests skip
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> * shard-dg1: NOTRUN -> SKIP +36 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3458]) +16 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
>
> * shard-rkl: NOTRUN -> SKIP +25 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#1825]) +15 other tests skip
> * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#10433] / [i915#3458])
> * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#5439])
> * igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9766])
> * shard-tglu: NOTRUN -> SKIP ([i915#9766])
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#8708]) +17 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3023]) +35 other tests skip
> * igt@kms_frontbuffer_tracking@psr-1p-rte:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3458]) +19 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1825]) +57 other tests skip
> * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
>
> * shard-snb: NOTRUN -> SKIP +469 other tests skip
> * igt@kms_hdr@bpc-switch:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +1 other
> test skip
> * igt@kms_hdr@bpc-switch-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +4 other
> tests skip
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_hdr@brightness-with-hdr:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#1187] / [i915#12713])
> * igt@kms_hdr@invalid-hdr:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_hdr@invalid-metadata-sizes:
>
> * shard-dg2: PASS -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_hdr@static-toggle:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#3555] / [i915#8228]) +1 other
> test skip
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8228])
> * igt@kms_joiner@basic-ultra-joiner:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12339])
> * igt@kms_joiner@invalid-modeset-big-joiner:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#10656])
> * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12394])
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12339]) +1 other test skip
> * shard-dg2: NOTRUN -> SKIP ([i915#12339]) +1 other test skip
> * shard-rkl: NOTRUN -> SKIP ([i915#12339])
> * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#13522])
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#1839])
> * igt@kms_panel_fitting@atomic-fastset:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6301]) +1 other test skip
> * igt@kms_panel_fitting@legacy:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#6301])
> * igt@kms_plane_alpha_blend@alpha-transparent-fb:
>
> * shard-glk: NOTRUN -> FAIL ([i915#10647] / [i915#12177])
> * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
>
> * shard-glk: NOTRUN -> FAIL ([i915#10647]) +1 other test fail
> * igt@kms_plane_lowres@tiling-none:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#11614] / [i915#3582]) +1 other
> test skip
> * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#10226] / [i915#11614] /
> [i915#3582]) +2 other tests skip
> * igt@kms_plane_multiple@tiling-y:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#3555] / [i915#8806])
> * igt@kms_plane_scaling@intel-max-src-size:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6953])
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12247]) +13 other tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#12247]) +23 other tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#12247]) +14 other tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12247] / [i915#9423]) +3 other
> tests skip
> * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12247]) +7 other tests skip
> * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
>
> * shard-glk: NOTRUN -> SKIP +282 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12247]) +19 other tests skip
> * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12247] / [i915#6953] /
> [i915#9423])
> * igt@kms_plane_scaling@planes-downscale-factor-0-5:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12247] / [i915#6953])
> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12247] / [i915#6953])
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12247] / [i915#6953])
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#12247]) +13 other tests skip
> * igt@kms_pm_backlight@bad-brightness:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#5354]) +1 other test skip
> * igt@kms_pm_backlight@basic-brightness:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9812])
> * igt@kms_pm_backlight@brightness-with-dpms:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#12343])
> * igt@kms_pm_backlight@fade-with-suspend:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9812]) +1 other test skip
> * shard-rkl: NOTRUN -> SKIP ([i915#5354])
> * igt@kms_pm_dc@dc3co-vpb-simulation:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9685])
> * shard-dg1: NOTRUN -> SKIP ([i915#9685])
> * shard-tglu: NOTRUN -> SKIP ([i915#9685])
> * igt@kms_pm_dc@dc6-dpms:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#5978])
> * igt@kms_pm_rpm@dpms-lpsp:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
>
> * shard-rkl: PASS -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
>
> * shard-dg2: PASS -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@modeset-lpsp-stress:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_pm_rpm@modeset-non-lpsp:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9519])
> * igt@kms_prime@basic-crc-hybrid:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#6524] / [i915#6805])
> * igt@kms_prime@basic-modeset-hybrid:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#6524])
> * igt@kms_prime@d3hot:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#6524])
> * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
>
> * shard-snb: NOTRUN -> SKIP ([i915#11520]) +14 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#11520]) +6 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#11520]) +6 other tests skip
> * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-a-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9808]) +1 other test skip
> * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#12316]) +4 other tests skip
> * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#11520]) +14 other tests skip
> * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
>
> * shard-glk: NOTRUN -> SKIP ([i915#11520]) +5 other tests skip
> * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#11520]) +7 other tests skip
> * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#11520]) +8 other tests skip
> * igt@kms_psr2_su@page_flip-nv12:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#9683])
> * igt@kms_psr2_su@page_flip-xrgb8888:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9683]) +1 other test skip
> * igt@kms_psr@fbc-pr-sprite-blt:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#1072] / [i915#9732]) +18 other
> tests skip
> * igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#9688]) +8 other tests skip
> * igt@kms_psr@fbc-psr2-no-drrs:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9732]) +23 other tests skip
> * igt@kms_psr@pr-suspend:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#1072] / [i915#9732]) +14 other
> tests skip
> * igt@kms_psr@psr2-cursor-mmap-gtt:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#1072] / [i915#9732]) +25 other
> tests skip
> * igt@kms_psr@psr2-primary-mmap-cpu:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9732]) +12 other tests skip
> * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9685]) +1 other test skip
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#9685])
> * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#5289]) +1 other test skip
> * shard-tglu: NOTRUN -> SKIP ([i915#5289])
> * igt@kms_rotation_crc@primary-rotation-270:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#12755])
> * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>
> * shard-mtlp: NOTRUN -> SKIP ([i915#5289])
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#5289])
> * igt@kms_scaling_modes@scaling-mode-center:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3555]) +9 other tests skip
> * igt@kms_selftest@drm_framebuffer:
>
> * shard-rkl: NOTRUN -> ABORT ([i915#13179]) +1 other test abort
> * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
>
> * shard-glk: NOTRUN -> INCOMPLETE ([i915#12276]) +1 other test
> incomplete
> * igt@kms_vrr@flip-basic-fastset:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#9906]) +1 other test skip
> * igt@kms_vrr@lobf:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#11920])
> * shard-dg1: NOTRUN -> SKIP ([i915#11920])
> * igt@kms_vrr@negative-basic:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#3555] / [i915#9906])
> * igt@kms_vrr@seamless-rr-switch-drrs:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9906])
> * igt@kms_vrr@seamless-rr-switch-vrr:
>
> * shard-tglu: NOTRUN -> SKIP ([i915#9906])
> * igt@kms_writeback@writeback-check-output:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2437])
> * shard-tglu: NOTRUN -> SKIP ([i915#2437])
> * igt@kms_writeback@writeback-check-output-xrgb2101010:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#2437] / [i915#9412])
> * igt@kms_writeback@writeback-invalid-parameters:
>
> * shard-glk: NOTRUN -> SKIP ([i915#2437])
> * igt@perf@gen8-unprivileged-single-ctx-counters:
>
> * shard-mtlp: NOTRUN -> SKIP +6 other tests skip
> * igt@perf@global-sseu-config:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#7387])
> * igt@perf_pmu@all-busy-idle-check-all:
>
> * shard-mtlp: PASS -> FAIL ([i915#11943])
> * igt@perf_pmu@cpu-hotplug:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#8850])
> * igt@perf_pmu@rc6@other-idle-gt0:
>
> * shard-tglu-1: NOTRUN -> SKIP ([i915#8516])
> * igt@prime_vgem@basic-fence-flip:
>
> * shard-dg1: NOTRUN -> SKIP ([i915#3708])
> * shard-dg2: NOTRUN -> SKIP ([i915#3708])
> * igt@prime_vgem@basic-write:
>
> * shard-rkl: NOTRUN -> SKIP ([i915#3291] / [i915#3708])
> * igt@sriov_basic@bind-unbind-vf@vf-1:
>
> * shard-tglu-1: NOTRUN -> FAIL ([i915#12910]) +9 other tests fail
> * igt@sriov_basic@enable-vfs-autoprobe-off:
>
> * shard-dg2: NOTRUN -> SKIP ([i915#9917]) +1 other test skip
> * shard-rkl: NOTRUN -> SKIP ([i915#9917]) +1 other test skip
> * shard-dg1: NOTRUN -> SKIP ([i915#9917]) +2 other tests skip
> * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
>
> * shard-mtlp: NOTRUN -> FAIL ([i915#12910]) +9 other tests fail
>
> Possible fixes
>
> * igt@gem_eio@context-create:
>
> * shard-mtlp: ABORT -> PASS
> * igt@gem_eio@reset-stress:
>
> * shard-dg1: FAIL ([i915#12543] / [i915#5784]) -> PASS
> * igt@gem_exec_suspend@basic-s4-devices:
>
> * shard-tglu: ABORT ([i915#7975] / [i915#8213]) -> PASS +1 other
> test pass
> * igt@gem_mmap_offset@clear-via-pagefault:
>
> * shard-mtlp: ABORT ([i915#10729]) -> PASS +1 other test pass
> * igt@i915_pm_rc6_residency@rc6-idle:
>
> * shard-dg1: FAIL ([i915#3591]) -> PASS
> * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
>
> * shard-dg1: FAIL ([i915#12739] / [i915#3591]) -> PASS
> * igt@i915_pm_rpm@system-suspend-devices:
>
> * shard-mtlp: ABORT ([i915#13193]) -> PASS +2 other tests pass
> * igt@i915_suspend@fence-restore-untiled:
>
> * shard-rkl: DMESG-FAIL ([i915#12964]) -> PASS
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-mtlp: FAIL ([i915#5138]) -> PASS +1 other test pass
> * igt@kms_cursor_crc@cursor-sliding-64x21:
>
> * shard-rkl: FAIL ([i915#13566]) -> PASS
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>
> * shard-snb: SKIP -> [PASS][424] +1 other test pass
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.Full: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3)
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
` (3 preceding siblings ...)
2025-01-31 8:54 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-01-31 9:11 ` Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-01-31 9:11 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 68147 bytes --]
== Series Details ==
Series: lib/igt_device_scan: limit fetched device attributes from udev (rev3)
URL : https://patchwork.freedesktop.org/series/144019/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8218_full -> XEIGTPW_12524_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12524_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#3767]) +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#873])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#3768])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#664])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-6/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#2613])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2370])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][8] ([Intel XE#2613])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +4 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#610])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#610])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2191])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +174 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +9 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +40 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2907])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#3442])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1152]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2325])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#306])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +11 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][35] ([Intel XE#4172]) +13 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][36] ([Intel XE#4172])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1178]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#3278])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][39] ([Intel XE#3304])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][40] ([Intel XE#1033]) +2 other tests dmesg-fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1188])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#308]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2321]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#1033]) +90 other tests dmesg-warn
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4172]) +76 other tests dmesg-warn
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
- shard-dg2-set2: [PASS][50] -> [ABORT][51] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4083])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [ABORT][52] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4083])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#323])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#323])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2-set2: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3226])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([i915#3804])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455]) +20 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4156])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2375])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-dg2-set2: NOTRUN -> [FAIL][64] ([Intel XE#886]) +1 other test fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2316]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1421]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#3321])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a6-dp4.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [INCOMPLETE][72] ([Intel XE#1504]) +1 other test incomplete
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#886]) +4 other tests fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3:
- shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#2882]) +3 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/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-default-mode:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397] / [Intel XE#1745])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1397])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#352]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-7/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2312]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +30 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4141]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +21 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#651]) +11 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2352])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +28 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1469])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2313]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1470])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-7/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#3012]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2925])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#356])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][97] ([Intel XE#1033] / [Intel XE#2566])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#616]) +3 other tests fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#877]) +1 other test dmesg-warn
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [PASS][103] -> [DMESG-WARN][104] ([Intel XE#2566] / [Intel XE#4172]) +1 other test dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#870])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#870]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3309])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1489]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#1489]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1406]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2939])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][116] ([Intel XE#1033]) +35 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#3414]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1435]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#362])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][120] ([Intel XE#1522]) +1 other test fail
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#756])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [PASS][122] -> [ABORT][123] ([Intel XE#2625]) +1 other test abort
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1123])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2905]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-3/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@basic-client-th:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2905]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2905]) +11 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-small-external-cm:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#688]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-2/igt@xe_evict@evict-small-external-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2322]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1392]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1392]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#288]) +23 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: NOTRUN -> [ABORT][134] ([Intel XE#2625])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#1192])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1192] / [Intel XE#3026])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1192]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][139] ([Intel XE#1999]) +2 other tests fail
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#378])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#977])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-dg2-set2: [PASS][143] -> [ABORT][144] ([Intel XE#1358])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_pm@s2idle-d3hot-basic-exec.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][145] ([Intel XE#1358])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][146] ([Intel XE#1033] / [Intel XE#569])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#584]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [PASS][149] -> [DMESG-WARN][150] ([Intel XE#4172] / [Intel XE#569]) +1 other test dmesg-warn
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@xe_pm@s3-d3hot-basic-exec.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@xe_pm@s3-d3hot-basic-exec.html
- shard-dg2-set2: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#1033] / [Intel XE#569])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_pm@s3-d3hot-basic-exec.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][153] -> [ABORT][154] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#1033] / [Intel XE#2280])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@xe_pm@s4-vm-bind-userptr.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#944])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#944]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#4130])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#3342])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3342])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-3/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#3342])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][163] ([Intel XE#2291]) -> [PASS][164] +1 other test pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][165] -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][167] ([Intel XE#1033]) -> [PASS][168] +73 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][169] ([Intel XE#3009]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_dp_aux_dev.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][171] ([Intel XE#2316]) -> [PASS][172] +2 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][173] ([Intel XE#301]) -> [PASS][174] +6 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][175] ([Intel XE#4172]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][177] ([Intel XE#886]) -> [PASS][178] +4 other tests pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
- shard-bmg: [FAIL][179] ([Intel XE#3321]) -> [PASS][180] +3 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [FAIL][181] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][182] +3 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [DMESG-WARN][183] ([Intel XE#2955]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
- shard-dg2-set2: [DMESG-WARN][185] ([Intel XE#2955]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-lnl: [INCOMPLETE][187] ([Intel XE#2050]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-dg2-set2: [DMESG-WARN][189] ([Intel XE#1033] / [Intel XE#2566]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][191] ([Intel XE#718]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][193] ([Intel XE#1033] / [Intel XE#2042]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_sequence@get-idle:
- shard-bmg: [DMESG-WARN][195] ([Intel XE#4172]) -> [PASS][196] +76 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-2/igt@kms_sequence@get-idle.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_sequence@get-idle.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][197] ([Intel XE#2159]) -> [PASS][198] +1 other test pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-large-cm:
- shard-dg2-set2: [DMESG-WARN][199] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_evict@evict-large-cm.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][201] ([Intel XE#1392]) -> [PASS][202] +5 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_capture@reset:
- shard-dg2-set2: [INCOMPLETE][203] ([Intel XE#1033]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-463/igt@xe_exec_capture@reset.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_exec_capture@reset.html
- shard-bmg: [INCOMPLETE][205] ([Intel XE#4172]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@xe_exec_capture@reset.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-8/igt@xe_exec_capture@reset.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][207] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][208] +1 other test pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [DMESG-WARN][209] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@xe_pm@s3-exec-after.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][211] ([Intel XE#1358]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@xe_pm@s4-basic.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-463/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-lnl: [ABORT][213] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][215] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-lnl-2/igt@xe_pm@s4-mocs.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-lnl-4/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][217] ([Intel XE#2341]) -> [DMESG-FAIL][218] ([Intel XE#4172])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][219] ([Intel XE#1178]) -> [DMESG-FAIL][220] ([Intel XE#4172]) +1 other test dmesg-fail
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_content_protection@srm.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_content_protection@srm.html
- shard-dg2-set2: [FAIL][221] ([Intel XE#1178]) -> [DMESG-FAIL][222] ([Intel XE#1033])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_content_protection@srm.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-466/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][223] ([Intel XE#2341]) -> [FAIL][224] ([Intel XE#1188])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_content_protection@uevent.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [DMESG-WARN][225] ([Intel XE#4172]) -> [SKIP][226] ([Intel XE#2291])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][227] ([Intel XE#877]) -> [SKIP][228] ([Intel XE#2291])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [DMESG-FAIL][229] ([Intel XE#4172]) -> [FAIL][230] ([Intel XE#3321])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][231] ([Intel XE#301]) -> [DMESG-WARN][232] ([Intel XE#1033]) +1 other test dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-FAIL][233] ([Intel XE#1033]) -> [FAIL][234] ([Intel XE#301]) +2 other tests fail
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][235] ([Intel XE#2316]) -> [DMESG-WARN][236] ([Intel XE#4172]) +2 other tests dmesg-warn
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][237] ([Intel XE#4172]) -> [DMESG-WARN][238] ([Intel XE#4172])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][239] ([Intel XE#2311]) -> [SKIP][240] ([Intel XE#2312]) +9 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][241] ([Intel XE#2312]) -> [SKIP][242] ([Intel XE#4141]) +8 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][243] ([Intel XE#4141]) -> [SKIP][244] ([Intel XE#2312]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: [ABORT][245] ([Intel XE#2625]) -> [DMESG-WARN][246] ([Intel XE#1033])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][247] ([Intel XE#2312]) -> [SKIP][248] ([Intel XE#2311]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][249] ([Intel XE#2313]) -> [SKIP][250] ([Intel XE#2312]) +13 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][251] ([Intel XE#2312]) -> [SKIP][252] ([Intel XE#2313]) +14 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2-set2: [FAIL][253] -> [DMESG-WARN][254] ([Intel XE#1033])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-466/igt@kms_pm_dc@dc5-dpms-negative.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][255] ([Intel XE#1729]) -> [DMESG-FAIL][256] ([Intel XE#4172])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@testdisplay:
- shard-dg2-set2: [DMESG-WARN][257] ([Intel XE#2705]) -> [DMESG-WARN][258] ([Intel XE#1033] / [Intel XE#2705] / [Intel XE#4212])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8218/shard-dg2-432/igt@testdisplay.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/shard-dg2-436/igt@testdisplay.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#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#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#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#4083]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4083
[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#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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#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
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8218 -> IGTPW_12524
* Linux: xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b -> xe-2578-0c2a60e7f1e779d87754254d9e3443beedbb684e
IGTPW_12524: 12524
IGT_8218: fafef52e0a83fec5f8c4f8df851d27319467762b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2572-c2a5da40b8b1c5af77dcdabed8516069949fea3b: c2a5da40b8b1c5af77dcdabed8516069949fea3b
xe-2578-0c2a60e7f1e779d87754254d9e3443beedbb684e: 0c2a60e7f1e779d87754254d9e3443beedbb684e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12524/index.html
[-- Attachment #2: Type: text/html, Size: 80995 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
@ 2025-01-28 8:30 Zbigniew Kempczyński
2025-01-29 14:48 ` Kamil Konieczny
0 siblings, 1 reply; 12+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-28 8:30 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi, Kamil Konieczny
Tests don't need all attributes so default device scanning is now
limited to small list directly used in device filters. To be backward
compatible tools like lsgpu still may scan whole attribute list what
keeps this behavior intact.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/igt_device_scan.c | 69 ++++++++++++++++++++++++++++++-------------
lib/igt_device_scan.h | 1 +
tools/lsgpu.c | 2 +-
3 files changed, 50 insertions(+), 22 deletions(-)
diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
index c36b0efa90..15f6bf5728 100644
--- a/lib/igt_device_scan.c
+++ b/lib/igt_device_scan.c
@@ -22,6 +22,7 @@
*
*/
+#include "drmtest.h"
#include "igt_core.h"
#include "igt_device_scan.h"
#include "igt_list.h"
@@ -206,6 +207,8 @@ enum dev_type {
#define STR_INTEGRATED "integrated"
#define STR_DISCRETE "discrete"
+static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
+
static inline bool strequal(const char *a, const char *b)
{
if (a == NULL || b == NULL)
@@ -548,24 +551,35 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
* Function skips sysattrs from blacklist ht (acquiring some values can take
* seconds).
*/
-static void get_attrs(struct udev_device *dev, struct igt_device *idev)
+static void get_attrs(struct udev_device *dev, struct igt_device *idev,
+ bool limit_attrs)
{
struct udev_list_entry *entry;
+ const char *value;
- entry = udev_device_get_sysattr_list_entry(dev);
- while (entry) {
- const char *key = udev_list_entry_get_name(entry);
- const char *value;
+ if (limit_attrs) {
+ for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
+ value = udev_device_get_sysattr_value(dev, attrs[i]);
+ if (!value)
+ continue;
+ igt_device_add_attr(idev, attrs[i], value);
+ DBG("attr: %s, val: %s\n", attrs[i], value);
+ }
+ } else {
+ entry = udev_device_get_sysattr_list_entry(dev);
+ while (entry) {
+ const char *key = udev_list_entry_get_name(entry);
- if (is_on_blacklist(key)) {
+ if (is_on_blacklist(key)) {
+ entry = udev_list_entry_get_next(entry);
+ continue;
+ }
+
+ value = udev_device_get_sysattr_value(dev, key);
+ igt_device_add_attr(idev, key, value);
entry = udev_list_entry_get_next(entry);
- continue;
+ DBG("attr: %s, val: %s\n", key, value);
}
-
- value = udev_device_get_sysattr_value(dev, key);
- igt_device_add_attr(idev, key, value);
- entry = udev_list_entry_get_next(entry);
- DBG("attr: %s, val: %s\n", key, value);
}
}
@@ -639,7 +653,8 @@ static char* strdup_nullsafe(const char* str)
* Fills structure with most usable udev device variables, properties
* and sysattrs.
*/
-static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
+static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
+ bool limit_attrs)
{
struct igt_device *idev = igt_device_new();
@@ -654,7 +669,7 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
idev->drm_render = strdup(idev->devnode);
get_props(dev, idev);
- get_attrs(dev, idev);
+ get_attrs(dev, idev, limit_attrs);
if (is_pci_subsystem(idev)) {
uint16_t vendor, device;
@@ -868,7 +883,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
*/
static void update_or_add_parent(struct udev *udev,
struct udev_device *dev,
- struct igt_device *idev)
+ struct igt_device *idev,
+ bool limit_attrs)
{
struct udev_device *parent_dev;
struct igt_device *parent_idev;
@@ -899,7 +915,7 @@ static void update_or_add_parent(struct udev *udev,
* return fresh udev device.
*/
parent_dev = udev_device_new_from_syspath(udev, syspath);
- parent_idev = igt_device_new_from_udev(parent_dev);
+ parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
udev_device_unref(parent_dev);
if (parent_idev)
@@ -1000,7 +1016,7 @@ static void index_pci_devices(void)
* Function sorts all found devices to keep same order of bus devices
* for providing predictable search.
*/
-static void scan_drm_devices(void)
+static void scan_drm_devices(bool limit_attrs)
{
struct udev *udev;
struct udev_enumerate *enumerate;
@@ -1035,9 +1051,9 @@ static void scan_drm_devices(void)
path = udev_list_entry_get_name(dev_list_entry);
udev_dev = udev_device_new_from_syspath(udev, path);
- idev = igt_device_new_from_udev(udev_dev);
+ idev = igt_device_new_from_udev(udev_dev, limit_attrs);
igt_list_add_tail(&idev->link, &igt_devs.all);
- update_or_add_parent(udev, udev_dev, idev);
+ update_or_add_parent(udev, udev_dev, idev, limit_attrs);
udev_device_unref(udev_dev);
}
@@ -1092,17 +1108,28 @@ void igt_devices_free(void)
*
* Function scans udev in search of gpu devices.
*/
-void igt_devices_scan(void)
+
+static void __igt_devices_scan(bool limit_attrs)
{
if (igt_devs.devs_scanned)
igt_devices_free();
prepare_scan();
- scan_drm_devices();
+ scan_drm_devices(limit_attrs);
igt_devs.devs_scanned = true;
}
+void igt_devices_scan(void)
+{
+ __igt_devices_scan(true);
+}
+
+void igt_devices_scan_all_attrs(void)
+{
+ __igt_devices_scan(false);
+}
+
static inline void _pr_simple(const char *k, const char *v)
{
printf(" %-16s: %s\n", k, v);
diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
index fa90134aa3..92741fe3c7 100644
--- a/lib/igt_device_scan.h
+++ b/lib/igt_device_scan.h
@@ -64,6 +64,7 @@ struct igt_device_card {
};
void igt_devices_scan(void);
+void igt_devices_scan_all_attrs(void);
void igt_devices_print(const struct igt_devices_print_format *fmt);
void igt_devices_print_vendors(void);
diff --git a/tools/lsgpu.c b/tools/lsgpu.c
index e482ca6b75..e683900833 100644
--- a/tools/lsgpu.c
+++ b/tools/lsgpu.c
@@ -362,7 +362,7 @@ int main(int argc, char *argv[])
printf("Notice: Using filter from .igtrc\n");
}
- igt_devices_scan();
+ igt_devices_scan_all_attrs();
if (igt_device != NULL) {
struct igt_device_card card;
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
2025-01-28 8:30 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
@ 2025-01-29 14:48 ` Kamil Konieczny
2025-01-30 10:17 ` Zbigniew Kempczyński
2025-01-30 10:20 ` Zbigniew Kempczyński
0 siblings, 2 replies; 12+ messages in thread
From: Kamil Konieczny @ 2025-01-29 14:48 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Lucas De Marchi
Hi Zbigniew,
On 2025-01-28 at 09:30:14 +0100, Zbigniew Kempczyński wrote:
> Tests don't need all attributes so default device scanning is now
> limited to small list directly used in device filters. To be backward
> compatible tools like lsgpu still may scan whole attribute list what
> keeps this behavior intact.
>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> ---
> lib/igt_device_scan.c | 69 ++++++++++++++++++++++++++++++-------------
> lib/igt_device_scan.h | 1 +
> tools/lsgpu.c | 2 +-
> 3 files changed, 50 insertions(+), 22 deletions(-)
>
> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> index c36b0efa90..15f6bf5728 100644
> --- a/lib/igt_device_scan.c
> +++ b/lib/igt_device_scan.c
> @@ -22,6 +22,7 @@
> *
> */
>
> +#include "drmtest.h"
Could you add a note here why this is needed? Something like
#include "drmtest.h" /* for macro ARRAY_SIZE */
> #include "igt_core.h"
> #include "igt_device_scan.h"
> #include "igt_list.h"
> @@ -206,6 +207,8 @@ enum dev_type {
> #define STR_INTEGRATED "integrated"
> #define STR_DISCRETE "discrete"
>
> +static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
> +
> static inline bool strequal(const char *a, const char *b)
> {
> if (a == NULL || b == NULL)
> @@ -548,24 +551,35 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
> * Function skips sysattrs from blacklist ht (acquiring some values can take
> * seconds).
> */
> -static void get_attrs(struct udev_device *dev, struct igt_device *idev)
> +static void get_attrs(struct udev_device *dev, struct igt_device *idev,
> + bool limit_attrs)
Why not just two functions instead of a bool var? Below
you split control flow between two separate paths, imho
it is better to have two separate functions instead. So
there will be two functions:
get_attrs_limited(struct udev_device *dev, struct igt_device *idev)
get_attrs_all(struct udev_device *dev, struct igt_device *idev)
and used below.
> {
> struct udev_list_entry *entry;
> + const char *value;
>
> - entry = udev_device_get_sysattr_list_entry(dev);
> - while (entry) {
> - const char *key = udev_list_entry_get_name(entry);
> - const char *value;
> + if (limit_attrs) {
> + for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
> + value = udev_device_get_sysattr_value(dev, attrs[i]);
> + if (!value)
> + continue;
> + igt_device_add_attr(idev, attrs[i], value);
> + DBG("attr: %s, val: %s\n", attrs[i], value);
> + }
> + } else {
> + entry = udev_device_get_sysattr_list_entry(dev);
> + while (entry) {
> + const char *key = udev_list_entry_get_name(entry);
>
> - if (is_on_blacklist(key)) {
> + if (is_on_blacklist(key)) {
> + entry = udev_list_entry_get_next(entry);
> + continue;
> + }
> +
> + value = udev_device_get_sysattr_value(dev, key);
> + igt_device_add_attr(idev, key, value);
> entry = udev_list_entry_get_next(entry);
> - continue;
> + DBG("attr: %s, val: %s\n", key, value);
> }
> -
> - value = udev_device_get_sysattr_value(dev, key);
> - igt_device_add_attr(idev, key, value);
> - entry = udev_list_entry_get_next(entry);
> - DBG("attr: %s, val: %s\n", key, value);
> }
> }
>
> @@ -639,7 +653,8 @@ static char* strdup_nullsafe(const char* str)
> * Fills structure with most usable udev device variables, properties
> * and sysattrs.
> */
> -static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> +static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
> + bool limit_attrs)
> {
> struct igt_device *idev = igt_device_new();
>
> @@ -654,7 +669,7 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> idev->drm_render = strdup(idev->devnode);
>
> get_props(dev, idev);
> - get_attrs(dev, idev);
> + get_attrs(dev, idev, limit_attrs);
So here:
limit_attrs ? get_attrs_limited(dev, idev) :
get_attrs_all(dev, idev);
It is not a blocker so with or without it
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
>
> if (is_pci_subsystem(idev)) {
> uint16_t vendor, device;
> @@ -868,7 +883,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
> */
> static void update_or_add_parent(struct udev *udev,
> struct udev_device *dev,
> - struct igt_device *idev)
> + struct igt_device *idev,
> + bool limit_attrs)
> {
> struct udev_device *parent_dev;
> struct igt_device *parent_idev;
> @@ -899,7 +915,7 @@ static void update_or_add_parent(struct udev *udev,
> * return fresh udev device.
> */
> parent_dev = udev_device_new_from_syspath(udev, syspath);
> - parent_idev = igt_device_new_from_udev(parent_dev);
> + parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
> udev_device_unref(parent_dev);
>
> if (parent_idev)
> @@ -1000,7 +1016,7 @@ static void index_pci_devices(void)
> * Function sorts all found devices to keep same order of bus devices
> * for providing predictable search.
> */
> -static void scan_drm_devices(void)
> +static void scan_drm_devices(bool limit_attrs)
> {
> struct udev *udev;
> struct udev_enumerate *enumerate;
> @@ -1035,9 +1051,9 @@ static void scan_drm_devices(void)
>
> path = udev_list_entry_get_name(dev_list_entry);
> udev_dev = udev_device_new_from_syspath(udev, path);
> - idev = igt_device_new_from_udev(udev_dev);
> + idev = igt_device_new_from_udev(udev_dev, limit_attrs);
> igt_list_add_tail(&idev->link, &igt_devs.all);
> - update_or_add_parent(udev, udev_dev, idev);
> + update_or_add_parent(udev, udev_dev, idev, limit_attrs);
>
> udev_device_unref(udev_dev);
> }
> @@ -1092,17 +1108,28 @@ void igt_devices_free(void)
> *
> * Function scans udev in search of gpu devices.
> */
> -void igt_devices_scan(void)
> +
> +static void __igt_devices_scan(bool limit_attrs)
> {
> if (igt_devs.devs_scanned)
> igt_devices_free();
>
> prepare_scan();
> - scan_drm_devices();
> + scan_drm_devices(limit_attrs);
>
> igt_devs.devs_scanned = true;
> }
>
> +void igt_devices_scan(void)
> +{
> + __igt_devices_scan(true);
> +}
> +
> +void igt_devices_scan_all_attrs(void)
> +{
> + __igt_devices_scan(false);
> +}
> +
> static inline void _pr_simple(const char *k, const char *v)
> {
> printf(" %-16s: %s\n", k, v);
> diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> index fa90134aa3..92741fe3c7 100644
> --- a/lib/igt_device_scan.h
> +++ b/lib/igt_device_scan.h
> @@ -64,6 +64,7 @@ struct igt_device_card {
> };
>
> void igt_devices_scan(void);
> +void igt_devices_scan_all_attrs(void);
>
> void igt_devices_print(const struct igt_devices_print_format *fmt);
> void igt_devices_print_vendors(void);
> diff --git a/tools/lsgpu.c b/tools/lsgpu.c
> index e482ca6b75..e683900833 100644
> --- a/tools/lsgpu.c
> +++ b/tools/lsgpu.c
> @@ -362,7 +362,7 @@ int main(int argc, char *argv[])
> printf("Notice: Using filter from .igtrc\n");
> }
>
> - igt_devices_scan();
> + igt_devices_scan_all_attrs();
>
> if (igt_device != NULL) {
> struct igt_device_card card;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
2025-01-29 14:48 ` Kamil Konieczny
@ 2025-01-30 10:17 ` Zbigniew Kempczyński
2025-01-30 10:20 ` Zbigniew Kempczyński
1 sibling, 0 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-30 10:17 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Lucas De Marchi
On Wed, Jan 29, 2025 at 03:48:49PM +0100, Kamil Konieczny wrote:
> Hi Zbigniew,
> On 2025-01-28 at 09:30:14 +0100, Zbigniew Kempczyński wrote:
> > Tests don't need all attributes so default device scanning is now
> > limited to small list directly used in device filters. To be backward
> > compatible tools like lsgpu still may scan whole attribute list what
> > keeps this behavior intact.
> >
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > ---
> > lib/igt_device_scan.c | 69 ++++++++++++++++++++++++++++++-------------
> > lib/igt_device_scan.h | 1 +
> > tools/lsgpu.c | 2 +-
> > 3 files changed, 50 insertions(+), 22 deletions(-)
> >
> > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> > index c36b0efa90..15f6bf5728 100644
> > --- a/lib/igt_device_scan.c
> > +++ b/lib/igt_device_scan.c
> > @@ -22,6 +22,7 @@
> > *
> > */
> >
> > +#include "drmtest.h"
>
> Could you add a note here why this is needed? Something like
>
> #include "drmtest.h" /* for macro ARRAY_SIZE */
>
> > #include "igt_core.h"
> > #include "igt_device_scan.h"
> > #include "igt_list.h"
> > @@ -206,6 +207,8 @@ enum dev_type {
> > #define STR_INTEGRATED "integrated"
> > #define STR_DISCRETE "discrete"
> >
> > +static const char * const attrs[] = { "driver", "sriov_numvfs", "physfn" };
> > +
> > static inline bool strequal(const char *a, const char *b)
> > {
> > if (a == NULL || b == NULL)
> > @@ -548,24 +551,35 @@ static void get_props(struct udev_device *dev, struct igt_device *idev)
> > * Function skips sysattrs from blacklist ht (acquiring some values can take
> > * seconds).
> > */
> > -static void get_attrs(struct udev_device *dev, struct igt_device *idev)
> > +static void get_attrs(struct udev_device *dev, struct igt_device *idev,
> > + bool limit_attrs)
>
> Why not just two functions instead of a bool var? Below
> you split control flow between two separate paths, imho
> it is better to have two separate functions instead. So
> there will be two functions:
>
> get_attrs_limited(struct udev_device *dev, struct igt_device *idev)
>
> get_attrs_all(struct udev_device *dev, struct igt_device *idev)
>
> and used below.
>
> > {
> > struct udev_list_entry *entry;
> > + const char *value;
> >
> > - entry = udev_device_get_sysattr_list_entry(dev);
> > - while (entry) {
> > - const char *key = udev_list_entry_get_name(entry);
> > - const char *value;
> > + if (limit_attrs) {
> > + for (int i = 0; i < ARRAY_SIZE(attrs); i++) {
> > + value = udev_device_get_sysattr_value(dev, attrs[i]);
> > + if (!value)
> > + continue;
> > + igt_device_add_attr(idev, attrs[i], value);
> > + DBG("attr: %s, val: %s\n", attrs[i], value);
> > + }
> > + } else {
> > + entry = udev_device_get_sysattr_list_entry(dev);
> > + while (entry) {
> > + const char *key = udev_list_entry_get_name(entry);
> >
> > - if (is_on_blacklist(key)) {
> > + if (is_on_blacklist(key)) {
> > + entry = udev_list_entry_get_next(entry);
> > + continue;
> > + }
> > +
> > + value = udev_device_get_sysattr_value(dev, key);
> > + igt_device_add_attr(idev, key, value);
> > entry = udev_list_entry_get_next(entry);
> > - continue;
> > + DBG("attr: %s, val: %s\n", key, value);
> > }
> > -
> > - value = udev_device_get_sysattr_value(dev, key);
> > - igt_device_add_attr(idev, key, value);
> > - entry = udev_list_entry_get_next(entry);
> > - DBG("attr: %s, val: %s\n", key, value);
> > }
> > }
> >
> > @@ -639,7 +653,8 @@ static char* strdup_nullsafe(const char* str)
> > * Fills structure with most usable udev device variables, properties
> > * and sysattrs.
> > */
> > -static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> > +static struct igt_device *igt_device_new_from_udev(struct udev_device *dev,
> > + bool limit_attrs)
> > {
> > struct igt_device *idev = igt_device_new();
> >
> > @@ -654,7 +669,7 @@ static struct igt_device *igt_device_new_from_udev(struct udev_device *dev)
> > idev->drm_render = strdup(idev->devnode);
> >
> > get_props(dev, idev);
> > - get_attrs(dev, idev);
> > + get_attrs(dev, idev, limit_attrs);
>
> So here:
> limit_attrs ? get_attrs_limited(dev, idev) :
> get_attrs_all(dev, idev);
>
> It is not a blocker so with or without it
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Yeah, we may have two different functions instead of adding conditional
inside. I'll rework it.
--
Zbigniew
>
> Regards,
> Kamil
>
> >
> > if (is_pci_subsystem(idev)) {
> > uint16_t vendor, device;
> > @@ -868,7 +883,8 @@ static struct igt_device *igt_device_from_syspath(const char *syspath)
> > */
> > static void update_or_add_parent(struct udev *udev,
> > struct udev_device *dev,
> > - struct igt_device *idev)
> > + struct igt_device *idev,
> > + bool limit_attrs)
> > {
> > struct udev_device *parent_dev;
> > struct igt_device *parent_idev;
> > @@ -899,7 +915,7 @@ static void update_or_add_parent(struct udev *udev,
> > * return fresh udev device.
> > */
> > parent_dev = udev_device_new_from_syspath(udev, syspath);
> > - parent_idev = igt_device_new_from_udev(parent_dev);
> > + parent_idev = igt_device_new_from_udev(parent_dev, limit_attrs);
> > udev_device_unref(parent_dev);
> >
> > if (parent_idev)
> > @@ -1000,7 +1016,7 @@ static void index_pci_devices(void)
> > * Function sorts all found devices to keep same order of bus devices
> > * for providing predictable search.
> > */
> > -static void scan_drm_devices(void)
> > +static void scan_drm_devices(bool limit_attrs)
> > {
> > struct udev *udev;
> > struct udev_enumerate *enumerate;
> > @@ -1035,9 +1051,9 @@ static void scan_drm_devices(void)
> >
> > path = udev_list_entry_get_name(dev_list_entry);
> > udev_dev = udev_device_new_from_syspath(udev, path);
> > - idev = igt_device_new_from_udev(udev_dev);
> > + idev = igt_device_new_from_udev(udev_dev, limit_attrs);
> > igt_list_add_tail(&idev->link, &igt_devs.all);
> > - update_or_add_parent(udev, udev_dev, idev);
> > + update_or_add_parent(udev, udev_dev, idev, limit_attrs);
> >
> > udev_device_unref(udev_dev);
> > }
> > @@ -1092,17 +1108,28 @@ void igt_devices_free(void)
> > *
> > * Function scans udev in search of gpu devices.
> > */
> > -void igt_devices_scan(void)
> > +
> > +static void __igt_devices_scan(bool limit_attrs)
> > {
> > if (igt_devs.devs_scanned)
> > igt_devices_free();
> >
> > prepare_scan();
> > - scan_drm_devices();
> > + scan_drm_devices(limit_attrs);
> >
> > igt_devs.devs_scanned = true;
> > }
> >
> > +void igt_devices_scan(void)
> > +{
> > + __igt_devices_scan(true);
> > +}
> > +
> > +void igt_devices_scan_all_attrs(void)
> > +{
> > + __igt_devices_scan(false);
> > +}
> > +
> > static inline void _pr_simple(const char *k, const char *v)
> > {
> > printf(" %-16s: %s\n", k, v);
> > diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h
> > index fa90134aa3..92741fe3c7 100644
> > --- a/lib/igt_device_scan.h
> > +++ b/lib/igt_device_scan.h
> > @@ -64,6 +64,7 @@ struct igt_device_card {
> > };
> >
> > void igt_devices_scan(void);
> > +void igt_devices_scan_all_attrs(void);
> >
> > void igt_devices_print(const struct igt_devices_print_format *fmt);
> > void igt_devices_print_vendors(void);
> > diff --git a/tools/lsgpu.c b/tools/lsgpu.c
> > index e482ca6b75..e683900833 100644
> > --- a/tools/lsgpu.c
> > +++ b/tools/lsgpu.c
> > @@ -362,7 +362,7 @@ int main(int argc, char *argv[])
> > printf("Notice: Using filter from .igtrc\n");
> > }
> >
> > - igt_devices_scan();
> > + igt_devices_scan_all_attrs();
> >
> > if (igt_device != NULL) {
> > struct igt_device_card card;
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev
2025-01-29 14:48 ` Kamil Konieczny
2025-01-30 10:17 ` Zbigniew Kempczyński
@ 2025-01-30 10:20 ` Zbigniew Kempczyński
1 sibling, 0 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2025-01-30 10:20 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Lucas De Marchi
On Wed, Jan 29, 2025 at 03:48:49PM +0100, Kamil Konieczny wrote:
> Hi Zbigniew,
> On 2025-01-28 at 09:30:14 +0100, Zbigniew Kempczyński wrote:
> > Tests don't need all attributes so default device scanning is now
> > limited to small list directly used in device filters. To be backward
> > compatible tools like lsgpu still may scan whole attribute list what
> > keeps this behavior intact.
> >
> > Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > ---
> > lib/igt_device_scan.c | 69 ++++++++++++++++++++++++++++++-------------
> > lib/igt_device_scan.h | 1 +
> > tools/lsgpu.c | 2 +-
> > 3 files changed, 50 insertions(+), 22 deletions(-)
> >
> > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c
> > index c36b0efa90..15f6bf5728 100644
> > --- a/lib/igt_device_scan.c
> > +++ b/lib/igt_device_scan.c
> > @@ -22,6 +22,7 @@
> > *
> > */
> >
> > +#include "drmtest.h"
>
> Could you add a note here why this is needed? Something like
>
> #include "drmtest.h" /* for macro ARRAY_SIZE */
I don't think we should go this way, even if I use only ARRAY_SIZE from
this header. If someone will modify the code and start using different
macro from this header this comment will be outdated and incorrect.
--
Zbigniew
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-02-03 8:04 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-30 10:27 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
2025-01-30 12:00 ` Kamil Konieczny
2025-02-03 8:04 ` Bernatowicz, Marcin
2025-01-31 7:06 ` ✓ Xe.CI.BAT: success for lib/igt_device_scan: limit fetched device attributes from udev (rev3) Patchwork
2025-01-31 7:32 ` ✓ i915.CI.BAT: " Patchwork
2025-01-31 8:54 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-03 6:06 ` Zbigniew Kempczyński
2025-01-31 9:11 ` ✓ Xe.CI.Full: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-01-28 8:30 [PATCH i-g-t] lib/igt_device_scan: limit fetched device attributes from udev Zbigniew Kempczyński
2025-01-29 14:48 ` Kamil Konieczny
2025-01-30 10:17 ` Zbigniew Kempczyński
2025-01-30 10:20 ` Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox