* [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector
@ 2024-04-11 18:34 Ville Syrjala
2024-04-11 18:34 ` [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal Ville Syrjala
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Ville Syrjala @ 2024-04-11 18:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Give the forced_connector[] struct a proper type name,
and utilize it in various places to make the code
less messy.
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.c | 50 +++++++++++++++++++++++++++++++-------------------
1 file changed, 31 insertions(+), 19 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 60339565a192..d20a93372540 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -91,12 +91,14 @@
#define MAX_EDID 2
#define DISPLAY_TILE_BLOCK 0x12
-static struct {
+struct igt_forced_connector {
uint32_t connector_type;
uint32_t connector_type_id;
int idx;
int dir;
-} forced_connectors[MAX_CONNECTORS + 1];
+};
+
+static struct igt_forced_connector forced_connectors[MAX_CONNECTORS + 1];
/**
* igt_kms_get_base_edid:
@@ -1498,31 +1500,37 @@ static bool connector_is_forced(int idx, drmModeConnector *connector)
igt_assert(connector->connector_type != 0);
for (int i = 0; forced_connectors[i].connector_type; i++) {
- if (forced_connectors[i].idx == idx &&
- forced_connectors[i].connector_type == connector->connector_type &&
- forced_connectors[i].connector_type_id == connector->connector_type_id)
+ struct igt_forced_connector *c = &forced_connectors[i];
+
+ if (c->idx == idx &&
+ c->connector_type == connector->connector_type &&
+ c->connector_type_id == connector->connector_type_id)
return true;
}
return false;
}
-static int forced_connector_free_index(void)
+static struct igt_forced_connector *forced_connector_alloc(void)
{
int i;
for (i = 0; forced_connectors[i].connector_type; i++)
;
- return i < ARRAY_SIZE(forced_connectors) ? i : -1;
+ if (i >= ARRAY_SIZE(forced_connectors))
+ return NULL;
+
+ return &forced_connectors[i];
}
static bool force_connector(int drm_fd,
drmModeConnector *connector,
const char *value)
{
+ struct igt_forced_connector *c;
char name[80];
- int i, idx, dir;
+ int idx, dir;
idx = igt_device_get_card_index(drm_fd);
if (idx < 0 || idx > 63)
@@ -1549,17 +1557,17 @@ static bool force_connector(int drm_fd,
return true;
}
- i = forced_connector_free_index();
- if (i < 0) {
+ c = forced_connector_alloc();
+ if (!c) {
igt_warn("Connector limit reached, %s will not be reset\n", name);
close(dir);
return true;
}
- forced_connectors[i].idx = idx;
- forced_connectors[i].connector_type = connector->connector_type;
- forced_connectors[i].connector_type_id = connector->connector_type_id;
- forced_connectors[i].dir = dir;
+ c->idx = idx;
+ c->connector_type = connector->connector_type;
+ c->connector_type_id = connector->connector_type_id;
+ c->dir = dir;
return true;
}
@@ -1571,9 +1579,10 @@ static void dump_forced_connectors(void)
igt_debug("Current forced connectors:\n");
for (int i = 0; forced_connectors[i].connector_type; i++) {
- kmstest_connector_dirname(forced_connectors[i].idx,
- forced_connectors[i].connector_type,
- forced_connectors[i].connector_type_id,
+ struct igt_forced_connector *c = &forced_connectors[i];
+
+ kmstest_connector_dirname(c->idx, c->connector_type,
+ c->connector_type_id,
name, sizeof(name));
igt_debug("\t%s\n", name);
}
@@ -5302,8 +5311,11 @@ void igt_reset_connectors(void)
{
/* reset the connectors stored in forced_connectors, avoiding any
* functions that are not safe to call in signal handlers */
- for (int i = 0; i < forced_connectors[i].connector_type; i++)
- igt_sysfs_set(forced_connectors[i].dir, "status", "detect");
+ for (int i = 0; i < forced_connectors[i].connector_type; i++) {
+ struct igt_forced_connector *c = &forced_connectors[i];
+
+ igt_sysfs_set(c->dir, "status", "detect");
+ }
}
/**
--
2.43.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
@ 2024-04-11 18:34 ` Ville Syrjala
2024-04-14 5:56 ` Joshi, Kunal1
2024-04-11 18:34 ` [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes Ville Syrjala
` (6 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjala @ 2024-04-11 18:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Get rid of the sentinel in forced_comnectors[] and just
use ARRAY_SIZE() to determine the limits.
The sentinel stuff actually looks broken due to the use of
ARRAY_SIZE() in forced_connector_free_index(), which was
apparently my doing in
commit ed6539ced33e ("lib/igt_kms: Rework forced connector handling")
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.c | 27 ++++++++++++++++-----------
1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index d20a93372540..86651e3de348 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -98,7 +98,7 @@ struct igt_forced_connector {
int dir;
};
-static struct igt_forced_connector forced_connectors[MAX_CONNECTORS + 1];
+static struct igt_forced_connector forced_connectors[MAX_CONNECTORS];
/**
* igt_kms_get_base_edid:
@@ -1499,7 +1499,7 @@ static bool connector_is_forced(int idx, drmModeConnector *connector)
{
igt_assert(connector->connector_type != 0);
- for (int i = 0; forced_connectors[i].connector_type; i++) {
+ for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
struct igt_forced_connector *c = &forced_connectors[i];
if (c->idx == idx &&
@@ -1513,15 +1513,14 @@ static bool connector_is_forced(int idx, drmModeConnector *connector)
static struct igt_forced_connector *forced_connector_alloc(void)
{
- int i;
+ for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
+ struct igt_forced_connector *c = &forced_connectors[i];
- for (i = 0; forced_connectors[i].connector_type; i++)
- ;
+ if (!c->connector_type)
+ return c;
+ }
- if (i >= ARRAY_SIZE(forced_connectors))
- return NULL;
-
- return &forced_connectors[i];
+ return NULL;
}
static bool force_connector(int drm_fd,
@@ -1578,9 +1577,12 @@ static void dump_forced_connectors(void)
igt_debug("Current forced connectors:\n");
- for (int i = 0; forced_connectors[i].connector_type; i++) {
+ for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
struct igt_forced_connector *c = &forced_connectors[i];
+ if (!c->connector_type)
+ continue;
+
kmstest_connector_dirname(c->idx, c->connector_type,
c->connector_type_id,
name, sizeof(name));
@@ -5311,9 +5313,12 @@ void igt_reset_connectors(void)
{
/* reset the connectors stored in forced_connectors, avoiding any
* functions that are not safe to call in signal handlers */
- for (int i = 0; i < forced_connectors[i].connector_type; i++) {
+ for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
struct igt_forced_connector *c = &forced_connectors[i];
+ if (!c->connector_type)
+ continue;
+
igt_sysfs_set(c->dir, "status", "detect");
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
2024-04-11 18:34 ` [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal Ville Syrjala
@ 2024-04-11 18:34 ` Ville Syrjala
2024-04-14 5:57 ` Joshi, Kunal1
2024-04-11 18:34 ` [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value Ville Syrjala
` (5 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjala @ 2024-04-11 18:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
We may want to poke at various other connector attributes
via sysfs/debugfs. Generalize the existing the force_connectors
mechamisn to handle arbitrary attributes.
v2: Fix connector_attr_alloc()
Set c->value before using it
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.c | 143 ++++++++++++++++++++++++++++++++------------------
1 file changed, 92 insertions(+), 51 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 86651e3de348..3da49d1ccb6e 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -91,14 +91,18 @@
#define MAX_EDID 2
#define DISPLAY_TILE_BLOCK 0x12
-struct igt_forced_connector {
+typedef bool (*igt_connector_attr_set)(int dir, const char *attr, const char *value);
+
+struct igt_connector_attr {
uint32_t connector_type;
uint32_t connector_type_id;
int idx;
int dir;
+ igt_connector_attr_set set;
+ const char *attr, *value, *reset_value;
};
-static struct igt_forced_connector forced_connectors[MAX_CONNECTORS];
+static struct igt_connector_attr connector_attrs[MAX_CONNECTORS];
/**
* igt_kms_get_base_edid:
@@ -1495,39 +1499,87 @@ int igt_connector_sysfs_open(int drm_fd,
return conn_dir;
}
-static bool connector_is_forced(int idx, drmModeConnector *connector)
+static struct igt_connector_attr *connector_attr_find(int idx, drmModeConnector *connector,
+ igt_connector_attr_set set,
+ const char *attr)
{
igt_assert(connector->connector_type != 0);
- for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
- struct igt_forced_connector *c = &forced_connectors[i];
+ for (int i = 0; i < ARRAY_SIZE(connector_attrs); i++) {
+ struct igt_connector_attr *c = &connector_attrs[i];
if (c->idx == idx &&
c->connector_type == connector->connector_type &&
- c->connector_type_id == connector->connector_type_id)
- return true;
+ c->connector_type_id == connector->connector_type_id &&
+ c->set == set && !strcmp(c->attr, attr))
+ return c;
}
- return false;
+ return NULL;
}
-static struct igt_forced_connector *forced_connector_alloc(void)
+static struct igt_connector_attr *connector_attr_find_free(void)
{
- for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
- struct igt_forced_connector *c = &forced_connectors[i];
+ for (int i = 0; i < ARRAY_SIZE(connector_attrs); i++) {
+ struct igt_connector_attr *c = &connector_attrs[i];
- if (!c->connector_type)
+ if (!c->attr)
return c;
}
return NULL;
}
-static bool force_connector(int drm_fd,
- drmModeConnector *connector,
- const char *value)
+static struct igt_connector_attr *connector_attr_alloc(int idx, drmModeConnector *connector,
+ int dir, igt_connector_attr_set set,
+ const char *attr, const char *reset_value)
+{
+ struct igt_connector_attr *c = connector_attr_find_free();
+
+ c->idx = idx;
+ c->connector_type = connector->connector_type;
+ c->connector_type_id = connector->connector_type_id;
+
+ c->dir = dir;
+ c->set = set;
+ c->attr = attr;
+ c->reset_value = reset_value;
+
+ return c;
+}
+
+static void connector_attr_free(struct igt_connector_attr *c)
+{
+ memset(c, 0, sizeof(*c));
+}
+
+static bool connector_attr_set(int idx, drmModeConnector *connector,
+ int dir, igt_connector_attr_set set,
+ const char *attr, const char *value,
+ const char *reset_value)
+{
+ struct igt_connector_attr *c;
+
+ c = connector_attr_find(idx, connector, set, attr);
+ if (!c)
+ c = connector_attr_alloc(idx, connector, dir, set,
+ attr, reset_value);
+
+ c->value = value;
+
+ if (!c->set(c->dir, c->attr, c->value)) {
+ connector_attr_free(c);
+ return false;
+ }
+
+ return true;
+}
+
+static bool connector_attr_set_sysfs(int drm_fd,
+ drmModeConnector *connector,
+ const char *attr, const char *value,
+ const char *reset_value)
{
- struct igt_forced_connector *c;
char name[80];
int idx, dir;
@@ -1543,53 +1595,42 @@ static bool force_connector(int drm_fd,
if (dir < 0)
return false;
- if (!igt_sysfs_set(dir, "status", value)) {
- close(dir);
+ if (!connector_attr_set(idx, connector, dir,
+ igt_sysfs_set, attr, value, reset_value))
return false;
- }
- igt_debug("Connector %s is now forced %s\n", name, value);
-
- /* already tracked? */
- if (connector_is_forced(idx, connector)) {
- close(dir);
- return true;
- }
-
- c = forced_connector_alloc();
- if (!c) {
- igt_warn("Connector limit reached, %s will not be reset\n", name);
- close(dir);
- return true;
- }
-
- c->idx = idx;
- c->connector_type = connector->connector_type;
- c->connector_type_id = connector->connector_type_id;
- c->dir = dir;
+ igt_debug("Connector %s/%s is now %s\n", name, attr, value);
return true;
}
-static void dump_forced_connectors(void)
+static void dump_connector_attrs(void)
{
char name[80];
- igt_debug("Current forced connectors:\n");
+ igt_debug("Current connector attrs:\n");
- for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
- struct igt_forced_connector *c = &forced_connectors[i];
+ for (int i = 0; i < ARRAY_SIZE(connector_attrs); i++) {
+ struct igt_connector_attr *c = &connector_attrs[i];
- if (!c->connector_type)
+ if (!c->attr)
continue;
kmstest_connector_dirname(c->idx, c->connector_type,
c->connector_type_id,
name, sizeof(name));
- igt_debug("\t%s\n", name);
+ igt_debug("\t%s/%s: %s\n", name, c->attr, c->value);
}
}
+static bool force_connector(int drm_fd,
+ drmModeConnector *connector,
+ const char *value)
+{
+ return connector_attr_set_sysfs(drm_fd, connector,
+ "status", value, "detect");
+}
+
/**
* kmstest_force_connector:
* @fd: drm file descriptor
@@ -1634,7 +1675,7 @@ bool kmstest_force_connector(int drm_fd, drmModeConnector *connector,
if (!force_connector(drm_fd, connector, value))
return false;
- dump_forced_connectors();
+ dump_connector_attrs();
igt_install_exit_handler(reset_connectors_at_exit);
@@ -2627,7 +2668,7 @@ static void igt_handle_spurious_hpd(igt_display_t *display)
conn->connector_type_id);
}
- dump_forced_connectors();
+ dump_connector_attrs();
}
/**
@@ -5311,15 +5352,15 @@ void igt_enable_connectors(int drm_fd)
*/
void igt_reset_connectors(void)
{
- /* reset the connectors stored in forced_connectors, avoiding any
+ /* reset the connectors stored in connector_attrs, avoiding any
* functions that are not safe to call in signal handlers */
- for (int i = 0; i < ARRAY_SIZE(forced_connectors); i++) {
- struct igt_forced_connector *c = &forced_connectors[i];
+ for (int i = 0; i < ARRAY_SIZE(connector_attrs); i++) {
+ struct igt_connector_attr *c = &connector_attrs[i];
- if (!c->connector_type)
+ if (!c->attr)
continue;
- igt_sysfs_set(c->dir, "status", "detect");
+ c->set(c->dir, c->attr, c->reset_value);
}
}
--
2.43.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
2024-04-11 18:34 ` [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal Ville Syrjala
2024-04-11 18:34 ` [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes Ville Syrjala
@ 2024-04-11 18:34 ` Ville Syrjala
2024-04-14 5:59 ` Joshi, Kunal1
2024-04-11 19:17 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector Patchwork
` (4 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjala @ 2024-04-11 18:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
When anyone manually sets the connector attr to the reset value
we can stop tracking said attr.
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 3da49d1ccb6e..3216fe7e434c 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1572,6 +1572,9 @@ static bool connector_attr_set(int idx, drmModeConnector *connector,
return false;
}
+ if (!strcmp(c->value, c->reset_value))
+ connector_attr_free(c);
+
return true;
}
--
2.43.2
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
` (2 preceding siblings ...)
2024-04-11 18:34 ` [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value Ville Syrjala
@ 2024-04-11 19:17 ` Patchwork
2024-04-11 19:26 ` ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-04-11 19:17 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1106 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
URL : https://patchwork.freedesktop.org/series/132327/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7806_BAT -> XEIGTPW_11011_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7806 -> IGTPW_11011
* Linux: xe-1078-47b56114d9fd714a477581fbba985e0d98053f80 -> xe-1079-64a24a7dc774886c660a412a0d12c02f4bfec223
IGTPW_11011: 11011
IGT_7806: 849cd963ce7e8222dcf17cc872d355181fd2c2a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1078-47b56114d9fd714a477581fbba985e0d98053f80: 47b56114d9fd714a477581fbba985e0d98053f80
xe-1079-64a24a7dc774886c660a412a0d12c02f4bfec223: 64a24a7dc774886c660a412a0d12c02f4bfec223
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/index.html
[-- Attachment #2: Type: text/html, Size: 1665 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
` (3 preceding siblings ...)
2024-04-11 19:17 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector Patchwork
@ 2024-04-11 19:26 ` Patchwork
2024-04-12 1:49 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-04-11 19:26 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6330 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
URL : https://patchwork.freedesktop.org/series/132327/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14567 -> IGTPW_11011
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/index.html
Participating hosts (37 -> 39)
------------------------------
Additional (4): fi-blb-e6850 bat-kbl-2 bat-atsm-1 fi-bsw-n3050
Missing (2): fi-elk-e7500 bat-arls-3
Known issues
------------
Here are the changes found in IGTPW_11011 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-kbl-2/igt@fbdev@info.html
* igt@gem_huc_copy@huc-copy:
- bat-atsm-1: NOTRUN -> [FAIL][2] ([i915#10563])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][3] +39 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- fi-bsw-n3050: NOTRUN -> [SKIP][4] +19 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- fi-blb-e6850: NOTRUN -> [SKIP][7] +32 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gem:
- bat-atsm-1: NOTRUN -> [ABORT][9] ([i915#10182] / [i915#10564])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@i915_selftest@live@gem.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6077]) +37 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6078]) +22 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6093]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#1836]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#7357])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6094])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#4077]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][17] +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-9: [FAIL][18] ([i915#10378]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[i915#10182]: https://gitlab.freedesktop.org/drm/intel/issues/10182
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10563]: https://gitlab.freedesktop.org/drm/intel/issues/10563
[i915#10564]: https://gitlab.freedesktop.org/drm/intel/issues/10564
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7806 -> IGTPW_11011
CI-20190529: 20190529
CI_DRM_14567: 64a24a7dc774886c660a412a0d12c02f4bfec223 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11011: 11011
IGT_7806: 849cd963ce7e8222dcf17cc872d355181fd2c2a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/index.html
[-- Attachment #2: Type: text/html, Size: 7390 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
` (4 preceding siblings ...)
2024-04-11 19:26 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-04-12 1:49 ` Patchwork
2024-04-12 5:17 ` ✗ Fi.CI.IGT: " Patchwork
2024-04-14 5:55 ` [PATCH i-g-t v2 1/4] " Joshi, Kunal1
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-04-12 1:49 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 34173 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
URL : https://patchwork.freedesktop.org/series/132327/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7806_full -> XEIGTPW_11011_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11011_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][1] ([Intel XE#1548])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_big_fb@x-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#610])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/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][6] ([Intel XE#1124] / [Intel XE#1201]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#787]) +86 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-7.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +26 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-7:
- shard-dg2-set2: NOTRUN -> [FAIL][10] ([Intel XE#650]) +6 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-7.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][11] ([Intel XE#616]) +8 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_cdclk@mode-transition:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#1201] / [Intel XE#1235])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@kms_cdclk@mode-transition.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][15] ([Intel XE#1178])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1201]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) +1 other test dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1214] / [Intel XE#282]) +6 other tests dmesg-warn
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@kms_cursor_legacy@forked-move@pipe-b.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#455]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][24] ([Intel XE#1214]) +3 other tests dmesg-warn
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a7.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a6:
- shard-dg2-set2: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1214]) +6 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [i915#5274])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#651]) +18 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#653]) +16 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_getfb@getfb-repeated-different-handles:
- shard-dg2-set2: [PASS][30] -> [SKIP][31] ([Intel XE#1201] / [Intel XE#687])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_getfb@getfb-repeated-different-handles.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_getfb@getfb-repeated-different-handles.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][32] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#870])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_pm_backlight@fade.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1201] / [Intel XE#1211]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_pm_rpm@basic-pci-d3-state.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#1211])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#929]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_rmfb@close-fd@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][40] ([Intel XE#294])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_rmfb@close-fd@pipe-b-dp-4.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#327])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4:
- shard-dg2-set2: [PASS][42] -> [FAIL][43] ([Intel XE#899])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#1162] / [Intel XE#1214])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_ccs@suspend-resume:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195]) +1 other test incomplete
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@xe_ccs@suspend-resume.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@xe_ccs@suspend-resume.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1123] / [Intel XE#1201])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1126] / [Intel XE#1201])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][51] -> [TIMEOUT][52] ([Intel XE#1473] / [Intel XE#392] / [Intel XE#931])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [PASS][53] -> [TIMEOUT][54] ([Intel XE#1473] / [Intel XE#392])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-433/igt@xe_evict@evict-cm-threads-large.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][55] -> [TIMEOUT][56] ([Intel XE#1473])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-small.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#288]) +10 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1068])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind:
- shard-dg2-set2: [PASS][59] -> [TIMEOUT][60] ([Intel XE#1206] / [Intel XE#1261] / [Intel XE#1356]) +1 other test timeout
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-fd-userptr-invalidate-race:
- shard-dg2-set2: [PASS][61] -> [TIMEOUT][62] ([Intel XE#1261] / [Intel XE#1356])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-463/igt@xe_exec_threads@threads-fd-userptr-invalidate-race.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@xe_exec_threads@threads-fd-userptr-invalidate-race.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#512])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#378])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@xe_module_load@force-load.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#366])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#1043] / [Intel XE#845])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@xe_pm@s4-basic-exec.html
#### Possible fixes ####
* {igt@kms_big_joiner@invalid-modeset-force-joiner}:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1201]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@kms_big_joiner@invalid-modeset-force-joiner.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][69] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][70] +5 other tests pass
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: [FAIL][71] ([Intel XE#361]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_pm_dc@dc9-dpms:
- shard-dg2-set2: [FAIL][73] ([Intel XE#1204]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-434/igt@kms_pm_dc@dc9-dpms.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-436/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_pm_rpm@modeset-lpsp.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][77] ([Intel XE#899]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
* igt@xe_evict@evict-beng-mixed-threads-large-multi-vm:
- shard-dg2-set2: [FAIL][79] ([Intel XE#1259]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html
* igt@xe_exec_threads@threads-hang-rebind:
- shard-dg2-set2: [FAIL][81] ([Intel XE#1256]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@xe_exec_threads@threads-hang-rebind.html
* igt@xe_pm@d3hot-basic-exec:
- shard-dg2-set2: [FAIL][83] ([Intel XE#355]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@xe_pm@d3hot-basic-exec.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][85] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
#### Warnings ####
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-dg2-set2: [SKIP][87] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][88] ([Intel XE#1201] / [Intel XE#829])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][89] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#1234])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][92] ([Intel XE#1178])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@kms_content_protection@srm.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_content_protection@srm.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [FAIL][93] ([Intel XE#581]) -> [DMESG-WARN][94] ([Intel XE#1214] / [Intel XE#282])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][96] ([Intel XE#1201]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][97] ([Intel XE#1201]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#651])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][99] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][100] ([Intel XE#1201]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: [FAIL][101] ([Intel XE#616]) -> [DMESG-FAIL][102] ([Intel XE#1162]) +1 other test dmesg-fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [TIMEOUT][103] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][104] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) +1 other test incomplete
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: [TIMEOUT][105] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][106] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) +1 other test incomplete
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: [SKIP][107] ([Intel XE#1201]) -> [INCOMPLETE][108] ([Intel XE#1195] / [Intel XE#909])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_psr@psr-primary-render:
- shard-dg2-set2: [SKIP][109] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][110] ([Intel XE#1201]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-466/igt@kms_psr@psr-primary-render.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_psr@psr-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][111] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#829])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][113] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][114] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][115] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][116] ([Intel XE#1259] / [Intel XE#1473] / [Intel XE#392])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [TIMEOUT][117] ([Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][118] ([Intel XE#1259] / [Intel XE#1473] / [Intel XE#392])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-464/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
- shard-dg2-set2: [INCOMPLETE][119] ([Intel XE#1169] / [Intel XE#1195] / [Intel XE#1356] / [Intel XE#1376]) -> [TIMEOUT][120] ([Intel XE#1206] / [Intel XE#1356])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [DMESG-FAIL][121] ([Intel XE#1162] / [Intel XE#1551]) -> [FAIL][122] ([Intel XE#1043] / [Intel XE#845])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-434/igt@xe_pm@s4-basic.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-433/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [FAIL][123] ([Intel XE#1043] / [Intel XE#845]) -> [DMESG-FAIL][124] ([Intel XE#1162]) +1 other test dmesg-fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7806/shard-dg2-433/igt@xe_pm@s4-d3hot-basic-exec.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11011/shard-dg2-435/igt@xe_pm@s4-d3hot-basic-exec.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043
[Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068
[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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1206]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1206
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234
[Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235
[Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256
[Intel XE#1259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1259
[Intel XE#1261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1261
[Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356
[Intel XE#1376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1376
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/355
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581
[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#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650
[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#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687
[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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#845]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/845
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904
[Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/931
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
Build changes
-------------
* IGT: IGT_7806 -> IGTPW_11011
* Linux: xe-1078-47b56114d9fd714a477581fbba985e0d98053f80 -> xe-1079-64a24a7dc774886c660a412a0d12c02f4bfec223
IGTPW_11011: 11011
IGT_7806: 849cd963ce7e8222dcf17cc872d355181fd2c2a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1078-47b56114d9fd714a477581fbba985e0d98053f80: 47b56114d9fd714a477581fbba985e0d98053f80
xe-1079-64a24a7dc774886c660a412a0d12c02f4bfec223: 64a24a7dc774886c660a412a0d12c02f4bfec223
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132327v1/index.html
[-- Attachment #2: Type: text/html, Size: 45125 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
` (5 preceding siblings ...)
2024-04-12 1:49 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-04-12 5:17 ` Patchwork
2024-04-14 5:55 ` [PATCH i-g-t v2 1/4] " Joshi, Kunal1
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-04-12 5:17 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 96821 bytes --]
== Series Details ==
Series: series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector
URL : https://patchwork.freedesktop.org/series/132327/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14567_full -> IGTPW_11011_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11011_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11011_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_11011/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11011_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_schedule@wide@vcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk2/igt@gem_exec_schedule@wide@vcs0.html
* igt@kms_flip@flip-vs-suspend@b-vga1:
- shard-snb: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-snb4/igt@kms_flip@flip-vs-suspend@b-vga1.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb6/igt@kms_flip@flip-vs-suspend@b-vga1.html
* igt@kms_plane@pixel-format@pipe-a:
- shard-tglu: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-tglu-3/igt@kms_plane@pixel-format@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-2/igt@kms_plane@pixel-format@pipe-a.html
Known issues
------------
Here are the changes found in IGTPW_11011_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#7701])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][11] ([i915#9408] / [i915#9618])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +12 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +14 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][15] ([i915#7742]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-7/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb2/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [INCOMPLETE][28] ([i915#10513])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][29] ([i915#5784])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4036])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6344])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-zero:
- shard-snb: NOTRUN -> [SKIP][35] +104 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb4/igt@gem_exec_capture@many-4k-zero.html
- shard-glk: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk8/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: NOTRUN -> [FAIL][38] ([i915#2846])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][39] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-3/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none-vip:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][42] ([i915#2842]) +5 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk2/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][45] ([i915#2842])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +10 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +16 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#2190])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][57] ([i915#2190])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][59] ([i915#10378]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][62] ([i915#4613]) +11 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4565])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#8289])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#284])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_media_vme.html
* igt@gem_mmap@basic:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@gem_mmap@basic.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +14 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +20 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@fault-concurrent-y:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html
* igt@gem_mmap_offset@clear@smem0:
- shard-mtlp: NOTRUN -> [ABORT][71] ([i915#10029] / [i915#10729])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +7 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@uncached:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3282]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +5 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4885])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4879])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3297]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [ABORT][94] ([i915#5566])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk5/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk5/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#6227])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][102] -> [INCOMPLETE][103] ([i915#9697] / [i915#9820])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: NOTRUN -> [FAIL][105] ([i915#3591])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#6621])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#8925]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#8925])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6245])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#6188])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][113] ([i915#9311])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][114] ([i915#9311])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk8/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#6645])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#7707])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3826])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6228])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][122] ([i915#1769])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][127] +18 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3638]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +16 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#10656])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#10656])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +174 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +95 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +57 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#10278]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +27 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#6095]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#10278]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#7213]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#7828]) +11 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#7828])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +12 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) +10 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3116] / [i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3116])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][160] ([i915#7173])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9424]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#9424]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7116] / [i915#9424]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3359]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3359]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3359]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#9809]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][177] -> [FAIL][178] ([i915#2346])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#9067])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#4103])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#4213])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#4103]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: NOTRUN -> [DMESG-WARN][183] ([i915#10166])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb7/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#9723]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8812])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9688])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3840] / [i915#9053])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#4854])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#1839]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#1839]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#1839]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#9337])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#658])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#658])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#3637] / [i915#3966])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][201] +47 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#9934]) +9 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8381])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672]) +5 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#2672]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8810])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8810])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [PASS][212] -> [FAIL][213] ([i915#6880])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +23 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][215] +20 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8708]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#1825]) +32 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#8708]) +18 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10055])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3458]) +29 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +49 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +33 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#9766])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#10070])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#10433] / [i915#3458])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3458]) +19 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#1825]) +33 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +4 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][232] +28 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][233] ([i915#10647]) +1 other test fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8806])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5176]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9423]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9423]) +15 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9423]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#9423]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5235]) +5 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#5235]) +15 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5235]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#5235])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#5235] / [i915#9423]) +19 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#5354]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#9292])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9685])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9685])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#9340])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#8430])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9519])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#9519])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-rkl: [PASS][254] -> [SKIP][255] ([i915#9519])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#9519]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][257] -> [SKIP][258] ([i915#9519]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6524])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#6524])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#6524] / [i915#6805])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#6524]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][263] +71 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#9808]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9683]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9688]) +9 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@kms_psr@fbc-psr-cursor-mmap-gtt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +23 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#9732]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +26 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-no-drrs:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +26 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#4077] / [i915#9688])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_psr@psr2-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][275] +695 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#9685]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#4235])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#4235] / [i915#5190]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_vrr@max-min:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8808] / [i915#9906])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-7/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#9906]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#9906])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#9906])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2437])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][284] ([i915#2437]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk8/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2437] / [i915#9412])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2437]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#2434])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#2433])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#2433])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#8440])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-1/igt@perf_pmu@faulting-read@gtt.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#3708])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@prime_vgem@basic-fence-read.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3708])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#3708] / [i915#4077])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#3291] / [i915#3708])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#3708])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-7/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#9917])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#9917])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][301] ([i915#9781])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-15/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][302] ([i915#9781])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk2/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][303] ([i915#9779])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-dg1: NOTRUN -> [FAIL][304] ([i915#9779])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-16/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][305] ([i915#9779])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-glk8/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#4818])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#4818])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_create_bo@create-bo-0:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#2575]) +18 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@v3d/v3d_create_bo@create-bo-0.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2575]) +10 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-4/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_perfmon@get-values-invalid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#2575]) +16 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#7711]) +5 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-2/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#7711]) +10 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#7711]) +11 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-13/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#7711]) +11 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#2575]) +4 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-8/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][316] ([i915#7742]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_eio@in-flight-contexts-1us:
- shard-snb: [FAIL][318] -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-snb5/igt@gem_eio@in-flight-contexts-1us.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb7/igt@gem_eio@in-flight-contexts-1us.html
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][320] ([i915#10513]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-tglu-4/igt@gem_eio@kms.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-4/igt@gem_eio@kms.html
- shard-dg2: [INCOMPLETE][322] ([i915#10513]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-8/igt@gem_eio@kms.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][324] ([i915#2846]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][326] ([i915#2842]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][328] ([i915#2842]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg1: [INCOMPLETE][330] ([i915#10317]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg1-17/igt@gem_lmem_swapping@basic@lmem0.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][332] ([i915#5493]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [INCOMPLETE][334] ([i915#9820] / [i915#9849]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][336] ([i915#9820]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live@gtt:
- shard-dg2: [ABORT][338] ([i915#10366] / [i915#10461]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-11/igt@i915_selftest@live@gtt.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@i915_selftest@live@gtt.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][340] ([i915#10031]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][342] ([i915#5138]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][344] ([i915#2122]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check@a-hdmi-a3:
- shard-dg2: [FAIL][346] ([i915#2122]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-6/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-6/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a4:
- shard-dg1: [FAIL][348] ([i915#2122]) -> [PASS][349] +2 other tests pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg1-18/igt@kms_flip@plain-flip-ts-check@b-hdmi-a4.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_flip@plain-flip-ts-check@b-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][350] ([i915#6880]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [SKIP][352] ([i915#9519]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-5/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][354] ([i915#9196]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-snb: [ABORT][356] -> [SKIP][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][358] ([i915#3458]) -> [SKIP][359] ([i915#10433] / [i915#3458]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][360] ([i915#4816]) -> [SKIP][361] ([i915#4070] / [i915#4816])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2: [SKIP][362] ([i915#1072] / [i915#9732]) -> [SKIP][363] ([i915#1072] / [i915#9673] / [i915#9732]) +10 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-1/igt@kms_psr@fbc-pr-primary-render.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-11/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-sprite-mmap-gtt:
- shard-dg2: [SKIP][364] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][365] ([i915#1072] / [i915#9732]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14567/shard-dg2-11/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/shard-dg2-10/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
[i915#10029]: https://gitlab.freedesktop.org/drm/intel/issues/10029
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10317]: https://gitlab.freedesktop.org/drm/intel/issues/10317
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10461]: https://gitlab.freedesktop.org/drm/intel/issues/10461
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#10647]: https://gitlab.freedesktop.org/drm/intel/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#10729]: https://gitlab.freedesktop.org/drm/intel/issues/10729
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7806 -> IGTPW_11011
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14567: 64a24a7dc774886c660a412a0d12c02f4bfec223 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11011: 11011
IGT_7806: 849cd963ce7e8222dcf17cc872d355181fd2c2a2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11011/index.html
[-- Attachment #2: Type: text/html, Size: 119264 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
` (6 preceding siblings ...)
2024-04-12 5:17 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-04-14 5:55 ` Joshi, Kunal1
7 siblings, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-04-14 5:55 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
[-- Attachment #1: Type: text/plain, Size: 387 bytes --]
On 4/12/2024 12:04 AM, Ville Syrjala wrote:
> From: Ville Syrjälä<ville.syrjala@linux.intel.com>
>
> Give the forced_connector[] struct a proper type name,
> and utilize it in various places to make the code
> less messy.
>
> Cc: Kunal Joshi<kunal1.joshi@intel.com>
> Signed-off-by: Ville Syrjälä<ville.syrjala@linux.intel.com>
LGTM
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
[-- Attachment #2: Type: text/html, Size: 1290 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal
2024-04-11 18:34 ` [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal Ville Syrjala
@ 2024-04-14 5:56 ` Joshi, Kunal1
0 siblings, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-04-14 5:56 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
[-- Attachment #1: Type: text/plain, Size: 585 bytes --]
On 4/12/2024 12:04 AM, Ville Syrjala wrote:
> From: Ville Syrjälä<ville.syrjala@linux.intel.com>
>
> Get rid of the sentinel in forced_comnectors[] and just
> use ARRAY_SIZE() to determine the limits.
>
> The sentinel stuff actually looks broken due to the use of
> ARRAY_SIZE() in forced_connector_free_index(), which was
> apparently my doing in
> commit ed6539ced33e ("lib/igt_kms: Rework forced connector handling")
>
> Cc: Kunal Joshi<kunal1.joshi@intel.com>
> Signed-off-by: Ville Syrjälä<ville.syrjala@linux.intel.com>
LGTM
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
[-- Attachment #2: Type: text/html, Size: 1332 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes
2024-04-11 18:34 ` [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes Ville Syrjala
@ 2024-04-14 5:57 ` Joshi, Kunal1
0 siblings, 0 replies; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-04-14 5:57 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
[-- Attachment #1: Type: text/plain, Size: 505 bytes --]
On 4/12/2024 12:04 AM, Ville Syrjala wrote:
> From: Ville Syrjälä<ville.syrjala@linux.intel.com>
>
> We may want to poke at various other connector attributes
> via sysfs/debugfs. Generalize the existing the force_connectors
> mechamisn to handle arbitrary attributes.
>
> v2: Fix connector_attr_alloc()
> Set c->value before using it
>
> Cc: Kunal Joshi<kunal1.joshi@intel.com>
> Signed-off-by: Ville Syrjälä<ville.syrjala@linux.intel.com>
LGTM
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
[-- Attachment #2: Type: text/html, Size: 1290 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value
2024-04-11 18:34 ` [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value Ville Syrjala
@ 2024-04-14 5:59 ` Joshi, Kunal1
2024-04-16 12:33 ` Ville Syrjälä
0 siblings, 1 reply; 13+ messages in thread
From: Joshi, Kunal1 @ 2024-04-14 5:59 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
[-- Attachment #1: Type: text/plain, Size: 364 bytes --]
On 4/12/2024 12:04 AM, Ville Syrjala wrote:
> From: Ville Syrjälä<ville.syrjala@linux.intel.com>
>
> When anyone manually sets the connector attr to the reset value
> we can stop tracking said attr.
>
> Cc: Kunal Joshi<kunal1.joshi@intel.com>
> Signed-off-by: Ville Syrjälä<ville.syrjala@linux.intel.com>
LGTM
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
[-- Attachment #2: Type: text/html, Size: 1110 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value
2024-04-14 5:59 ` Joshi, Kunal1
@ 2024-04-16 12:33 ` Ville Syrjälä
0 siblings, 0 replies; 13+ messages in thread
From: Ville Syrjälä @ 2024-04-16 12:33 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
On Sun, Apr 14, 2024 at 11:29:00AM +0530, Joshi, Kunal1 wrote:
>
> On 4/12/2024 12:04 AM, Ville Syrjala wrote:
> > From: Ville Syrjälä<ville.syrjala@linux.intel.com>
> >
> > When anyone manually sets the connector attr to the reset value
> > we can stop tracking said attr.
> >
> > Cc: Kunal Joshi<kunal1.joshi@intel.com>
> > Signed-off-by: Ville Syrjälä<ville.syrjala@linux.intel.com>
> LGTM
> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
Thanks. All pushed.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-04-16 12:33 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-11 18:34 [PATCH i-g-t v2 1/4] lib/kms: Introduce struct igt_forced_connector Ville Syrjala
2024-04-11 18:34 ` [PATCH i-g-t v2 2/4] lib/kms: Adjust forced_connectors[] traversal Ville Syrjala
2024-04-14 5:56 ` Joshi, Kunal1
2024-04-11 18:34 ` [PATCH i-g-t v2 3/4] lib/kms: Generalize forced_connectors[] to handle arbitrary attributes Ville Syrjala
2024-04-14 5:57 ` Joshi, Kunal1
2024-04-11 18:34 ` [PATCH i-g-t v2 4/4] lib/kms: Clear connector_attrs[] upon setting the reset value Ville Syrjala
2024-04-14 5:59 ` Joshi, Kunal1
2024-04-16 12:33 ` Ville Syrjälä
2024-04-11 19:17 ` ✓ CI.xeBAT: success for series starting with [i-g-t,v2,1/4] lib/kms: Introduce struct igt_forced_connector Patchwork
2024-04-11 19:26 ` ✓ Fi.CI.BAT: " Patchwork
2024-04-12 1:49 ` ✗ CI.xeFULL: failure " Patchwork
2024-04-12 5:17 ` ✗ Fi.CI.IGT: " Patchwork
2024-04-14 5:55 ` [PATCH i-g-t v2 1/4] " Joshi, Kunal1
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox