* [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags
@ 2024-03-29 15:30 Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 1/3] drm-uapi/xe: Align header with drm-xe-next Francois Dugast
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Francois Dugast @ 2024-03-29 15:30 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
The first 2 patches align the header to the current version in
drm-xe-next. The last one brings back some tests now that the flags
they depend on are also back. The matching kernel series is:
https://patchwork.freedesktop.org/series/131790/
Francois Dugast (3):
drm-uapi/xe: Align header with drm-xe-next
drm-uapi/xe: Define topology types as indexes rather than masks
drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and
VM_BIND_FLAG_IMMEDIATE
include/drm-uapi/xe_drm.h | 27 +++-------
tests/intel-ci/xe-fast-feedback.testlist | 10 ++++
tests/intel/xe_exec_fault_mode.c | 65 ++++++++++++++++++++----
tests/intel/xe_vm.c | 16 ++++--
4 files changed, 85 insertions(+), 33 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 1/3] drm-uapi/xe: Align header with drm-xe-next
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
@ 2024-03-29 15:30 ` Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks Francois Dugast
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Francois Dugast @ 2024-03-29 15:30 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Ashutosh Dixit, Lucas De Marchi
Currently xe_drm.h is based on drm-next with some additions from
drm-xe-next.
However some uAPI updates brought by commit ca4607939 ("drm-uapi/xe: \
Remove unused flags") were mistakenly reverted by commit aef5f4742
("drm-uapi: sync with drm-next f112b68f273f").
Ensure xe_drm.h is now aligned with kernel commit 8e61e3192a77
("drm/xe/uapi: Add IP version and stepping to GT list query").
v2: Add kernel commit hash in commit message (Lucas De Marchi)
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
include/drm-uapi/xe_drm.h | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index 4353595a4..91ea92035 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -871,10 +871,6 @@ struct drm_xe_vm_destroy {
* - %DRM_XE_VM_BIND_OP_PREFETCH
*
* and the @flags can be:
- * - %DRM_XE_VM_BIND_FLAG_READONLY
- * - %DRM_XE_VM_BIND_FLAG_IMMEDIATE - Valid on a faulting VM only, do the
- * MAP operation immediately rather than deferring the MAP to the page
- * fault handler.
* - %DRM_XE_VM_BIND_FLAG_NULL - When the NULL flag is set, the page
* tables are setup with a special bit which indicates writes are
* dropped and all reads return zero. In the future, the NULL flags
@@ -967,8 +963,6 @@ struct drm_xe_vm_bind_op {
/** @op: Bind operation to perform */
__u32 op;
-#define DRM_XE_VM_BIND_FLAG_READONLY (1 << 0)
-#define DRM_XE_VM_BIND_FLAG_IMMEDIATE (1 << 1)
#define DRM_XE_VM_BIND_FLAG_NULL (1 << 2)
#define DRM_XE_VM_BIND_FLAG_DUMPABLE (1 << 3)
/** @flags: Bind flags */
@@ -1085,19 +1079,6 @@ struct drm_xe_exec_queue_create {
#define DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY 0
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0
#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT 2
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 4
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 5
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 6
-#define DRM_XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 7
-/* Monitor 128KB contiguous region with 4K sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_128K 0
-/* Monitor 2MB contiguous region with 64KB sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_2M 1
-/* Monitor 16MB contiguous region with 512KB sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_16M 2
-/* Monitor 64MB contiguous region with 2M sub-granularity */
-#define DRM_XE_ACC_GRANULARITY_64M 3
/** @extensions: Pointer to the first extension struct, if any */
__u64 extensions;
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 1/3] drm-uapi/xe: Align header with drm-xe-next Francois Dugast
@ 2024-03-29 15:30 ` Francois Dugast
2024-04-09 17:31 ` Dixit, Ashutosh
2024-03-29 15:30 ` [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE Francois Dugast
` (4 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Francois Dugast @ 2024-03-29 15:30 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
Align with kernel commit ca83f9d20171 ("drm/xe/uapi: Define topology \
types as indexes rather than masks").
This is not a functional change.
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
include/drm-uapi/xe_drm.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index 91ea92035..d8816df83 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -518,9 +518,9 @@ struct drm_xe_query_topology_mask {
/** @gt_id: GT ID the mask is associated with */
__u16 gt_id;
-#define DRM_XE_TOPO_DSS_GEOMETRY (1 << 0)
-#define DRM_XE_TOPO_DSS_COMPUTE (1 << 1)
-#define DRM_XE_TOPO_EU_PER_DSS (1 << 2)
+#define DRM_XE_TOPO_DSS_GEOMETRY 1
+#define DRM_XE_TOPO_DSS_COMPUTE 2
+#define DRM_XE_TOPO_EU_PER_DSS 4
/** @type: type of mask */
__u16 type;
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 1/3] drm-uapi/xe: Align header with drm-xe-next Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks Francois Dugast
@ 2024-03-29 15:30 ` Francois Dugast
2024-04-09 17:37 ` Dixit, Ashutosh
2024-03-29 17:58 ` ✗ Fi.CI.BAT: failure for Align Xe header and restore some uAPI flags Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Francois Dugast @ 2024-03-29 15:30 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
The commit ca4607939 ("drm/xe/uapi: Remove unused flags") is partially
reverted. At the time, flags not used by user space were removed during
cleanup. As a consequence, tests depending on those flags were also
removed. Some of those flags are now needed by user space, so bring them
back and the removed tests as well.
Align with kernel commit ("drm/xe/uapi: Restore flags \
VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE").
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
include/drm-uapi/xe_drm.h | 8 +++
tests/intel-ci/xe-fast-feedback.testlist | 10 ++++
tests/intel/xe_exec_fault_mode.c | 65 ++++++++++++++++++++----
tests/intel/xe_vm.c | 16 ++++--
4 files changed, 85 insertions(+), 14 deletions(-)
diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
index d8816df83..6cbfd8dc3 100644
--- a/include/drm-uapi/xe_drm.h
+++ b/include/drm-uapi/xe_drm.h
@@ -871,6 +871,12 @@ struct drm_xe_vm_destroy {
* - %DRM_XE_VM_BIND_OP_PREFETCH
*
* and the @flags can be:
+ * - %DRM_XE_VM_BIND_FLAG_READONLY - Setup the page tables as read-only
+ * to ensure write protection.
+ * - %DRM_XE_VM_BIND_FLAG_IMMEDIATE - On a faulting VM, do the
+ * MAP operation immediately rather than deferring the MAP to the page
+ * fault handler. This is implied on a non-faulting VM as there is no
+ * fault handler to defer to.
* - %DRM_XE_VM_BIND_FLAG_NULL - When the NULL flag is set, the page
* tables are setup with a special bit which indicates writes are
* dropped and all reads return zero. In the future, the NULL flags
@@ -963,6 +969,8 @@ struct drm_xe_vm_bind_op {
/** @op: Bind operation to perform */
__u32 op;
+#define DRM_XE_VM_BIND_FLAG_READONLY (1 << 0)
+#define DRM_XE_VM_BIND_FLAG_IMMEDIATE (1 << 1)
#define DRM_XE_VM_BIND_FLAG_NULL (1 << 2)
#define DRM_XE_VM_BIND_FLAG_DUMPABLE (1 << 3)
/** @flags: Bind flags */
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index c859acdca..9fda369ac 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -223,6 +223,16 @@ igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
+igt@xe_exec_fault_mode@twice-basic-imm
+igt@xe_exec_fault_mode@twice-userptr-imm
+igt@xe_exec_fault_mode@twice-rebind-imm
+igt@xe_exec_fault_mode@twice-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
igt@xe_exec_fault_mode@twice-basic-prefetch
igt@xe_exec_fault_mode@twice-userptr-prefetch
igt@xe_exec_fault_mode@twice-rebind-prefetch
diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
index 40fe1743e..9f8cda289 100644
--- a/tests/intel/xe_exec_fault_mode.c
+++ b/tests/intel/xe_exec_fault_mode.c
@@ -29,10 +29,11 @@
#define INVALIDATE (0x1 << 2)
#define RACE (0x1 << 3)
#define BIND_EXEC_QUEUE (0x1 << 4)
-#define PREFETCH (0x1 << 5)
-#define INVALID_FAULT (0x1 << 6)
-#define INVALID_VA (0x1 << 7)
-#define ENABLE_SCRATCH (0x1 << 8)
+#define IMMEDIATE (0x1 << 5)
+#define PREFETCH (0x1 << 6)
+#define INVALID_FAULT (0x1 << 7)
+#define INVALID_VA (0x1 << 8)
+#define ENABLE_SCRATCH (0x1 << 9)
/**
* SUBTEST: invalid-va
@@ -75,6 +76,21 @@
* bindexecqueue userptr invalidate
* @bindexecqueue-userptr-invalidate-race:
* bindexecqueue userptr invalidate race
+ * @basic-imm: basic imm
+ * @userptr-imm: userptr imm
+ * @rebind-imm: rebind imm
+ * @userptr-rebind-imm: userptr rebind imm
+ * @userptr-invalidate-imm: userptr invalidate imm
+ * @userptr-invalidate-race-imm: userptr invalidate race imm
+ * @bindexecqueue-imm: bindexecqueue imm
+ * @bindexecqueue-userptr-imm: bindexecqueue userptr imm
+ * @bindexecqueue-rebind-imm: bindexecqueue rebind imm
+ * @bindexecqueue-userptr-rebind-imm:
+ * bindexecqueue userptr rebind imm
+ * @bindexecqueue-userptr-invalidate-imm:
+ * bindexecqueue userptr invalidate imm
+ * @bindexecqueue-userptr-invalidate-race-imm:
+ * bindexecqueue userptr invalidate race imm
* @basic-prefetch: basic prefetch
* @userptr-prefetch: userptr prefetch
* @rebind-prefetch: rebind prefetch
@@ -170,12 +186,26 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
- if (bo)
- xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr, bo_size, sync, 1);
- else
- xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
- to_user_pointer(data), addr,
+ if (flags & IMMEDIATE) {
+ if (bo)
+ xe_vm_bind_async_flags(fd, vm, bind_exec_queues[0], bo, 0,
+ addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_IMMEDIATE);
+ else
+ xe_vm_bind_userptr_async_flags(fd, vm, bind_exec_queues[0],
+ to_user_pointer(data),
+ addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_IMMEDIATE);
+ } else {
+ if (bo)
+ xe_vm_bind_async(fd, vm, bind_exec_queues[0], bo, 0, addr,
bo_size, sync, 1);
+ else
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
+ to_user_pointer(data), addr,
+ bo_size, sync, 1);
+ }
+
#define ONE_SEC MS_TO_NS(1000)
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
bind_exec_queues[0], ONE_SEC);
@@ -336,6 +366,23 @@ igt_main
INVALIDATE },
{ "bindexecqueue-userptr-invalidate-race", BIND_EXEC_QUEUE | USERPTR |
INVALIDATE | RACE },
+ { "basic-imm", IMMEDIATE },
+ { "userptr-imm", IMMEDIATE | USERPTR },
+ { "rebind-imm", IMMEDIATE | REBIND },
+ { "userptr-rebind-imm", IMMEDIATE | USERPTR | REBIND },
+ { "userptr-invalidate-imm", IMMEDIATE | USERPTR | INVALIDATE },
+ { "userptr-invalidate-race-imm", IMMEDIATE | USERPTR |
+ INVALIDATE | RACE },
+ { "bindexecqueue-imm", IMMEDIATE | BIND_EXEC_QUEUE },
+ { "bindexecqueue-userptr-imm", IMMEDIATE | BIND_EXEC_QUEUE | USERPTR },
+ { "bindexecqueue-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE | REBIND },
+ { "bindexecqueue-userptr-rebind-imm", IMMEDIATE | BIND_EXEC_QUEUE |
+ USERPTR | REBIND },
+ { "bindexecqueue-userptr-invalidate-imm", IMMEDIATE | BIND_EXEC_QUEUE |
+ USERPTR | INVALIDATE },
+ { "bindexecqueue-userptr-invalidate-race-imm", IMMEDIATE |
+ BIND_EXEC_QUEUE | USERPTR | INVALIDATE | RACE },
+
{ "basic-prefetch", PREFETCH },
{ "userptr-prefetch", PREFETCH | USERPTR },
{ "rebind-prefetch", PREFETCH | REBIND },
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index ecb2a783c..968f864f6 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -1799,6 +1799,16 @@ static void bind_flag_invalid(int fd)
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
syncobj_reset(fd, &sync[0].handle, 1);
+ bind.bind.flags = DRM_XE_VM_BIND_FLAG_READONLY;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_reset(fd, &sync[0].handle, 1);
+
+ bind.bind.flags = DRM_XE_VM_BIND_FLAG_IMMEDIATE;
+ igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ syncobj_reset(fd, &sync[0].handle, 1);
+
bind.bind.flags = DRM_XE_VM_BIND_FLAG_NULL;
bind.bind.obj = 0;
igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
@@ -1812,11 +1822,7 @@ static void bind_flag_invalid(int fd)
syncobj_reset(fd, &sync[0].handle, 1);
/* Using invalid flags should not work */
- bind.bind.flags = 1 << 0;
- igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
- do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
-
- bind.bind.flags = 1 << 1;
+ bind.bind.flags = 1 << 4;
igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
do_ioctl_err(fd, DRM_IOCTL_XE_VM_BIND, &bind, EINVAL);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ Fi.CI.BAT: failure for Align Xe header and restore some uAPI flags
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
` (2 preceding siblings ...)
2024-03-29 15:30 ` [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE Francois Dugast
@ 2024-03-29 17:58 ` Patchwork
2024-03-29 17:58 ` ✗ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-29 17:58 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 17956 bytes --]
== Series Details ==
Series: Align Xe header and restore some uAPI flags
URL : https://patchwork.freedesktop.org/series/131816/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14508 -> IGTPW_10952
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10952 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10952, 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_10952/index.html
Participating hosts (37 -> 36)
------------------------------
Additional (2): bat-dg1-7 bat-jsl-1
Missing (3): bat-kbl-2 fi-snb-2520m bat-arls-3
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10952:
### IGT changes ###
#### Possible regressions ####
* igt@i915_module_load@load:
- bat-adlm-1: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14508/bat-adlm-1/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-adlm-1/igt@i915_module_load@load.html
Known issues
------------
Here are the changes found in IGTPW_10952 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][4] ([i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@gem_mmap@basic.html
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4077]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@gem_tiled_pread_basic.html
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4079]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@i915_pm_rps@basic-api.html
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@coherency:
- bat-dg2-9: [PASS][15] -> [ABORT][16] ([i915#10366])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14508/bat-dg2-9/igt@i915_selftest@live@coherency.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-9/igt@i915_selftest@live@coherency.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#4212]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#4212]) +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#4215])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#4215] / [i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#4213]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][23] ([i915#4103]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg1-7: NOTRUN -> [SKIP][24] ([i915#4103] / [i915#4213]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#9886])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@kms_dsc@dsc-basic.html
- bat-dg1-7: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#3840])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][28]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][29]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg1-7: NOTRUN -> [SKIP][30]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][31]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][32] ([i915#5274])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][33] ([i915#5274])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-8: NOTRUN -> [SKIP][34] ([i915#5354]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#433])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-dg2-8: NOTRUN -> [SKIP][36] ([i915#9197]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#5354])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#5354])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][39] ([i915#1072] / [i915#9732]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#1072] / [i915#9732]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
- bat-dg2-8: NOTRUN -> [SKIP][41] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][42] ([i915#3555])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][43] ([i915#3555])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][44] ([i915#3555])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg1-7: NOTRUN -> [SKIP][45] ([i915#3555])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][46] ([i915#3708]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-11: NOTRUN -> [SKIP][47] ([i915#3708])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][48] ([i915#3708] / [i915#9197])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][49] ([i915#3708] / [i915#4077]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-11: NOTRUN -> [SKIP][50] ([i915#3708] / [i915#4077]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-8: NOTRUN -> [SKIP][51] ([i915#3708] / [i915#4077]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][52] ([i915#3291] / [i915#3708]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][53] ([i915#3291] / [i915#3708]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- {bat-mtlp-9}: [WARN][54] ([i915#10436]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14508/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html
* igt@kms_force_connector_basic@force-edid:
- bat-dg2-8: [INCOMPLETE][56] ([i915#10583]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14508/bat-dg2-8/igt@kms_force_connector_basic@force-edid.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/bat-dg2-8/igt@kms_force_connector_basic@force-edid.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436
[i915#10583]: https://gitlab.freedesktop.org/drm/intel/issues/10583
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7791 -> IGTPW_10952
CI-20190529: 20190529
CI_DRM_14508: 15fe5f853b066bf84109866c9a1e4bc0bc15faf0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10952: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/index.html
IGT_7791: 7d7be3a56e299d9ad14ac2c6535a7e14b4cfd4df @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_exec_fault_mode@many-basic-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-basic-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-rebind-imm
+igt@xe_exec_fault_mode@many-userptr-imm
+igt@xe_exec_fault_mode@many-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-userptr-rebind-imm
+igt@xe_exec_fault_mode@once-basic-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@once-rebind-imm
+igt@xe_exec_fault_mode@once-userptr-imm
+igt@xe_exec_fault_mode@once-userptr-invalidate-imm
+igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@once-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-basic-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-rebind-imm
+igt@xe_exec_fault_mode@twice-userptr-imm
+igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
+igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@twice-userptr-rebind-imm
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/index.html
[-- Attachment #2: Type: text/html, Size: 22153 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeBAT: failure for Align Xe header and restore some uAPI flags
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
` (3 preceding siblings ...)
2024-03-29 17:58 ` ✗ Fi.CI.BAT: failure for Align Xe header and restore some uAPI flags Patchwork
@ 2024-03-29 17:58 ` Patchwork
2024-04-09 19:44 ` ✓ Fi.CI.BAT: success for Align Xe header and restore some uAPI flags (rev2) Patchwork
2024-04-10 19:15 ` ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-29 17:58 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4201 bytes --]
== Series Details ==
Series: Align Xe header and restore some uAPI flags
URL : https://patchwork.freedesktop.org/series/131816/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7791_BAT -> XEIGTPW_10952_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10952_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10952_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10952_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm (NEW):
- bat-atsm-2: NOTRUN -> [SKIP][1] +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
- bat-adlp-7: NOTRUN -> [SKIP][2] +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm (NEW):
- bat-pvc-2: NOTRUN -> [FAIL][3] +9 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
- bat-dg2-oem2: NOTRUN -> [SKIP][4] +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
New tests
---------
New tests have been introduced between XEIGT_7791_BAT and XEIGTPW_10952_BAT:
### New IGT tests (5) ###
* igt@xe_exec_fault_mode@twice-basic-imm:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_fault_mode@twice-rebind-imm:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_fault_mode@twice-userptr-imm:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- Statuses : 1 fail(s) 3 skip(s)
- Exec time: [0.0, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_10952_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#288]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-adlp-7/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#288]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html
- bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#288]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/bat-atsm-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm.html
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
Build changes
-------------
* IGT: IGT_7791 -> IGTPW_10952
* Linux: xe-1016-96000ec64d7e08436f2cafc89711c907576710f4 -> xe-1017-15fe5f853b066bf84109866c9a1e4bc0bc15faf0
IGTPW_10952: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10952/index.html
IGT_7791: 7d7be3a56e299d9ad14ac2c6535a7e14b4cfd4df @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1016-96000ec64d7e08436f2cafc89711c907576710f4: 96000ec64d7e08436f2cafc89711c907576710f4
xe-1017-15fe5f853b066bf84109866c9a1e4bc0bc15faf0: 15fe5f853b066bf84109866c9a1e4bc0bc15faf0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10952/index.html
[-- Attachment #2: Type: text/html, Size: 5180 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks
2024-03-29 15:30 ` [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks Francois Dugast
@ 2024-04-09 17:31 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2024-04-09 17:31 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Fri, 29 Mar 2024 08:30:57 -0700, Francois Dugast wrote:
>
> Align with kernel commit ca83f9d20171 ("drm/xe/uapi: Define topology \
> types as indexes rather than masks").
>
> This is not a functional change.
Matches defines in drm-xe-next:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index 91ea92035..d8816df83 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -518,9 +518,9 @@ struct drm_xe_query_topology_mask {
> /** @gt_id: GT ID the mask is associated with */
> __u16 gt_id;
>
> -#define DRM_XE_TOPO_DSS_GEOMETRY (1 << 0)
> -#define DRM_XE_TOPO_DSS_COMPUTE (1 << 1)
> -#define DRM_XE_TOPO_EU_PER_DSS (1 << 2)
> +#define DRM_XE_TOPO_DSS_GEOMETRY 1
> +#define DRM_XE_TOPO_DSS_COMPUTE 2
> +#define DRM_XE_TOPO_EU_PER_DSS 4
> /** @type: type of mask */
> __u16 type;
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE
2024-03-29 15:30 ` [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE Francois Dugast
@ 2024-04-09 17:37 ` Dixit, Ashutosh
0 siblings, 0 replies; 10+ messages in thread
From: Dixit, Ashutosh @ 2024-04-09 17:37 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Fri, 29 Mar 2024 08:30:58 -0700, Francois Dugast wrote:
>
Hi Francois,
> The commit ca4607939 ("drm/xe/uapi: Remove unused flags") is partially
> reverted. At the time, flags not used by user space were removed during
> cleanup. As a consequence, tests depending on those flags were also
> removed. Some of those flags are now needed by user space, so bring them
> back and the removed tests as well.
>
> Align with kernel commit ("drm/xe/uapi: Restore flags \
> VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE").
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> ---
> include/drm-uapi/xe_drm.h | 8 +++
> tests/intel-ci/xe-fast-feedback.testlist | 10 ++++
> tests/intel/xe_exec_fault_mode.c | 65 ++++++++++++++++++++----
> tests/intel/xe_vm.c | 16 ++++--
> 4 files changed, 85 insertions(+), 14 deletions(-)
>
> diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h
> index d8816df83..6cbfd8dc3 100644
> --- a/include/drm-uapi/xe_drm.h
> +++ b/include/drm-uapi/xe_drm.h
> @@ -871,6 +871,12 @@ struct drm_xe_vm_destroy {
> * - %DRM_XE_VM_BIND_OP_PREFETCH
> *
> * and the @flags can be:
> + * - %DRM_XE_VM_BIND_FLAG_READONLY - Setup the page tables as read-only
> + * to ensure write protection.
Hmm, this line in the kernel header is "to ensure write protection" so it
doesn't have the period. Maybe it should be fixed before we merge this?
Thanks.
--
Ashutosh
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for Align Xe header and restore some uAPI flags (rev2)
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
` (4 preceding siblings ...)
2024-03-29 17:58 ` ✗ CI.xeBAT: " Patchwork
@ 2024-04-09 19:44 ` Patchwork
2024-04-10 19:15 ` ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-04-09 19:44 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10357 bytes --]
== Series Details ==
Series: Align Xe header and restore some uAPI flags (rev2)
URL : https://patchwork.freedesktop.org/series/131816/
State : success
== Summary ==
CI Bug Log - changes from IGT_7803 -> IGTPW_10992
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/index.html
Participating hosts (38 -> 35)
------------------------------
Additional (1): bat-mtlp-8
Missing (4): fi-glk-j4005 fi-kbl-8809g fi-cfl-8109u bat-arls-3
Known issues
------------
Here are the changes found in IGTPW_10992 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-9: [PASS][2] -> [FAIL][3] ([i915#10378])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
- bat-dg2-8: [PASS][4] -> [FAIL][5] ([i915#10378])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [PASS][11] -> [ABORT][12] ([i915#10594])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#5190])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#4212]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#4213]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#3840] / [i915#9159])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][17]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#5274])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4077] / [i915#9688])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#8809])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3708]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#3708])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-mtlp-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@mman:
- bat-arls-2: [ABORT][24] -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/bat-arls-2/igt@i915_selftest@live@mman.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/bat-arls-2/igt@i915_selftest@live@mman.html
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10594]: https://gitlab.freedesktop.org/drm/intel/issues/10594
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7803 -> IGTPW_10992
CI-20190529: 20190529
CI_DRM_14551: 7be27f645de2f00384b862d2812a90675e8392fa @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10992: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/index.html
IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_exec_fault_mode@many-basic-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-basic-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-rebind-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm
+igt@xe_exec_fault_mode@many-rebind-imm
+igt@xe_exec_fault_mode@many-userptr-imm
+igt@xe_exec_fault_mode@many-userptr-invalidate-imm
+igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@many-userptr-rebind-imm
+igt@xe_exec_fault_mode@once-basic-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@once-rebind-imm
+igt@xe_exec_fault_mode@once-userptr-imm
+igt@xe_exec_fault_mode@once-userptr-invalidate-imm
+igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@once-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-basic-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
+igt@xe_exec_fault_mode@twice-rebind-imm
+igt@xe_exec_fault_mode@twice-userptr-imm
+igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
+igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm
+igt@xe_exec_fault_mode@twice-userptr-rebind-imm
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/index.html
[-- Attachment #2: Type: text/html, Size: 12135 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for Align Xe header and restore some uAPI flags (rev2)
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
` (5 preceding siblings ...)
2024-04-09 19:44 ` ✓ Fi.CI.BAT: success for Align Xe header and restore some uAPI flags (rev2) Patchwork
@ 2024-04-10 19:15 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-04-10 19:15 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92327 bytes --]
== Series Details ==
Series: Align Xe header and restore some uAPI flags (rev2)
URL : https://patchwork.freedesktop.org/series/131816/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7803_full -> IGTPW_10992_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10992_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10992_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_10992/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10992_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_schedule@wide@rcs0:
- shard-tglu: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-8/igt@gem_exec_schedule@wide@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-10/igt@gem_exec_schedule@wide@rcs0.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-edp-1:
- shard-mtlp: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-mtlp-6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-edp-1.html
Known issues
------------
Here are the changes found in IGTPW_10992_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#7701]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#7701])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +14 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#3936])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: NOTRUN -> [FAIL][20] ([i915#6268])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][22] ([i915#1099])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb5/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][27] ([i915#10030] / [i915#7975] / [i915#8213])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [INCOMPLETE][28] ([i915#10513])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][29] ([i915#8898])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb5/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#6334])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][34] ([i915#10386]) +3 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][35] ([i915#10386]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk6/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][40] ([i915#2842]) +3 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][41] ([i915#2842]) +2 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk4/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu: NOTRUN -> [FAIL][46] ([i915#2842])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +13 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [PASS][57] -> [FAIL][58] ([i915#10378])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][61] -> [TIMEOUT][62] ([i915#5493])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][64] ([i915#10378])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#284])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@big-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-3/igt@gem_mmap_gtt@big-copy-xy.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +13 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@gem_pread@bench.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][73] ([i915#2658])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk4/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +11 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4079])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4885])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][83] ([i915#5889])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +12 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4879])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][87] ([i915#3323])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-14/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4958])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4958])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4881]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4881])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][99] ([i915#6227])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk8/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#6621])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#8925])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@i915_pm_rps@thresholds-park@gt0.html
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#8925])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#4387])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#6188])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#5723])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [FAIL][109] ([i915#10031])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][118] -> [FAIL][119] ([i915#5138]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +4 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][127] -> [FAIL][128] ([i915#3743]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +15 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][130]
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-6/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][131] ([i915#4538]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#10656])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +95 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +15 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#10278]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +163 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#10278])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10278]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#10278]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +57 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4087]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#7828]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7116] / [i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3116])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118] / [i915#9424]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#7118] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3555]) +10 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3359])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3359])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3359]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3359]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4103] / [i915#4213]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][161] ([i915#2346])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#9067])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#9067])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-snb: [PASS][165] -> [DMESG-WARN][166] ([i915#10166])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb2/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb4/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#9227])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#9833])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#8588])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3469])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3955])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3469])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3469])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9337])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9337])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#658]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][183] +47 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#8381]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2: NOTRUN -> [SKIP][185] +28 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
- shard-snb: [PASS][187] -> [FAIL][188] ([i915#2122])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9934]) +10 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a2:
- shard-dg2: NOTRUN -> [INCOMPLETE][190] ([i915#6113])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a2.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2:
- shard-dg2: NOTRUN -> [FAIL][192] ([i915#2122])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +5 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#5274])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8708]) +34 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][199] +47 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-snb: [PASS][200] -> [SKIP][201]
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) +24 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3458]) +24 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#1825]) +29 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][206] +38 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +22 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#10433] / [i915#3458])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#10070])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +20 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +32 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1825])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#6118])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#6301])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][218] ([i915#7862]) +1 other test fail
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8806])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#6953] / [i915#9423])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][221] ([i915#8292])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][222] ([i915#8292])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#9423]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#9423]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#9423]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#5176] / [i915#9423]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +15 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +5 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#5235] / [i915#9423]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#5354])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5354]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9812])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#9685])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#9685])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9685])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3361])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3361])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9340])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][240] -> [SKIP][241] ([i915#9519]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9519])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#9519])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#9519])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#9519])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#6524] / [i915#6805])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#6524]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#6524])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9683])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#9683]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9683])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-16/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9683])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9673] / [i915#9732])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +23 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-snb: NOTRUN -> [SKIP][256] +34 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#9688])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-1/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][258] +369 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr-basic:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#9732]) +9 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +25 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +28 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#4884])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#5289]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#3555]) +6 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8623])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][268] -> [FAIL][269] ([i915#9196])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][270] ([i915#9196])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#9906])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#9906])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#2437] / [i915#9412])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#2437] / [i915#9412])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2437])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#2434])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][278] ([i915#9100])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][279] ([i915#6806])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@perf_pmu@frequency@gt0.html
- shard-dg1: NOTRUN -> [FAIL][280] ([i915#6806])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#8516])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#8516]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3708])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#3291] / [i915#3708])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#3708] / [i915#4077])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#3708])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#3708]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#9917]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#4818])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_get_bo_offset@create-get-offsets:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#2575]) +9 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-13/igt@v3d/v3d_get_bo_offset@create-get-offsets.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#2575]) +11 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-3/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#2575])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-7/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +17 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-2/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#7711]) +12 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-15/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#7711]) +6 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-4/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#7711]) +12 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-1/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_bo@used-bo:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7711]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-7/igt@vc4/vc4_wait_bo@used-bo.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][298] ([i915#10513]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-9/igt@gem_eio@kms.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][300] ([i915#2842]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][302] ([i915#2842]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_whisper@basic-normal-all:
- shard-glk: [INCOMPLETE][304] ([i915#9857]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-glk4/igt@gem_exec_whisper@basic-normal-all.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-glk5/igt@gem_exec_whisper@basic-normal-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][306] ([i915#9697] / [i915#9820]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][308] ([i915#7790]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb5/igt@i915_pm_rps@reset.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][310] ([i915#7984]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-mtlp-7/igt@i915_power@sanity.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-6/igt@i915_power@sanity.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][312] ([i915#3743]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2: [INCOMPLETE][314] ([i915#10056]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-dg1: [DMESG-WARN][316] ([i915#10166]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg1-16/igt@kms_cursor_legacy@torture-move@pipe-a.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-18/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1:
- shard-snb: [FAIL][318] ([i915#2122]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb1/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_plane@pixel-format@pipe-a:
- shard-mtlp: [ABORT][320] ([i915#10698]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-a.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-a.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][322] ([i915#4281]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][324] ([i915#9519]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][326] ([i915#9519]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][328] ([i915#5465]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][330] ([i915#9196]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][332] ([i915#9196]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][334] ([i915#9846]) -> [INCOMPLETE][335] ([i915#9364])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@kms:
- shard-dg1: [INCOMPLETE][336] ([i915#10513]) -> [INCOMPLETE][337] ([i915#10513] / [i915#1982])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg1-16/igt@gem_eio@kms.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg1-17/igt@gem_eio@kms.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [INCOMPLETE][338] ([i915#9820] / [i915#9849]) -> [ABORT][339] ([i915#9820])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu: [FAIL][340] ([i915#3591]) -> [WARN][341] ([i915#2681])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [SKIP][342] ([i915#3458]) -> [SKIP][343] ([i915#10433] / [i915#3458])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][344] ([i915#10433] / [i915#3458]) -> [SKIP][345] ([i915#3458])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][346] ([i915#4816]) -> [SKIP][347] ([i915#4070] / [i915#4816])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][348] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][349] ([i915#1072] / [i915#9732]) +2 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2: [SKIP][350] ([i915#1072] / [i915#9732]) -> [SKIP][351] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7803/shard-dg2-8/igt@kms_psr@fbc-psr2-cursor-render.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10056]: https://gitlab.freedesktop.org/drm/intel/issues/10056
[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#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386
[i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656
[i915#10698]: https://gitlab.freedesktop.org/drm/intel/issues/10698
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[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#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[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#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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[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#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[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#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/intel/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[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#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[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#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[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#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[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#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[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#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#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[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_7803 -> IGTPW_10992
CI-20190529: 20190529
CI_DRM_14551: 7be27f645de2f00384b862d2812a90675e8392fa @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10992: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/index.html
IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10992/index.html
[-- Attachment #2: Type: text/html, Size: 113171 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-10 19:15 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-29 15:30 [PATCH i-g-t 0/3] Align Xe header and restore some uAPI flags Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 1/3] drm-uapi/xe: Align header with drm-xe-next Francois Dugast
2024-03-29 15:30 ` [PATCH i-g-t 2/3] drm-uapi/xe: Define topology types as indexes rather than masks Francois Dugast
2024-04-09 17:31 ` Dixit, Ashutosh
2024-03-29 15:30 ` [PATCH i-g-t 3/3] drm-uapi/xe: Restore flags VM_BIND_FLAG_READONLY and VM_BIND_FLAG_IMMEDIATE Francois Dugast
2024-04-09 17:37 ` Dixit, Ashutosh
2024-03-29 17:58 ` ✗ Fi.CI.BAT: failure for Align Xe header and restore some uAPI flags Patchwork
2024-03-29 17:58 ` ✗ CI.xeBAT: " Patchwork
2024-04-09 19:44 ` ✓ Fi.CI.BAT: success for Align Xe header and restore some uAPI flags (rev2) Patchwork
2024-04-10 19:15 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox