* [PATCH v5 1/9] drm/xe: Add properties line to VM snapshot capture
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 2/9] drm/xe: Add "null_sparse" type to VM snap properties Matthew Brost
` (14 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add properties line to VM snapshot capture which includes additional
information about VMA being dumped. This is helpful for debug purposes
but also to build a robust GPU hang replay tool.
The current format is:
[<vma address>]: <permissions>|<type>
Permissions has two options, either "read_only" or "read_write".
Type has two options, either "userptr" or "bo".
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 8ab726289583..880877b10d91 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4047,6 +4047,9 @@ struct xe_vm_snapshot {
struct {
u64 ofs, bo_ofs;
unsigned long len;
+#define XE_VM_SNAP_FLAG_USERPTR BIT(0)
+#define XE_VM_SNAP_FLAG_READ_ONLY BIT(1)
+ unsigned long flags;
struct xe_bo *bo;
void *data;
struct mm_struct *mm;
@@ -4087,6 +4090,8 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
snap->snap[i].ofs = xe_vma_start(vma);
snap->snap[i].len = xe_vma_size(vma);
+ snap->snap[i].flags = xe_vma_read_only(vma) ?
+ XE_VM_SNAP_FLAG_READ_ONLY : 0;
if (bo) {
snap->snap[i].bo = xe_bo_get(bo);
snap->snap[i].bo_ofs = xe_vma_bo_offset(vma);
@@ -4100,6 +4105,7 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
snap->snap[i].data = ERR_PTR(-EFAULT);
snap->snap[i].bo_ofs = xe_vma_userptr(vma);
+ snap->snap[i].flags |= XE_VM_SNAP_FLAG_USERPTR;
} else {
snap->snap[i].data = ERR_PTR(-ENOENT);
}
@@ -4169,6 +4175,12 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
for (i = 0; i < snap->num_snaps; i++) {
drm_printf(p, "[%llx].length: 0x%lx\n", snap->snap[i].ofs, snap->snap[i].len);
+ drm_printf(p, "[%llx].properties: %s|%s\n", snap->snap[i].ofs,
+ snap->snap[i].flags & XE_VM_SNAP_FLAG_READ_ONLY ?
+ "read_only" : "read_write",
+ snap->snap[i].flags & XE_VM_SNAP_FLAG_USERPTR ?
+ "userptr" : "bo");
+
if (IS_ERR(snap->snap[i].data)) {
drm_printf(p, "[%llx].error: %li\n", snap->snap[i].ofs,
PTR_ERR(snap->snap[i].data));
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 2/9] drm/xe: Add "null_sparse" type to VM snap properties
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
2025-11-26 18:59 ` [PATCH v5 1/9] drm/xe: Add properties line to VM snapshot capture Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 3/9] drm/xe: Add mem_region to properties line in VM snapshot capture Matthew Brost
` (13 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add "null_sparse" type to VM snap properties indicating the VMA reads
zero and writes are droppped. This is useful information for debug and
will help build a robust GPU hang replay tool.
The current format is:
[<vma address>]: <permissions>|<type>
Permissions has two options, either "read_only" or "read_write".
Type has three options, either "userptr", "null_sparse", or "bo".
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 880877b10d91..95bf328382bb 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4049,6 +4049,7 @@ struct xe_vm_snapshot {
unsigned long len;
#define XE_VM_SNAP_FLAG_USERPTR BIT(0)
#define XE_VM_SNAP_FLAG_READ_ONLY BIT(1)
+#define XE_VM_SNAP_FLAG_IS_NULL BIT(2)
unsigned long flags;
struct xe_bo *bo;
void *data;
@@ -4106,6 +4107,8 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
snap->snap[i].bo_ofs = xe_vma_userptr(vma);
snap->snap[i].flags |= XE_VM_SNAP_FLAG_USERPTR;
+ } else if (xe_vma_is_null(vma)) {
+ snap->snap[i].flags |= XE_VM_SNAP_FLAG_IS_NULL;
} else {
snap->snap[i].data = ERR_PTR(-ENOENT);
}
@@ -4126,7 +4129,8 @@ void xe_vm_snapshot_capture_delayed(struct xe_vm_snapshot *snap)
struct xe_bo *bo = snap->snap[i].bo;
int err;
- if (IS_ERR(snap->snap[i].data))
+ if (IS_ERR(snap->snap[i].data) ||
+ snap->snap[i].flags & XE_VM_SNAP_FLAG_IS_NULL)
continue;
snap->snap[i].data = kvmalloc(snap->snap[i].len, GFP_USER);
@@ -4178,6 +4182,8 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
drm_printf(p, "[%llx].properties: %s|%s\n", snap->snap[i].ofs,
snap->snap[i].flags & XE_VM_SNAP_FLAG_READ_ONLY ?
"read_only" : "read_write",
+ snap->snap[i].flags & XE_VM_SNAP_FLAG_IS_NULL ?
+ "null_sparse" :
snap->snap[i].flags & XE_VM_SNAP_FLAG_USERPTR ?
"userptr" : "bo");
@@ -4187,6 +4193,9 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
continue;
}
+ if (snap->snap[i].flags & XE_VM_SNAP_FLAG_IS_NULL)
+ continue;
+
drm_printf(p, "[%llx].data: ", snap->snap[i].ofs);
for (j = 0; j < snap->snap[i].len; j += sizeof(u32)) {
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 3/9] drm/xe: Add mem_region to properties line in VM snapshot capture
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
2025-11-26 18:59 ` [PATCH v5 1/9] drm/xe: Add properties line to VM snapshot capture Matthew Brost
2025-11-26 18:59 ` [PATCH v5 2/9] drm/xe: Add "null_sparse" type to VM snap properties Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 4/9] drm/xe: Add pat_index " Matthew Brost
` (12 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add memory region to properties line in VM snapshot capture indicating
where the memory is located. The memory region corresponds to regions in
the uAPI. This is useful information for debug and will help build a
robust GPU hang replay tool.
The current format is:
[<vma address>]: <permissions>|<type>|mem_region=0x%x
Permissions has two options, either "read_only" or "read_write".
Type has three options, either "userptr", "null_sparse", or "bo".
Memory region is a bit mask of where the memory is located.
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 95bf328382bb..f2cf95d23bd0 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4051,6 +4051,7 @@ struct xe_vm_snapshot {
#define XE_VM_SNAP_FLAG_READ_ONLY BIT(1)
#define XE_VM_SNAP_FLAG_IS_NULL BIT(2)
unsigned long flags;
+ int uapi_mem_region;
struct xe_bo *bo;
void *data;
struct mm_struct *mm;
@@ -4096,6 +4097,18 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
if (bo) {
snap->snap[i].bo = xe_bo_get(bo);
snap->snap[i].bo_ofs = xe_vma_bo_offset(vma);
+ switch (bo->ttm.resource->mem_type) {
+ case XE_PL_SYSTEM:
+ case XE_PL_TT:
+ snap->snap[i].uapi_mem_region = 0;
+ break;
+ case XE_PL_VRAM0:
+ snap->snap[i].uapi_mem_region = 1;
+ break;
+ case XE_PL_VRAM1:
+ snap->snap[i].uapi_mem_region = 2;
+ break;
+ }
} else if (xe_vma_is_userptr(vma)) {
struct mm_struct *mm =
to_userptr_vma(vma)->userptr.notifier.mm;
@@ -4107,10 +4120,13 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
snap->snap[i].bo_ofs = xe_vma_userptr(vma);
snap->snap[i].flags |= XE_VM_SNAP_FLAG_USERPTR;
+ snap->snap[i].uapi_mem_region = 0;
} else if (xe_vma_is_null(vma)) {
snap->snap[i].flags |= XE_VM_SNAP_FLAG_IS_NULL;
+ snap->snap[i].uapi_mem_region = -1;
} else {
snap->snap[i].data = ERR_PTR(-ENOENT);
+ snap->snap[i].uapi_mem_region = -1;
}
i++;
}
@@ -4179,13 +4195,16 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
for (i = 0; i < snap->num_snaps; i++) {
drm_printf(p, "[%llx].length: 0x%lx\n", snap->snap[i].ofs, snap->snap[i].len);
- drm_printf(p, "[%llx].properties: %s|%s\n", snap->snap[i].ofs,
+ drm_printf(p, "[%llx].properties: %s|%s|mem_region=0x%lx\n",
+ snap->snap[i].ofs,
snap->snap[i].flags & XE_VM_SNAP_FLAG_READ_ONLY ?
"read_only" : "read_write",
snap->snap[i].flags & XE_VM_SNAP_FLAG_IS_NULL ?
"null_sparse" :
snap->snap[i].flags & XE_VM_SNAP_FLAG_USERPTR ?
- "userptr" : "bo");
+ "userptr" : "bo",
+ snap->snap[i].uapi_mem_region == -1 ? 0 :
+ BIT(snap->snap[i].uapi_mem_region));
if (IS_ERR(snap->snap[i].data)) {
drm_printf(p, "[%llx].error: %li\n", snap->snap[i].ofs,
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 4/9] drm/xe: Add pat_index to properties line in VM snapshot capture
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (2 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 3/9] drm/xe: Add mem_region to properties line in VM snapshot capture Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 5/9] drm/xe: Add cpu_caching " Matthew Brost
` (11 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add pat index to properties line in VM snapshot capture indicating
the VMA caching properites. This is useful information for debug and
will help build a robust GPU hang replay tool.
The current format is:
[<vma address>]: <permissions>|<type>|mem_region=0x%x|pat_index=%d
Permissions has two options, either "read_only" or "read_write".
Type has three options, either "userptr", "null_sparse", or "bo".
Memory region is a bit mask of where the memory is located.
Pat index corresponds to the value setup upon VM bind.
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index f2cf95d23bd0..b298953d2eed 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4052,6 +4052,7 @@ struct xe_vm_snapshot {
#define XE_VM_SNAP_FLAG_IS_NULL BIT(2)
unsigned long flags;
int uapi_mem_region;
+ int pat_index;
struct xe_bo *bo;
void *data;
struct mm_struct *mm;
@@ -4094,6 +4095,7 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
snap->snap[i].len = xe_vma_size(vma);
snap->snap[i].flags = xe_vma_read_only(vma) ?
XE_VM_SNAP_FLAG_READ_ONLY : 0;
+ snap->snap[i].pat_index = vma->attr.pat_index;
if (bo) {
snap->snap[i].bo = xe_bo_get(bo);
snap->snap[i].bo_ofs = xe_vma_bo_offset(vma);
@@ -4195,7 +4197,7 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
for (i = 0; i < snap->num_snaps; i++) {
drm_printf(p, "[%llx].length: 0x%lx\n", snap->snap[i].ofs, snap->snap[i].len);
- drm_printf(p, "[%llx].properties: %s|%s|mem_region=0x%lx\n",
+ drm_printf(p, "[%llx].properties: %s|%s|mem_region=0x%lx|pat_index=%d\n",
snap->snap[i].ofs,
snap->snap[i].flags & XE_VM_SNAP_FLAG_READ_ONLY ?
"read_only" : "read_write",
@@ -4204,7 +4206,8 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
snap->snap[i].flags & XE_VM_SNAP_FLAG_USERPTR ?
"userptr" : "bo",
snap->snap[i].uapi_mem_region == -1 ? 0 :
- BIT(snap->snap[i].uapi_mem_region));
+ BIT(snap->snap[i].uapi_mem_region),
+ snap->snap[i].pat_index);
if (IS_ERR(snap->snap[i].data)) {
drm_printf(p, "[%llx].error: %li\n", snap->snap[i].ofs,
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 5/9] drm/xe: Add cpu_caching to properties line in VM snapshot capture
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (3 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 4/9] drm/xe: Add pat_index " Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 6/9] drm/xe: Add VM.uapi_flags to " Matthew Brost
` (10 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add CPU caching to properties line in VM snapshot capture indicating
the BO caching properites. This is useful information for debug and
will help build a robust GPU hang replay tool.
The current format is:
[<vma address>]: <permissions>|<type>|mem_region=0x%x|pat_index=%d|cpu_caching=%d
Permissions has two options, either "read_only" or "read_write".
Type has three options, either "userptr", "null_sparse", or "bo".
Memory region is a bit mask of where the memory is located.
Pat index corresponds to the value setup upon VM bind.
CPU caching corresponds to the value of BO setup upon creation.
v2:
- Save off cpu_caching value rather than looking at BO (Carlos)
v4:
- Fix NULL ptr dereference (Carlos)
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index b298953d2eed..8bf3f9d3d644 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4053,6 +4053,7 @@ struct xe_vm_snapshot {
unsigned long flags;
int uapi_mem_region;
int pat_index;
+ int cpu_caching;
struct xe_bo *bo;
void *data;
struct mm_struct *mm;
@@ -4097,6 +4098,7 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
XE_VM_SNAP_FLAG_READ_ONLY : 0;
snap->snap[i].pat_index = vma->attr.pat_index;
if (bo) {
+ snap->snap[i].cpu_caching = bo->cpu_caching;
snap->snap[i].bo = xe_bo_get(bo);
snap->snap[i].bo_ofs = xe_vma_bo_offset(vma);
switch (bo->ttm.resource->mem_type) {
@@ -4197,7 +4199,7 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
for (i = 0; i < snap->num_snaps; i++) {
drm_printf(p, "[%llx].length: 0x%lx\n", snap->snap[i].ofs, snap->snap[i].len);
- drm_printf(p, "[%llx].properties: %s|%s|mem_region=0x%lx|pat_index=%d\n",
+ drm_printf(p, "[%llx].properties: %s|%s|mem_region=0x%lx|pat_index=%d|cpu_caching=%d\n",
snap->snap[i].ofs,
snap->snap[i].flags & XE_VM_SNAP_FLAG_READ_ONLY ?
"read_only" : "read_write",
@@ -4207,7 +4209,8 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
"userptr" : "bo",
snap->snap[i].uapi_mem_region == -1 ? 0 :
BIT(snap->snap[i].uapi_mem_region),
- snap->snap[i].pat_index);
+ snap->snap[i].pat_index,
+ snap->snap[i].cpu_caching);
if (IS_ERR(snap->snap[i].data)) {
drm_printf(p, "[%llx].error: %li\n", snap->snap[i].ofs,
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 6/9] drm/xe: Add VM.uapi_flags to VM snapshot capture
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (4 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 5/9] drm/xe: Add cpu_caching " Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE Matthew Brost
` (9 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add VM.uapi_flags to VM snapshot capture VM snapshot capture. This is
useful information for debug and will help build a robust GPU hang
replay tool.
The current format is:
VM.uapi_flags: 0x%x
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_vm.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 8bf3f9d3d644..00ffd3f03983 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -4043,6 +4043,7 @@ int xe_vm_validate_protected(struct xe_vm *vm)
}
struct xe_vm_snapshot {
+ int uapi_flags;
unsigned long num_snaps;
struct {
u64 ofs, bo_ofs;
@@ -4082,6 +4083,13 @@ struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm)
goto out_unlock;
}
+ if (vm->flags & XE_VM_FLAG_FAULT_MODE)
+ snap->uapi_flags |= DRM_XE_VM_CREATE_FLAG_FAULT_MODE;
+ if (vm->flags & XE_VM_FLAG_LR_MODE)
+ snap->uapi_flags |= DRM_XE_VM_CREATE_FLAG_LR_MODE;
+ if (vm->flags & XE_VM_FLAG_SCRATCH_PAGE)
+ snap->uapi_flags |= DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE;
+
snap->num_snaps = num_snaps;
i = 0;
drm_gpuvm_for_each_va(gpuva, &vm->gpuvm) {
@@ -4196,6 +4204,7 @@ void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p)
return;
}
+ drm_printf(p, "VM.uapi_flags: 0x%x\n", snap->uapi_flags);
for (i = 0; i < snap->num_snaps; i++) {
drm_printf(p, "[%llx].length: 0x%lx\n", snap->snap[i].ofs, snap->snap[i].len);
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (5 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 6/9] drm/xe: Add VM.uapi_flags to " Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 20:44 ` Souza, Jose
2025-11-26 18:59 ` [PATCH v5 8/9] drm/xe: Add replay_offset and replay_length lines to LRC HWCTX snapshot Matthew Brost
` (8 subsequent siblings)
15 siblings, 1 reply; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which accepts a user pointer
to populate the exec queue state so that a GPU hang can be replayed via
a Mesa tool.
v2: Update the value for HANG_REPLAY_STATE flag
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Carlos Santa <carlos.santa@intel-corp-partner.google.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
include/uapi/drm/xe_drm.h | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
index 47853659a705..37881b1eb6ba 100644
--- a/include/uapi/drm/xe_drm.h
+++ b/include/uapi/drm/xe_drm.h
@@ -210,8 +210,12 @@ struct drm_xe_ext_set_property {
/** @pad: MBZ */
__u32 pad;
- /** @value: property value */
- __u64 value;
+ union {
+ /** @value: property value */
+ __u64 value;
+ /** @ptr: pointer to user value */
+ __u64 ptr;
+ };
/** @reserved: Reserved */
__u64 reserved[2];
@@ -1292,6 +1296,7 @@ struct drm_xe_exec_queue_create {
#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_PXP_TYPE 2
+#define DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE 3
/** @extensions: Pointer to the first extension struct, if any */
__u64 extensions;
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
2025-11-26 18:59 ` [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE Matthew Brost
@ 2025-11-26 20:44 ` Souza, Jose
2025-12-01 17:59 ` Rodrigo Vivi
0 siblings, 1 reply; 19+ messages in thread
From: Souza, Jose @ 2025-11-26 20:44 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Brost, Matthew
On Wed, 2025-11-26 at 10:59 -0800, Matthew Brost wrote:
> Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which accepts a user
> pointer
> to populate the exec queue state so that a GPU hang can be replayed
> via
> a Mesa tool.
>
> v2: Update the value for HANG_REPLAY_STATE flag
>
Acked-by: José Roberto de Souza <jose.souza@intel.com>
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Carlos Santa
> <carlos.santa@intel-corp-partner.google.com>
> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> ---
> include/uapi/drm/xe_drm.h | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
> index 47853659a705..37881b1eb6ba 100644
> --- a/include/uapi/drm/xe_drm.h
> +++ b/include/uapi/drm/xe_drm.h
> @@ -210,8 +210,12 @@ struct drm_xe_ext_set_property {
> /** @pad: MBZ */
> __u32 pad;
>
> - /** @value: property value */
> - __u64 value;
> + union {
> + /** @value: property value */
> + __u64 value;
> + /** @ptr: pointer to user value */
> + __u64 ptr;
> + };
>
> /** @reserved: Reserved */
> __u64 reserved[2];
> @@ -1292,6 +1296,7 @@ struct drm_xe_exec_queue_create {
> #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_PXP_TYPE 2
> +#define DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE 3
> /** @extensions: Pointer to the first extension struct, if
> any */
> __u64 extensions;
>
^ permalink raw reply [flat|nested] 19+ messages in thread* Re: [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
2025-11-26 20:44 ` Souza, Jose
@ 2025-12-01 17:59 ` Rodrigo Vivi
0 siblings, 0 replies; 19+ messages in thread
From: Rodrigo Vivi @ 2025-12-01 17:59 UTC (permalink / raw)
To: Souza, Jose; +Cc: intel-xe@lists.freedesktop.org, Brost, Matthew
On Wed, Nov 26, 2025 at 08:44:51PM +0000, Souza, Jose wrote:
> On Wed, 2025-11-26 at 10:59 -0800, Matthew Brost wrote:
> > Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which accepts a user
> > pointer
> > to populate the exec queue state so that a GPU hang can be replayed
> > via
> > a Mesa tool.
> >
> > v2: Update the value for HANG_REPLAY_STATE flag
> >
>
> Acked-by: José Roberto de Souza <jose.souza@intel.com>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> > Cc: José Roberto de Souza <jose.souza@intel.com>
> > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > Signed-off-by: Carlos Santa
> > <carlos.santa@intel-corp-partner.google.com>
> > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > ---
> > include/uapi/drm/xe_drm.h | 9 +++++++--
> > 1 file changed, 7 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/uapi/drm/xe_drm.h b/include/uapi/drm/xe_drm.h
> > index 47853659a705..37881b1eb6ba 100644
> > --- a/include/uapi/drm/xe_drm.h
> > +++ b/include/uapi/drm/xe_drm.h
> > @@ -210,8 +210,12 @@ struct drm_xe_ext_set_property {
> > /** @pad: MBZ */
> > __u32 pad;
> >
> > - /** @value: property value */
> > - __u64 value;
> > + union {
> > + /** @value: property value */
> > + __u64 value;
> > + /** @ptr: pointer to user value */
> > + __u64 ptr;
> > + };
> >
> > /** @reserved: Reserved */
> > __u64 reserved[2];
> > @@ -1292,6 +1296,7 @@ struct drm_xe_exec_queue_create {
> > #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_PXP_TYPE 2
> > +#define DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE 3
> > /** @extensions: Pointer to the first extension struct, if
> > any */
> > __u64 extensions;
> >
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v5 8/9] drm/xe: Add replay_offset and replay_length lines to LRC HWCTX snapshot
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (6 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 7/9] drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 18:59 ` [PATCH v5 9/9] drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE Matthew Brost
` (7 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Add replay_offset and replay_length lines to LRC HWCTX snapshot with the
idea being this information can be used extract the data which needs to
be pass to exec queue extension DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
so GPU hang can be replayed via a Mesa tool.
The additional lines look like:
[HWCTX].replay_offset: 0x%x
[HWCTX].replay_length: 0x%x
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 8 ++++++++
drivers/gpu/drm/xe/xe_lrc.h | 1 +
drivers/gpu/drm/xe/xe_lrc_types.h | 3 +++
3 files changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index b5083c99dd50..2deca095607c 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1402,6 +1402,9 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
kref_init(&lrc->refcount);
lrc->gt = gt;
+ lrc->replay_size = xe_gt_lrc_size(gt, hwe->class);
+ if (xe_gt_has_indirect_ring_state(gt))
+ lrc->replay_size -= LRC_INDIRECT_RING_STATE_SIZE;
lrc->size = lrc_size;
lrc->flags = 0;
lrc->ring.size = ring_size;
@@ -2235,6 +2238,8 @@ struct xe_lrc_snapshot *xe_lrc_snapshot_capture(struct xe_lrc *lrc)
snapshot->lrc_bo = xe_bo_get(lrc->bo);
snapshot->lrc_offset = xe_lrc_pphwsp_offset(lrc);
snapshot->lrc_size = lrc->size;
+ snapshot->replay_offset = 0;
+ snapshot->replay_size = lrc->replay_size;
snapshot->lrc_snapshot = NULL;
snapshot->ctx_timestamp = lower_32_bits(xe_lrc_ctx_timestamp(lrc));
snapshot->ctx_job_timestamp = xe_lrc_ctx_job_timestamp(lrc);
@@ -2305,6 +2310,9 @@ void xe_lrc_snapshot_print(struct xe_lrc_snapshot *snapshot, struct drm_printer
}
drm_printf(p, "\n\t[HWCTX].length: 0x%lx\n", snapshot->lrc_size - LRC_PPHWSP_SIZE);
+ drm_printf(p, "\n\t[HWCTX].replay_offset: 0x%lx\n", snapshot->replay_offset);
+ drm_printf(p, "\n\t[HWCTX].replay_length: 0x%lx\n", snapshot->replay_size);
+
drm_puts(p, "\t[HWCTX].data: ");
for (; i < snapshot->lrc_size; i += sizeof(u32)) {
u32 *val = snapshot->lrc_snapshot + i;
diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h
index 2fb628da5c43..c3288625d0c7 100644
--- a/drivers/gpu/drm/xe/xe_lrc.h
+++ b/drivers/gpu/drm/xe/xe_lrc.h
@@ -23,6 +23,7 @@ struct xe_lrc_snapshot {
struct xe_bo *lrc_bo;
void *lrc_snapshot;
unsigned long lrc_size, lrc_offset;
+ unsigned long replay_size, replay_offset;
u32 context_desc;
u32 ring_addr;
diff --git a/drivers/gpu/drm/xe/xe_lrc_types.h b/drivers/gpu/drm/xe/xe_lrc_types.h
index e9883706e004..a4373d280c39 100644
--- a/drivers/gpu/drm/xe/xe_lrc_types.h
+++ b/drivers/gpu/drm/xe/xe_lrc_types.h
@@ -25,6 +25,9 @@ struct xe_lrc {
/** @size: size of the lrc and optional indirect ring state */
u32 size;
+ /** @replay_size: Size LRC needed for replaying a hang */
+ u32 replay_size;
+
/** @gt: gt which this LRC belongs to */
struct xe_gt *gt;
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH v5 9/9] drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (7 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 8/9] drm/xe: Add replay_offset and replay_length lines to LRC HWCTX snapshot Matthew Brost
@ 2025-11-26 18:59 ` Matthew Brost
2025-11-26 19:06 ` ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev5) Patchwork
` (6 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-11-26 18:59 UTC (permalink / raw)
To: intel-xe
Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which sets the exec
queue default state to user data passed in. The intent is for a Mesa
tool to use this replay GPU hangs.
v2:
- Enable the flag DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
- Fix the page size math calculation to avoid a crash
v4:
- Use vmemdup_user (Maarten)
- Copy default state first into LRC, then replay state (Testing, Carlos)
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
drivers/gpu/drm/xe/xe_exec_queue.c | 26 +++++++++++++--
drivers/gpu/drm/xe/xe_exec_queue_types.h | 3 ++
drivers/gpu/drm/xe/xe_execlist.c | 2 +-
drivers/gpu/drm/xe/xe_lrc.c | 42 ++++++++++++++++--------
drivers/gpu/drm/xe/xe_lrc.h | 3 +-
5 files changed, 58 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 8724f8de67e2..226d07a3d852 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -79,6 +79,7 @@ static void __xe_exec_queue_free(struct xe_exec_queue *q)
if (q->xef)
xe_file_put(q->xef);
+ kvfree(q->replay_state);
kfree(q);
}
@@ -225,8 +226,8 @@ static int __xe_exec_queue_init(struct xe_exec_queue *q, u32 exec_queue_flags)
struct xe_lrc *lrc;
xe_gt_sriov_vf_wait_valid_ggtt(q->gt);
- lrc = xe_lrc_create(q->hwe, q->vm, xe_lrc_ring_size(),
- q->msix_vec, flags);
+ lrc = xe_lrc_create(q->hwe, q->vm, q->replay_state,
+ xe_lrc_ring_size(), q->msix_vec, flags);
if (IS_ERR(lrc)) {
err = PTR_ERR(lrc);
goto err_lrc;
@@ -567,6 +568,23 @@ exec_queue_set_pxp_type(struct xe_device *xe, struct xe_exec_queue *q, u64 value
return xe_pxp_exec_queue_set_type(xe->pxp, q, DRM_XE_PXP_TYPE_HWDRM);
}
+static int exec_queue_set_hang_replay_state(struct xe_device *xe,
+ struct xe_exec_queue *q,
+ u64 value)
+{
+ size_t size = xe_gt_lrc_hang_replay_size(q->gt, q->class);
+ u64 __user *address = u64_to_user_ptr(value);
+ void *ptr;
+
+ ptr = vmemdup_user(address, size);
+ if (XE_IOCTL_DBG(xe, IS_ERR(ptr)))
+ return PTR_ERR(ptr);
+
+ q->replay_state = ptr;
+
+ return 0;
+}
+
typedef int (*xe_exec_queue_set_property_fn)(struct xe_device *xe,
struct xe_exec_queue *q,
u64 value);
@@ -575,6 +593,7 @@ static const xe_exec_queue_set_property_fn exec_queue_set_property_funcs[] = {
[DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY] = exec_queue_set_priority,
[DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE] = exec_queue_set_timeslice,
[DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE] = exec_queue_set_pxp_type,
+ [DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE] = exec_queue_set_hang_replay_state,
};
static int exec_queue_user_ext_set_property(struct xe_device *xe,
@@ -595,7 +614,8 @@ static int exec_queue_user_ext_set_property(struct xe_device *xe,
XE_IOCTL_DBG(xe, ext.pad) ||
XE_IOCTL_DBG(xe, ext.property != DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY &&
ext.property != DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE &&
- ext.property != DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE))
+ ext.property != DRM_XE_EXEC_QUEUE_SET_PROPERTY_PXP_TYPE &&
+ ext.property != DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE))
return -EINVAL;
idx = array_index_nospec(ext.property, ARRAY_SIZE(exec_queue_set_property_funcs));
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 771ffe35cd0c..3ba10632dcd6 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -167,6 +167,9 @@ struct xe_exec_queue {
/** @ufence_timeline_value: User fence timeline value */
u64 ufence_timeline_value;
+ /** @replay_state: GPU hang replay state */
+ void *replay_state;
+
/** @ops: submission backend exec queue operations */
const struct xe_exec_queue_ops *ops;
diff --git a/drivers/gpu/drm/xe/xe_execlist.c b/drivers/gpu/drm/xe/xe_execlist.c
index 769d05517f93..46c17a18a3f4 100644
--- a/drivers/gpu/drm/xe/xe_execlist.c
+++ b/drivers/gpu/drm/xe/xe_execlist.c
@@ -269,7 +269,7 @@ struct xe_execlist_port *xe_execlist_port_create(struct xe_device *xe,
port->hwe = hwe;
- port->lrc = xe_lrc_create(hwe, NULL, SZ_16K, XE_IRQ_DEFAULT_MSIX, 0);
+ port->lrc = xe_lrc_create(hwe, NULL, NULL, SZ_16K, XE_IRQ_DEFAULT_MSIX, 0);
if (IS_ERR(port->lrc)) {
err = PTR_ERR(port->lrc);
goto err;
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index 2deca095607c..a05060f75e7e 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -91,13 +91,19 @@ gt_engine_needs_indirect_ctx(struct xe_gt *gt, enum xe_engine_class class)
return false;
}
-size_t xe_gt_lrc_size(struct xe_gt *gt, enum xe_engine_class class)
+/**
+ * xe_gt_lrc_hang_replay_size() - Hang replay size
+ * @gt: The GT
+ * @class: Hardware engine class
+ *
+ * Determine size of GPU hang replay state for a GT and hardware engine class.
+ *
+ * Return: Size of GPU hang replay size
+ */
+size_t xe_gt_lrc_hang_replay_size(struct xe_gt *gt, enum xe_engine_class class)
{
struct xe_device *xe = gt_to_xe(gt);
- size_t size;
-
- /* Per-process HW status page (PPHWSP) */
- size = LRC_PPHWSP_SIZE;
+ size_t size = 0;
/* Engine context image */
switch (class) {
@@ -123,11 +129,18 @@ size_t xe_gt_lrc_size(struct xe_gt *gt, enum xe_engine_class class)
size += 1 * SZ_4K;
}
+ return size;
+}
+
+size_t xe_gt_lrc_size(struct xe_gt *gt, enum xe_engine_class class)
+{
+ size_t size = xe_gt_lrc_hang_replay_size(gt, class);
+
/* Add indirect ring state page */
if (xe_gt_has_indirect_ring_state(gt))
size += LRC_INDIRECT_RING_STATE_SIZE;
- return size;
+ return size + LRC_PPHWSP_SIZE;
}
/*
@@ -1387,7 +1400,8 @@ setup_indirect_ctx(struct xe_lrc *lrc, struct xe_hw_engine *hwe)
}
static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
- struct xe_vm *vm, u32 ring_size, u16 msix_vec,
+ struct xe_vm *vm, void *replay_state, u32 ring_size,
+ u16 msix_vec,
u32 init_flags)
{
struct xe_gt *gt = hwe->gt;
@@ -1402,9 +1416,7 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
kref_init(&lrc->refcount);
lrc->gt = gt;
- lrc->replay_size = xe_gt_lrc_size(gt, hwe->class);
- if (xe_gt_has_indirect_ring_state(gt))
- lrc->replay_size -= LRC_INDIRECT_RING_STATE_SIZE;
+ lrc->replay_size = xe_gt_lrc_hang_replay_size(gt, hwe->class);
lrc->size = lrc_size;
lrc->flags = 0;
lrc->ring.size = ring_size;
@@ -1441,11 +1453,14 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
* scratch.
*/
map = __xe_lrc_pphwsp_map(lrc);
- if (gt->default_lrc[hwe->class]) {
+ if (gt->default_lrc[hwe->class] || replay_state) {
xe_map_memset(xe, &map, 0, 0, LRC_PPHWSP_SIZE); /* PPHWSP */
xe_map_memcpy_to(xe, &map, LRC_PPHWSP_SIZE,
gt->default_lrc[hwe->class] + LRC_PPHWSP_SIZE,
lrc_size - LRC_PPHWSP_SIZE);
+ if (replay_state)
+ xe_map_memcpy_to(xe, &map, LRC_PPHWSP_SIZE,
+ replay_state, lrc->replay_size);
} else {
void *init_data = empty_lrc_data(hwe);
@@ -1553,6 +1568,7 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
* xe_lrc_create - Create a LRC
* @hwe: Hardware Engine
* @vm: The VM (address space)
+ * @replay_state: GPU hang replay state
* @ring_size: LRC ring size
* @msix_vec: MSI-X interrupt vector (for platforms that support it)
* @flags: LRC initialization flags
@@ -1563,7 +1579,7 @@ static int xe_lrc_init(struct xe_lrc *lrc, struct xe_hw_engine *hwe,
* upon failure.
*/
struct xe_lrc *xe_lrc_create(struct xe_hw_engine *hwe, struct xe_vm *vm,
- u32 ring_size, u16 msix_vec, u32 flags)
+ void *replay_state, u32 ring_size, u16 msix_vec, u32 flags)
{
struct xe_lrc *lrc;
int err;
@@ -1572,7 +1588,7 @@ struct xe_lrc *xe_lrc_create(struct xe_hw_engine *hwe, struct xe_vm *vm,
if (!lrc)
return ERR_PTR(-ENOMEM);
- err = xe_lrc_init(lrc, hwe, vm, ring_size, msix_vec, flags);
+ err = xe_lrc_init(lrc, hwe, vm, replay_state, ring_size, msix_vec, flags);
if (err) {
kfree(lrc);
return ERR_PTR(err);
diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h
index c3288625d0c7..a32472b92242 100644
--- a/drivers/gpu/drm/xe/xe_lrc.h
+++ b/drivers/gpu/drm/xe/xe_lrc.h
@@ -50,7 +50,7 @@ struct xe_lrc_snapshot {
#define XE_LRC_CREATE_USER_CTX BIT(2)
struct xe_lrc *xe_lrc_create(struct xe_hw_engine *hwe, struct xe_vm *vm,
- u32 ring_size, u16 msix_vec, u32 flags);
+ void *replay_state, u32 ring_size, u16 msix_vec, u32 flags);
void xe_lrc_destroy(struct kref *ref);
/**
@@ -87,6 +87,7 @@ static inline size_t xe_lrc_ring_size(void)
return SZ_16K;
}
+size_t xe_gt_lrc_hang_replay_size(struct xe_gt *gt, enum xe_engine_class class);
size_t xe_gt_lrc_size(struct xe_gt *gt, enum xe_engine_class class);
u32 xe_lrc_pphwsp_offset(struct xe_lrc *lrc);
u32 xe_lrc_regs_offset(struct xe_lrc *lrc);
--
2.34.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev5)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (8 preceding siblings ...)
2025-11-26 18:59 ` [PATCH v5 9/9] drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE Matthew Brost
@ 2025-11-26 19:06 ` Patchwork
2025-11-26 19:07 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-26 19:06 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev5)
URL : https://patchwork.freedesktop.org/series/143868/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
2de9a3901bc28757c7906b454717b64e2a214021
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit fcbb4d13708a3c5b5f6e3c66f717964e1c0d32a2
Author: Matthew Brost <matthew.brost@intel.com>
Date: Wed Nov 26 10:59:52 2025 -0800
drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which sets the exec
queue default state to user data passed in. The intent is for a Mesa
tool to use this replay GPU hangs.
v2:
- Enable the flag DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
- Fix the page size math calculation to avoid a crash
v4:
- Use vmemdup_user (Maarten)
- Copy default state first into LRC, then replay state (Testing, Carlos)
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
+ /mt/dim checkpatch e41f42483c6f784fce3deb5eca0931bcbffb01df drm-intel
1379886887c7 drm/xe: Add properties line to VM snapshot capture
739ea683e937 drm/xe: Add "null_sparse" type to VM snap properties
46ff4c6807e1 drm/xe: Add mem_region to properties line in VM snapshot capture
dcdcb7f73044 drm/xe: Add pat_index to properties line in VM snapshot capture
fa7b3b639e11 drm/xe: Add cpu_caching to properties line in VM snapshot capture
-:16: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#16:
[<vma address>]: <permissions>|<type>|mem_region=0x%x|pat_index=%d|cpu_caching=%d
total: 0 errors, 1 warnings, 0 checks, 31 lines checked
6f8a1207a791 drm/xe: Add VM.uapi_flags to VM snapshot capture
93199d6be01b drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
a68a4cd42664 drm/xe: Add replay_offset and replay_length lines to LRC HWCTX snapshot
fcbb4d13708a drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for Add support for Mesa GPU hang replay tool (rev5)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (9 preceding siblings ...)
2025-11-26 19:06 ` ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev5) Patchwork
@ 2025-11-26 19:07 ` Patchwork
2025-11-26 20:59 ` ✗ Xe.CI.Full: failure " Patchwork
` (4 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-26 19:07 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev5)
URL : https://patchwork.freedesktop.org/series/143868/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:06:28] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:06:33] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:07:04] Starting KUnit Kernel (1/1)...
[19:07:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:07:04] ================== guc_buf (11 subtests) ===================
[19:07:04] [PASSED] test_smallest
[19:07:04] [PASSED] test_largest
[19:07:04] [PASSED] test_granular
[19:07:04] [PASSED] test_unique
[19:07:04] [PASSED] test_overlap
[19:07:04] [PASSED] test_reusable
[19:07:04] [PASSED] test_too_big
[19:07:04] [PASSED] test_flush
[19:07:04] [PASSED] test_lookup
[19:07:04] [PASSED] test_data
[19:07:04] [PASSED] test_class
[19:07:04] ===================== [PASSED] guc_buf =====================
[19:07:04] =================== guc_dbm (7 subtests) ===================
[19:07:04] [PASSED] test_empty
[19:07:04] [PASSED] test_default
[19:07:04] ======================== test_size ========================
[19:07:04] [PASSED] 4
[19:07:04] [PASSED] 8
[19:07:04] [PASSED] 32
[19:07:04] [PASSED] 256
[19:07:04] ==================== [PASSED] test_size ====================
[19:07:04] ======================= test_reuse ========================
[19:07:04] [PASSED] 4
[19:07:04] [PASSED] 8
[19:07:04] [PASSED] 32
[19:07:04] [PASSED] 256
[19:07:04] =================== [PASSED] test_reuse ====================
[19:07:04] =================== test_range_overlap ====================
[19:07:04] [PASSED] 4
[19:07:04] [PASSED] 8
[19:07:04] [PASSED] 32
[19:07:04] [PASSED] 256
[19:07:04] =============== [PASSED] test_range_overlap ================
[19:07:04] =================== test_range_compact ====================
[19:07:04] [PASSED] 4
[19:07:04] [PASSED] 8
[19:07:04] [PASSED] 32
[19:07:04] [PASSED] 256
[19:07:04] =============== [PASSED] test_range_compact ================
[19:07:04] ==================== test_range_spare =====================
[19:07:04] [PASSED] 4
[19:07:04] [PASSED] 8
[19:07:04] [PASSED] 32
[19:07:04] [PASSED] 256
[19:07:04] ================ [PASSED] test_range_spare =================
[19:07:04] ===================== [PASSED] guc_dbm =====================
[19:07:04] =================== guc_idm (6 subtests) ===================
[19:07:04] [PASSED] bad_init
[19:07:04] [PASSED] no_init
[19:07:04] [PASSED] init_fini
[19:07:04] [PASSED] check_used
[19:07:04] [PASSED] check_quota
[19:07:04] [PASSED] check_all
[19:07:04] ===================== [PASSED] guc_idm =====================
[19:07:04] ================== no_relay (3 subtests) ===================
[19:07:04] [PASSED] xe_drops_guc2pf_if_not_ready
[19:07:04] [PASSED] xe_drops_guc2vf_if_not_ready
[19:07:04] [PASSED] xe_rejects_send_if_not_ready
[19:07:04] ==================== [PASSED] no_relay =====================
[19:07:04] ================== pf_relay (14 subtests) ==================
[19:07:04] [PASSED] pf_rejects_guc2pf_too_short
[19:07:04] [PASSED] pf_rejects_guc2pf_too_long
[19:07:04] [PASSED] pf_rejects_guc2pf_no_payload
[19:07:04] [PASSED] pf_fails_no_payload
[19:07:04] [PASSED] pf_fails_bad_origin
[19:07:04] [PASSED] pf_fails_bad_type
[19:07:04] [PASSED] pf_txn_reports_error
[19:07:04] [PASSED] pf_txn_sends_pf2guc
[19:07:04] [PASSED] pf_sends_pf2guc
[19:07:04] [SKIPPED] pf_loopback_nop
[19:07:04] [SKIPPED] pf_loopback_echo
[19:07:04] [SKIPPED] pf_loopback_fail
[19:07:04] [SKIPPED] pf_loopback_busy
[19:07:04] [SKIPPED] pf_loopback_retry
[19:07:04] ==================== [PASSED] pf_relay =====================
[19:07:04] ================== vf_relay (3 subtests) ===================
[19:07:04] [PASSED] vf_rejects_guc2vf_too_short
[19:07:04] [PASSED] vf_rejects_guc2vf_too_long
[19:07:04] [PASSED] vf_rejects_guc2vf_no_payload
[19:07:04] ==================== [PASSED] vf_relay =====================
[19:07:04] ================ pf_gt_config (6 subtests) =================
[19:07:04] [PASSED] fair_contexts_1vf
[19:07:04] [PASSED] fair_doorbells_1vf
[19:07:04] [PASSED] fair_ggtt_1vf
[19:07:04] ====================== fair_contexts ======================
[19:07:04] [PASSED] 1 VF
[19:07:04] [PASSED] 2 VFs
[19:07:04] [PASSED] 3 VFs
[19:07:04] [PASSED] 4 VFs
[19:07:04] [PASSED] 5 VFs
[19:07:04] [PASSED] 6 VFs
[19:07:04] [PASSED] 7 VFs
[19:07:04] [PASSED] 8 VFs
[19:07:04] [PASSED] 9 VFs
[19:07:04] [PASSED] 10 VFs
[19:07:04] [PASSED] 11 VFs
[19:07:04] [PASSED] 12 VFs
[19:07:04] [PASSED] 13 VFs
[19:07:04] [PASSED] 14 VFs
[19:07:04] [PASSED] 15 VFs
[19:07:04] [PASSED] 16 VFs
[19:07:04] [PASSED] 17 VFs
[19:07:04] [PASSED] 18 VFs
[19:07:04] [PASSED] 19 VFs
[19:07:04] [PASSED] 20 VFs
[19:07:04] [PASSED] 21 VFs
[19:07:04] [PASSED] 22 VFs
[19:07:04] [PASSED] 23 VFs
[19:07:04] [PASSED] 24 VFs
[19:07:04] [PASSED] 25 VFs
[19:07:04] [PASSED] 26 VFs
[19:07:04] [PASSED] 27 VFs
[19:07:04] [PASSED] 28 VFs
[19:07:04] [PASSED] 29 VFs
[19:07:04] [PASSED] 30 VFs
[19:07:04] [PASSED] 31 VFs
[19:07:04] [PASSED] 32 VFs
[19:07:04] [PASSED] 33 VFs
[19:07:04] [PASSED] 34 VFs
[19:07:04] [PASSED] 35 VFs
[19:07:04] [PASSED] 36 VFs
[19:07:04] [PASSED] 37 VFs
[19:07:04] [PASSED] 38 VFs
[19:07:04] [PASSED] 39 VFs
[19:07:04] [PASSED] 40 VFs
[19:07:04] [PASSED] 41 VFs
[19:07:04] [PASSED] 42 VFs
[19:07:04] [PASSED] 43 VFs
[19:07:04] [PASSED] 44 VFs
[19:07:04] [PASSED] 45 VFs
[19:07:04] [PASSED] 46 VFs
[19:07:04] [PASSED] 47 VFs
[19:07:04] [PASSED] 48 VFs
[19:07:04] [PASSED] 49 VFs
[19:07:04] [PASSED] 50 VFs
[19:07:04] [PASSED] 51 VFs
[19:07:04] [PASSED] 52 VFs
[19:07:04] [PASSED] 53 VFs
[19:07:04] [PASSED] 54 VFs
[19:07:04] [PASSED] 55 VFs
[19:07:04] [PASSED] 56 VFs
[19:07:04] [PASSED] 57 VFs
[19:07:04] [PASSED] 58 VFs
[19:07:04] [PASSED] 59 VFs
[19:07:04] [PASSED] 60 VFs
[19:07:04] [PASSED] 61 VFs
[19:07:04] [PASSED] 62 VFs
[19:07:04] [PASSED] 63 VFs
[19:07:04] ================== [PASSED] fair_contexts ==================
[19:07:04] ===================== fair_doorbells ======================
[19:07:04] [PASSED] 1 VF
[19:07:04] [PASSED] 2 VFs
[19:07:04] [PASSED] 3 VFs
[19:07:04] [PASSED] 4 VFs
[19:07:04] [PASSED] 5 VFs
[19:07:04] [PASSED] 6 VFs
[19:07:04] [PASSED] 7 VFs
[19:07:04] [PASSED] 8 VFs
[19:07:04] [PASSED] 9 VFs
[19:07:04] [PASSED] 10 VFs
[19:07:04] [PASSED] 11 VFs
[19:07:04] [PASSED] 12 VFs
[19:07:04] [PASSED] 13 VFs
[19:07:04] [PASSED] 14 VFs
[19:07:04] [PASSED] 15 VFs
[19:07:04] [PASSED] 16 VFs
[19:07:04] [PASSED] 17 VFs
[19:07:04] [PASSED] 18 VFs
[19:07:04] [PASSED] 19 VFs
[19:07:04] [PASSED] 20 VFs
[19:07:04] [PASSED] 21 VFs
[19:07:04] [PASSED] 22 VFs
[19:07:04] [PASSED] 23 VFs
[19:07:04] [PASSED] 24 VFs
[19:07:04] [PASSED] 25 VFs
[19:07:04] [PASSED] 26 VFs
[19:07:04] [PASSED] 27 VFs
[19:07:04] [PASSED] 28 VFs
[19:07:04] [PASSED] 29 VFs
[19:07:04] [PASSED] 30 VFs
[19:07:04] [PASSED] 31 VFs
[19:07:04] [PASSED] 32 VFs
[19:07:04] [PASSED] 33 VFs
[19:07:04] [PASSED] 34 VFs
[19:07:04] [PASSED] 35 VFs
[19:07:04] [PASSED] 36 VFs
[19:07:04] [PASSED] 37 VFs
[19:07:04] [PASSED] 38 VFs
[19:07:04] [PASSED] 39 VFs
[19:07:04] [PASSED] 40 VFs
[19:07:04] [PASSED] 41 VFs
[19:07:04] [PASSED] 42 VFs
[19:07:04] [PASSED] 43 VFs
[19:07:04] [PASSED] 44 VFs
[19:07:04] [PASSED] 45 VFs
[19:07:04] [PASSED] 46 VFs
[19:07:04] [PASSED] 47 VFs
[19:07:04] [PASSED] 48 VFs
[19:07:04] [PASSED] 49 VFs
[19:07:04] [PASSED] 50 VFs
[19:07:04] [PASSED] 51 VFs
[19:07:04] [PASSED] 52 VFs
[19:07:04] [PASSED] 53 VFs
[19:07:04] [PASSED] 54 VFs
[19:07:04] [PASSED] 55 VFs
[19:07:04] [PASSED] 56 VFs
[19:07:04] [PASSED] 57 VFs
[19:07:04] [PASSED] 58 VFs
[19:07:04] [PASSED] 59 VFs
[19:07:04] [PASSED] 60 VFs
[19:07:04] [PASSED] 61 VFs
[19:07:04] [PASSED] 62 VFs
[19:07:04] [PASSED] 63 VFs
[19:07:04] ================= [PASSED] fair_doorbells ==================
[19:07:04] ======================== fair_ggtt ========================
[19:07:04] [PASSED] 1 VF
[19:07:04] [PASSED] 2 VFs
[19:07:04] [PASSED] 3 VFs
[19:07:04] [PASSED] 4 VFs
[19:07:04] [PASSED] 5 VFs
[19:07:04] [PASSED] 6 VFs
[19:07:04] [PASSED] 7 VFs
[19:07:04] [PASSED] 8 VFs
[19:07:04] [PASSED] 9 VFs
[19:07:04] [PASSED] 10 VFs
[19:07:04] [PASSED] 11 VFs
[19:07:04] [PASSED] 12 VFs
[19:07:04] [PASSED] 13 VFs
[19:07:04] [PASSED] 14 VFs
[19:07:04] [PASSED] 15 VFs
[19:07:04] [PASSED] 16 VFs
[19:07:04] [PASSED] 17 VFs
[19:07:04] [PASSED] 18 VFs
[19:07:04] [PASSED] 19 VFs
[19:07:04] [PASSED] 20 VFs
[19:07:04] [PASSED] 21 VFs
[19:07:04] [PASSED] 22 VFs
[19:07:04] [PASSED] 23 VFs
[19:07:04] [PASSED] 24 VFs
[19:07:04] [PASSED] 25 VFs
[19:07:04] [PASSED] 26 VFs
[19:07:04] [PASSED] 27 VFs
[19:07:04] [PASSED] 28 VFs
[19:07:04] [PASSED] 29 VFs
[19:07:04] [PASSED] 30 VFs
[19:07:04] [PASSED] 31 VFs
[19:07:04] [PASSED] 32 VFs
[19:07:04] [PASSED] 33 VFs
[19:07:04] [PASSED] 34 VFs
[19:07:04] [PASSED] 35 VFs
[19:07:04] [PASSED] 36 VFs
[19:07:04] [PASSED] 37 VFs
[19:07:04] [PASSED] 38 VFs
[19:07:04] [PASSED] 39 VFs
[19:07:04] [PASSED] 40 VFs
[19:07:04] [PASSED] 41 VFs
[19:07:04] [PASSED] 42 VFs
[19:07:04] [PASSED] 43 VFs
[19:07:04] [PASSED] 44 VFs
[19:07:04] [PASSED] 45 VFs
[19:07:04] [PASSED] 46 VFs
[19:07:04] [PASSED] 47 VFs
[19:07:04] [PASSED] 48 VFs
[19:07:04] [PASSED] 49 VFs
[19:07:04] [PASSED] 50 VFs
[19:07:04] [PASSED] 51 VFs
[19:07:04] [PASSED] 52 VFs
[19:07:04] [PASSED] 53 VFs
[19:07:04] [PASSED] 54 VFs
[19:07:04] [PASSED] 55 VFs
[19:07:04] [PASSED] 56 VFs
[19:07:04] [PASSED] 57 VFs
[19:07:04] [PASSED] 58 VFs
[19:07:04] [PASSED] 59 VFs
[19:07:04] [PASSED] 60 VFs
[19:07:04] [PASSED] 61 VFs
[19:07:04] [PASSED] 62 VFs
[19:07:04] [PASSED] 63 VFs
[19:07:04] ==================== [PASSED] fair_ggtt ====================
[19:07:04] ================== [PASSED] pf_gt_config ===================
[19:07:04] ===================== lmtt (1 subtest) =====================
[19:07:04] ======================== test_ops =========================
[19:07:04] [PASSED] 2-level
[19:07:04] [PASSED] multi-level
[19:07:04] ==================== [PASSED] test_ops =====================
[19:07:04] ====================== [PASSED] lmtt =======================
[19:07:04] ================= pf_service (11 subtests) =================
[19:07:04] [PASSED] pf_negotiate_any
[19:07:04] [PASSED] pf_negotiate_base_match
[19:07:04] [PASSED] pf_negotiate_base_newer
[19:07:04] [PASSED] pf_negotiate_base_next
[19:07:04] [SKIPPED] pf_negotiate_base_older
[19:07:04] [PASSED] pf_negotiate_base_prev
[19:07:04] [PASSED] pf_negotiate_latest_match
[19:07:04] [PASSED] pf_negotiate_latest_newer
[19:07:04] [PASSED] pf_negotiate_latest_next
[19:07:04] [SKIPPED] pf_negotiate_latest_older
[19:07:04] [SKIPPED] pf_negotiate_latest_prev
[19:07:04] =================== [PASSED] pf_service ====================
[19:07:04] ================= xe_guc_g2g (2 subtests) ==================
[19:07:04] ============== xe_live_guc_g2g_kunit_default ==============
[19:07:04] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:07:04] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:07:04] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:07:04] =================== [SKIPPED] xe_guc_g2g ===================
[19:07:04] =================== xe_mocs (2 subtests) ===================
[19:07:04] ================ xe_live_mocs_kernel_kunit ================
[19:07:04] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:07:04] ================ xe_live_mocs_reset_kunit =================
[19:07:04] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:07:04] ==================== [SKIPPED] xe_mocs =====================
[19:07:04] ================= xe_migrate (2 subtests) ==================
[19:07:04] ================= xe_migrate_sanity_kunit =================
[19:07:04] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:07:04] ================== xe_validate_ccs_kunit ==================
[19:07:04] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:07:04] =================== [SKIPPED] xe_migrate ===================
[19:07:04] ================== xe_dma_buf (1 subtest) ==================
[19:07:04] ==================== xe_dma_buf_kunit =====================
[19:07:04] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:07:04] =================== [SKIPPED] xe_dma_buf ===================
[19:07:04] ================= xe_bo_shrink (1 subtest) =================
[19:07:04] =================== xe_bo_shrink_kunit ====================
[19:07:04] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:07:04] ================== [SKIPPED] xe_bo_shrink ==================
[19:07:04] ==================== xe_bo (2 subtests) ====================
[19:07:04] ================== xe_ccs_migrate_kunit ===================
[19:07:04] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:07:04] ==================== xe_bo_evict_kunit ====================
[19:07:04] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:07:04] ===================== [SKIPPED] xe_bo ======================
[19:07:04] ==================== args (11 subtests) ====================
[19:07:04] [PASSED] count_args_test
[19:07:04] [PASSED] call_args_example
[19:07:04] [PASSED] call_args_test
[19:07:04] [PASSED] drop_first_arg_example
[19:07:04] [PASSED] drop_first_arg_test
[19:07:04] [PASSED] first_arg_example
[19:07:04] [PASSED] first_arg_test
[19:07:04] [PASSED] last_arg_example
[19:07:04] [PASSED] last_arg_test
[19:07:04] [PASSED] pick_arg_example
[19:07:04] [PASSED] sep_comma_example
[19:07:04] ====================== [PASSED] args =======================
[19:07:04] =================== xe_pci (3 subtests) ====================
[19:07:04] ==================== check_graphics_ip ====================
[19:07:04] [PASSED] 12.00 Xe_LP
[19:07:04] [PASSED] 12.10 Xe_LP+
[19:07:04] [PASSED] 12.55 Xe_HPG
[19:07:04] [PASSED] 12.60 Xe_HPC
[19:07:04] [PASSED] 12.70 Xe_LPG
[19:07:04] [PASSED] 12.71 Xe_LPG
[19:07:04] [PASSED] 12.74 Xe_LPG+
[19:07:04] [PASSED] 20.01 Xe2_HPG
[19:07:04] [PASSED] 20.02 Xe2_HPG
[19:07:04] [PASSED] 20.04 Xe2_LPG
[19:07:04] [PASSED] 30.00 Xe3_LPG
[19:07:04] [PASSED] 30.01 Xe3_LPG
[19:07:04] [PASSED] 30.03 Xe3_LPG
[19:07:04] [PASSED] 30.04 Xe3_LPG
[19:07:04] [PASSED] 30.05 Xe3_LPG
[19:07:04] [PASSED] 35.11 Xe3p_XPC
[19:07:04] ================ [PASSED] check_graphics_ip ================
[19:07:04] ===================== check_media_ip ======================
[19:07:04] [PASSED] 12.00 Xe_M
[19:07:04] [PASSED] 12.55 Xe_HPM
[19:07:04] [PASSED] 13.00 Xe_LPM+
[19:07:04] [PASSED] 13.01 Xe2_HPM
[19:07:04] [PASSED] 20.00 Xe2_LPM
[19:07:04] [PASSED] 30.00 Xe3_LPM
[19:07:04] [PASSED] 30.02 Xe3_LPM
[19:07:04] [PASSED] 35.00 Xe3p_LPM
[19:07:04] [PASSED] 35.03 Xe3p_HPM
[19:07:04] ================= [PASSED] check_media_ip ==================
[19:07:04] =================== check_platform_desc ===================
[19:07:04] [PASSED] 0x9A60 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A68 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A70 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A40 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A49 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A59 (TIGERLAKE)
[19:07:04] [PASSED] 0x9A78 (TIGERLAKE)
[19:07:04] [PASSED] 0x9AC0 (TIGERLAKE)
[19:07:04] [PASSED] 0x9AC9 (TIGERLAKE)
[19:07:04] [PASSED] 0x9AD9 (TIGERLAKE)
[19:07:04] [PASSED] 0x9AF8 (TIGERLAKE)
[19:07:04] [PASSED] 0x4C80 (ROCKETLAKE)
[19:07:04] [PASSED] 0x4C8A (ROCKETLAKE)
[19:07:04] [PASSED] 0x4C8B (ROCKETLAKE)
[19:07:04] [PASSED] 0x4C8C (ROCKETLAKE)
[19:07:04] [PASSED] 0x4C90 (ROCKETLAKE)
[19:07:04] [PASSED] 0x4C9A (ROCKETLAKE)
[19:07:04] [PASSED] 0x4680 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4682 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4688 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x468A (ALDERLAKE_S)
[19:07:04] [PASSED] 0x468B (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4690 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4692 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4693 (ALDERLAKE_S)
[19:07:04] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46AA (ALDERLAKE_P)
[19:07:04] [PASSED] 0x462A (ALDERLAKE_P)
[19:07:04] [PASSED] 0x4626 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x4628 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[19:07:04] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:07:04] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:07:04] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:07:04] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:07:04] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:07:04] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:07:04] [PASSED] 0xA721 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA720 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:07:04] [PASSED] 0xA780 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA781 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA782 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA783 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA788 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA789 (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA78A (ALDERLAKE_S)
[19:07:04] [PASSED] 0xA78B (ALDERLAKE_S)
[19:07:04] [PASSED] 0x4905 (DG1)
[19:07:04] [PASSED] 0x4906 (DG1)
[19:07:04] [PASSED] 0x4907 (DG1)
[19:07:04] [PASSED] 0x4908 (DG1)
[19:07:04] [PASSED] 0x4909 (DG1)
[19:07:04] [PASSED] 0x56C0 (DG2)
[19:07:04] [PASSED] 0x56C2 (DG2)
[19:07:04] [PASSED] 0x56C1 (DG2)
[19:07:04] [PASSED] 0x7D51 (METEORLAKE)
[19:07:04] [PASSED] 0x7DD1 (METEORLAKE)
[19:07:04] [PASSED] 0x7D41 (METEORLAKE)
[19:07:04] [PASSED] 0x7D67 (METEORLAKE)
[19:07:04] [PASSED] 0xB640 (METEORLAKE)
[19:07:04] [PASSED] 0x56A0 (DG2)
[19:07:04] [PASSED] 0x56A1 (DG2)
[19:07:04] [PASSED] 0x56A2 (DG2)
[19:07:04] [PASSED] 0x56BE (DG2)
[19:07:04] [PASSED] 0x56BF (DG2)
[19:07:04] [PASSED] 0x5690 (DG2)
[19:07:04] [PASSED] 0x5691 (DG2)
[19:07:04] [PASSED] 0x5692 (DG2)
[19:07:04] [PASSED] 0x56A5 (DG2)
[19:07:04] [PASSED] 0x56A6 (DG2)
[19:07:04] [PASSED] 0x56B0 (DG2)
[19:07:04] [PASSED] 0x56B1 (DG2)
[19:07:04] [PASSED] 0x56BA (DG2)
[19:07:04] [PASSED] 0x56BB (DG2)
[19:07:04] [PASSED] 0x56BC (DG2)
[19:07:04] [PASSED] 0x56BD (DG2)
[19:07:04] [PASSED] 0x5693 (DG2)
[19:07:04] [PASSED] 0x5694 (DG2)
[19:07:04] [PASSED] 0x5695 (DG2)
[19:07:04] [PASSED] 0x56A3 (DG2)
[19:07:04] [PASSED] 0x56A4 (DG2)
[19:07:04] [PASSED] 0x56B2 (DG2)
[19:07:04] [PASSED] 0x56B3 (DG2)
[19:07:04] [PASSED] 0x5696 (DG2)
[19:07:04] [PASSED] 0x5697 (DG2)
[19:07:04] [PASSED] 0xB69 (PVC)
[19:07:04] [PASSED] 0xB6E (PVC)
[19:07:04] [PASSED] 0xBD4 (PVC)
[19:07:04] [PASSED] 0xBD5 (PVC)
[19:07:04] [PASSED] 0xBD6 (PVC)
[19:07:04] [PASSED] 0xBD7 (PVC)
[19:07:04] [PASSED] 0xBD8 (PVC)
[19:07:04] [PASSED] 0xBD9 (PVC)
[19:07:04] [PASSED] 0xBDA (PVC)
[19:07:04] [PASSED] 0xBDB (PVC)
[19:07:04] [PASSED] 0xBE0 (PVC)
[19:07:04] [PASSED] 0xBE1 (PVC)
[19:07:04] [PASSED] 0xBE5 (PVC)
[19:07:04] [PASSED] 0x7D40 (METEORLAKE)
[19:07:04] [PASSED] 0x7D45 (METEORLAKE)
[19:07:04] [PASSED] 0x7D55 (METEORLAKE)
[19:07:04] [PASSED] 0x7D60 (METEORLAKE)
[19:07:04] [PASSED] 0x7DD5 (METEORLAKE)
[19:07:04] [PASSED] 0x6420 (LUNARLAKE)
[19:07:04] [PASSED] 0x64A0 (LUNARLAKE)
[19:07:04] [PASSED] 0x64B0 (LUNARLAKE)
[19:07:04] [PASSED] 0xE202 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE209 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE20B (BATTLEMAGE)
[19:07:04] [PASSED] 0xE20C (BATTLEMAGE)
[19:07:04] [PASSED] 0xE20D (BATTLEMAGE)
[19:07:04] [PASSED] 0xE210 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE211 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE212 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE216 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE220 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE221 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE222 (BATTLEMAGE)
[19:07:04] [PASSED] 0xE223 (BATTLEMAGE)
[19:07:04] [PASSED] 0xB080 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB081 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB082 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB083 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB084 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB085 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB086 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB087 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB08F (PANTHERLAKE)
[19:07:04] [PASSED] 0xB090 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:07:04] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:07:04] [PASSED] 0xD740 (NOVALAKE_S)
[19:07:04] [PASSED] 0xD741 (NOVALAKE_S)
[19:07:04] [PASSED] 0xD742 (NOVALAKE_S)
[19:07:04] [PASSED] 0xD743 (NOVALAKE_S)
[19:07:04] [PASSED] 0xD744 (NOVALAKE_S)
[19:07:04] [PASSED] 0xD745 (NOVALAKE_S)
[19:07:04] [PASSED] 0x674C (CRESCENTISLAND)
[19:07:04] [PASSED] 0xFD80 (PANTHERLAKE)
[19:07:04] [PASSED] 0xFD81 (PANTHERLAKE)
[19:07:04] =============== [PASSED] check_platform_desc ===============
[19:07:04] ===================== [PASSED] xe_pci ======================
[19:07:04] =================== xe_rtp (2 subtests) ====================
[19:07:04] =============== xe_rtp_process_to_sr_tests ================
[19:07:04] [PASSED] coalesce-same-reg
[19:07:04] [PASSED] no-match-no-add
[19:07:04] [PASSED] match-or
[19:07:04] [PASSED] match-or-xfail
[19:07:04] [PASSED] no-match-no-add-multiple-rules
[19:07:04] [PASSED] two-regs-two-entries
[19:07:05] [PASSED] clr-one-set-other
[19:07:05] [PASSED] set-field
[19:07:05] [PASSED] conflict-duplicate
[19:07:05] [PASSED] conflict-not-disjoint
[19:07:05] [PASSED] conflict-reg-type
[19:07:05] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:07:05] ================== xe_rtp_process_tests ===================
[19:07:05] [PASSED] active1
[19:07:05] [PASSED] active2
[19:07:05] [PASSED] active-inactive
[19:07:05] [PASSED] inactive-active
[19:07:05] [PASSED] inactive-1st_or_active-inactive
[19:07:05] [PASSED] inactive-2nd_or_active-inactive
[19:07:05] [PASSED] inactive-last_or_active-inactive
[19:07:05] [PASSED] inactive-no_or_active-inactive
[19:07:05] ============== [PASSED] xe_rtp_process_tests ===============
[19:07:05] ===================== [PASSED] xe_rtp ======================
[19:07:05] ==================== xe_wa (1 subtest) =====================
[19:07:05] ======================== xe_wa_gt =========================
[19:07:05] [PASSED] TIGERLAKE B0
[19:07:05] [PASSED] DG1 A0
[19:07:05] [PASSED] DG1 B0
[19:07:05] [PASSED] ALDERLAKE_S A0
[19:07:05] [PASSED] ALDERLAKE_S B0
[19:07:05] [PASSED] ALDERLAKE_S C0
[19:07:05] [PASSED] ALDERLAKE_S D0
[19:07:05] [PASSED] ALDERLAKE_P A0
[19:07:05] [PASSED] ALDERLAKE_P B0
[19:07:05] [PASSED] ALDERLAKE_P C0
[19:07:05] [PASSED] ALDERLAKE_S RPLS D0
[19:07:05] [PASSED] ALDERLAKE_P RPLU E0
[19:07:05] [PASSED] DG2 G10 C0
[19:07:05] [PASSED] DG2 G11 B1
[19:07:05] [PASSED] DG2 G12 A1
[19:07:05] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:07:05] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:07:05] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:07:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:07:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:07:05] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:07:05] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:07:05] ==================== [PASSED] xe_wa_gt =====================
[19:07:05] ====================== [PASSED] xe_wa ======================
[19:07:05] ============================================================
[19:07:05] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[19:07:05] Elapsed time: 36.161s total, 4.316s configuring, 31.328s building, 0.464s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:07:05] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:07:06] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:07:32] Starting KUnit Kernel (1/1)...
[19:07:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:07:32] ============ drm_test_pick_cmdline (2 subtests) ============
[19:07:32] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:07:32] =============== drm_test_pick_cmdline_named ===============
[19:07:32] [PASSED] NTSC
[19:07:32] [PASSED] NTSC-J
[19:07:32] [PASSED] PAL
[19:07:32] [PASSED] PAL-M
[19:07:32] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:07:32] ============== [PASSED] drm_test_pick_cmdline ==============
[19:07:32] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:07:32] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:07:32] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:07:32] =========== drm_validate_clone_mode (2 subtests) ===========
[19:07:32] ============== drm_test_check_in_clone_mode ===============
[19:07:32] [PASSED] in_clone_mode
[19:07:32] [PASSED] not_in_clone_mode
[19:07:32] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:07:32] =============== drm_test_check_valid_clones ===============
[19:07:32] [PASSED] not_in_clone_mode
[19:07:32] [PASSED] valid_clone
[19:07:32] [PASSED] invalid_clone
[19:07:32] =========== [PASSED] drm_test_check_valid_clones ===========
[19:07:32] ============= [PASSED] drm_validate_clone_mode =============
[19:07:32] ============= drm_validate_modeset (1 subtest) =============
[19:07:32] [PASSED] drm_test_check_connector_changed_modeset
[19:07:32] ============== [PASSED] drm_validate_modeset ===============
[19:07:32] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:07:32] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:07:32] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:07:32] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:07:32] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:07:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:07:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:07:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:07:32] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:07:32] ============== drm_bridge_alloc (2 subtests) ===============
[19:07:32] [PASSED] drm_test_drm_bridge_alloc_basic
[19:07:32] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:07:32] ================ [PASSED] drm_bridge_alloc =================
[19:07:32] ================== drm_buddy (8 subtests) ==================
[19:07:32] [PASSED] drm_test_buddy_alloc_limit
[19:07:32] [PASSED] drm_test_buddy_alloc_optimistic
[19:07:32] [PASSED] drm_test_buddy_alloc_pessimistic
[19:07:32] [PASSED] drm_test_buddy_alloc_pathological
[19:07:32] [PASSED] drm_test_buddy_alloc_contiguous
[19:07:32] [PASSED] drm_test_buddy_alloc_clear
[19:07:32] [PASSED] drm_test_buddy_alloc_range_bias
[19:07:32] [PASSED] drm_test_buddy_fragmentation_performance
[19:07:32] ==================== [PASSED] drm_buddy ====================
[19:07:32] ============= drm_cmdline_parser (40 subtests) =============
[19:07:32] [PASSED] drm_test_cmdline_force_d_only
[19:07:32] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:07:32] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:07:32] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:07:32] [PASSED] drm_test_cmdline_force_e_only
[19:07:32] [PASSED] drm_test_cmdline_res
[19:07:32] [PASSED] drm_test_cmdline_res_vesa
[19:07:32] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:07:32] [PASSED] drm_test_cmdline_res_rblank
[19:07:32] [PASSED] drm_test_cmdline_res_bpp
[19:07:32] [PASSED] drm_test_cmdline_res_refresh
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:07:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:07:32] [PASSED] drm_test_cmdline_res_margins_force_on
[19:07:32] [PASSED] drm_test_cmdline_res_vesa_margins
[19:07:32] [PASSED] drm_test_cmdline_name
[19:07:32] [PASSED] drm_test_cmdline_name_bpp
[19:07:32] [PASSED] drm_test_cmdline_name_option
[19:07:32] [PASSED] drm_test_cmdline_name_bpp_option
[19:07:32] [PASSED] drm_test_cmdline_rotate_0
[19:07:32] [PASSED] drm_test_cmdline_rotate_90
[19:07:32] [PASSED] drm_test_cmdline_rotate_180
[19:07:32] [PASSED] drm_test_cmdline_rotate_270
[19:07:32] [PASSED] drm_test_cmdline_hmirror
[19:07:32] [PASSED] drm_test_cmdline_vmirror
[19:07:32] [PASSED] drm_test_cmdline_margin_options
[19:07:32] [PASSED] drm_test_cmdline_multiple_options
[19:07:32] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:07:32] [PASSED] drm_test_cmdline_extra_and_option
[19:07:32] [PASSED] drm_test_cmdline_freestanding_options
[19:07:32] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:07:32] [PASSED] drm_test_cmdline_panel_orientation
[19:07:32] ================ drm_test_cmdline_invalid =================
[19:07:32] [PASSED] margin_only
[19:07:32] [PASSED] interlace_only
[19:07:32] [PASSED] res_missing_x
[19:07:32] [PASSED] res_missing_y
[19:07:32] [PASSED] res_bad_y
[19:07:32] [PASSED] res_missing_y_bpp
[19:07:32] [PASSED] res_bad_bpp
[19:07:32] [PASSED] res_bad_refresh
[19:07:32] [PASSED] res_bpp_refresh_force_on_off
[19:07:32] [PASSED] res_invalid_mode
[19:07:32] [PASSED] res_bpp_wrong_place_mode
[19:07:32] [PASSED] name_bpp_refresh
[19:07:32] [PASSED] name_refresh
[19:07:32] [PASSED] name_refresh_wrong_mode
[19:07:32] [PASSED] name_refresh_invalid_mode
[19:07:32] [PASSED] rotate_multiple
[19:07:32] [PASSED] rotate_invalid_val
[19:07:32] [PASSED] rotate_truncated
[19:07:32] [PASSED] invalid_option
[19:07:32] [PASSED] invalid_tv_option
[19:07:32] [PASSED] truncated_tv_option
[19:07:32] ============ [PASSED] drm_test_cmdline_invalid =============
[19:07:32] =============== drm_test_cmdline_tv_options ===============
[19:07:32] [PASSED] NTSC
[19:07:32] [PASSED] NTSC_443
[19:07:32] [PASSED] NTSC_J
[19:07:32] [PASSED] PAL
[19:07:32] [PASSED] PAL_M
[19:07:32] [PASSED] PAL_N
[19:07:32] [PASSED] SECAM
[19:07:32] [PASSED] MONO_525
[19:07:32] [PASSED] MONO_625
[19:07:32] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:07:32] =============== [PASSED] drm_cmdline_parser ================
[19:07:32] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:07:32] [PASSED] drm_test_connector_hdmi_init_valid
[19:07:32] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:07:32] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:07:32] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:07:32] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:07:32] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:07:32] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:07:32] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:07:32] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:07:32] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:07:32] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:07:32] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:07:32] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:07:32] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:07:32] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:07:32] [PASSED] drm_test_connector_hdmi_init_null_product
[19:07:32] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:07:32] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:07:32] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:07:32] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:07:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:07:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:07:32] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:07:32] ========= drm_test_connector_hdmi_init_type_valid =========
[19:07:32] [PASSED] HDMI-A
[19:07:32] [PASSED] HDMI-B
[19:07:32] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:07:32] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:07:32] [PASSED] Unknown
[19:07:32] [PASSED] VGA
[19:07:32] [PASSED] DVI-I
[19:07:32] [PASSED] DVI-D
[19:07:32] [PASSED] DVI-A
[19:07:32] [PASSED] Composite
[19:07:32] [PASSED] SVIDEO
[19:07:32] [PASSED] LVDS
[19:07:32] [PASSED] Component
[19:07:32] [PASSED] DIN
[19:07:32] [PASSED] DP
[19:07:32] [PASSED] TV
[19:07:32] [PASSED] eDP
[19:07:32] [PASSED] Virtual
[19:07:32] [PASSED] DSI
[19:07:32] [PASSED] DPI
[19:07:32] [PASSED] Writeback
[19:07:32] [PASSED] SPI
[19:07:32] [PASSED] USB
[19:07:32] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:07:32] ============ [PASSED] drmm_connector_hdmi_init =============
[19:07:32] ============= drmm_connector_init (3 subtests) =============
[19:07:32] [PASSED] drm_test_drmm_connector_init
[19:07:32] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:07:32] ========= drm_test_drmm_connector_init_type_valid =========
[19:07:32] [PASSED] Unknown
[19:07:32] [PASSED] VGA
[19:07:32] [PASSED] DVI-I
[19:07:32] [PASSED] DVI-D
[19:07:32] [PASSED] DVI-A
[19:07:32] [PASSED] Composite
[19:07:32] [PASSED] SVIDEO
[19:07:32] [PASSED] LVDS
[19:07:32] [PASSED] Component
[19:07:32] [PASSED] DIN
[19:07:32] [PASSED] DP
[19:07:32] [PASSED] HDMI-A
[19:07:32] [PASSED] HDMI-B
[19:07:32] [PASSED] TV
[19:07:32] [PASSED] eDP
[19:07:32] [PASSED] Virtual
[19:07:32] [PASSED] DSI
[19:07:32] [PASSED] DPI
[19:07:32] [PASSED] Writeback
[19:07:32] [PASSED] SPI
[19:07:32] [PASSED] USB
[19:07:32] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:07:32] =============== [PASSED] drmm_connector_init ===============
[19:07:32] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_init
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:07:32] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:07:32] [PASSED] Unknown
[19:07:32] [PASSED] VGA
[19:07:32] [PASSED] DVI-I
[19:07:32] [PASSED] DVI-D
[19:07:32] [PASSED] DVI-A
[19:07:32] [PASSED] Composite
[19:07:32] [PASSED] SVIDEO
[19:07:32] [PASSED] LVDS
[19:07:32] [PASSED] Component
[19:07:32] [PASSED] DIN
[19:07:32] [PASSED] DP
[19:07:32] [PASSED] HDMI-A
[19:07:32] [PASSED] HDMI-B
[19:07:32] [PASSED] TV
[19:07:32] [PASSED] eDP
[19:07:32] [PASSED] Virtual
[19:07:32] [PASSED] DSI
[19:07:32] [PASSED] DPI
[19:07:32] [PASSED] Writeback
[19:07:32] [PASSED] SPI
[19:07:32] [PASSED] USB
[19:07:32] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:07:32] ======== drm_test_drm_connector_dynamic_init_name =========
[19:07:32] [PASSED] Unknown
[19:07:32] [PASSED] VGA
[19:07:32] [PASSED] DVI-I
[19:07:32] [PASSED] DVI-D
[19:07:32] [PASSED] DVI-A
[19:07:32] [PASSED] Composite
[19:07:32] [PASSED] SVIDEO
[19:07:32] [PASSED] LVDS
[19:07:32] [PASSED] Component
[19:07:32] [PASSED] DIN
[19:07:32] [PASSED] DP
[19:07:32] [PASSED] HDMI-A
[19:07:32] [PASSED] HDMI-B
[19:07:32] [PASSED] TV
[19:07:32] [PASSED] eDP
[19:07:32] [PASSED] Virtual
[19:07:32] [PASSED] DSI
[19:07:32] [PASSED] DPI
[19:07:32] [PASSED] Writeback
[19:07:32] [PASSED] SPI
[19:07:32] [PASSED] USB
[19:07:32] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:07:32] =========== [PASSED] drm_connector_dynamic_init ============
[19:07:32] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:07:32] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:07:32] ======= drm_connector_dynamic_register (7 subtests) ========
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:07:32] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:07:32] ========= [PASSED] drm_connector_dynamic_register ==========
[19:07:32] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:07:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:07:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:07:32] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:07:32] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:07:32] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:07:32] [PASSED] NTSC
[19:07:32] [PASSED] NTSC-443
[19:07:32] [PASSED] NTSC-J
[19:07:32] [PASSED] PAL
[19:07:32] [PASSED] PAL-M
[19:07:32] [PASSED] PAL-N
[19:07:32] [PASSED] SECAM
[19:07:32] [PASSED] Mono
[19:07:32] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:07:32] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:07:32] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:07:32] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:07:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:07:32] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:07:32] [PASSED] VIC 96
[19:07:32] [PASSED] VIC 97
[19:07:32] [PASSED] VIC 101
[19:07:32] [PASSED] VIC 102
[19:07:32] [PASSED] VIC 106
[19:07:32] [PASSED] VIC 107
[19:07:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:07:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:07:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:07:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:07:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:07:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:07:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:07:32] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:07:32] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:07:32] [PASSED] Automatic
[19:07:32] [PASSED] Full
[19:07:32] [PASSED] Limited 16:235
[19:07:32] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:07:32] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:07:32] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:07:32] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:07:32] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:07:32] [PASSED] RGB
[19:07:32] [PASSED] YUV 4:2:0
[19:07:32] [PASSED] YUV 4:2:2
[19:07:32] [PASSED] YUV 4:4:4
[19:07:32] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:07:32] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:07:32] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:07:32] ============= drm_damage_helper (21 subtests) ==============
[19:07:32] [PASSED] drm_test_damage_iter_no_damage
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:07:32] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:07:32] [PASSED] drm_test_damage_iter_simple_damage
[19:07:32] [PASSED] drm_test_damage_iter_single_damage
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:07:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:07:32] [PASSED] drm_test_damage_iter_damage
[19:07:32] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:07:32] [PASSED] drm_test_damage_iter_damage_one_outside
[19:07:32] [PASSED] drm_test_damage_iter_damage_src_moved
[19:07:32] [PASSED] drm_test_damage_iter_damage_not_visible
[19:07:32] ================ [PASSED] drm_damage_helper ================
[19:07:32] ============== drm_dp_mst_helper (3 subtests) ==============
[19:07:32] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:07:32] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:07:32] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:07:32] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:07:32] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:07:32] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:07:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:07:32] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:07:32] [PASSED] Link rate 2000000 lane count 4
[19:07:32] [PASSED] Link rate 2000000 lane count 2
[19:07:32] [PASSED] Link rate 2000000 lane count 1
[19:07:32] [PASSED] Link rate 1350000 lane count 4
[19:07:32] [PASSED] Link rate 1350000 lane count 2
[19:07:32] [PASSED] Link rate 1350000 lane count 1
[19:07:32] [PASSED] Link rate 1000000 lane count 4
[19:07:32] [PASSED] Link rate 1000000 lane count 2
[19:07:32] [PASSED] Link rate 1000000 lane count 1
[19:07:32] [PASSED] Link rate 810000 lane count 4
[19:07:32] [PASSED] Link rate 810000 lane count 2
[19:07:32] [PASSED] Link rate 810000 lane count 1
[19:07:32] [PASSED] Link rate 540000 lane count 4
[19:07:32] [PASSED] Link rate 540000 lane count 2
[19:07:32] [PASSED] Link rate 540000 lane count 1
[19:07:32] [PASSED] Link rate 270000 lane count 4
[19:07:32] [PASSED] Link rate 270000 lane count 2
[19:07:32] [PASSED] Link rate 270000 lane count 1
[19:07:32] [PASSED] Link rate 162000 lane count 4
[19:07:32] [PASSED] Link rate 162000 lane count 2
[19:07:32] [PASSED] Link rate 162000 lane count 1
[19:07:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:07:32] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:07:32] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:07:32] [PASSED] DP_POWER_UP_PHY with port number
[19:07:32] [PASSED] DP_POWER_DOWN_PHY with port number
[19:07:32] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:07:32] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:07:32] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:07:32] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:07:32] [PASSED] DP_QUERY_PAYLOAD with port number
[19:07:32] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:07:32] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:07:32] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:07:32] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:07:32] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:07:32] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:07:32] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:07:32] [PASSED] DP_REMOTE_I2C_READ with port number
[19:07:32] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:07:32] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:07:32] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:07:32] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:07:32] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:07:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:07:32] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:07:32] ================ [PASSED] drm_dp_mst_helper ================
[19:07:32] ================== drm_exec (7 subtests) ===================
[19:07:32] [PASSED] sanitycheck
[19:07:32] [PASSED] test_lock
[19:07:32] [PASSED] test_lock_unlock
[19:07:32] [PASSED] test_duplicates
[19:07:32] [PASSED] test_prepare
[19:07:32] [PASSED] test_prepare_array
[19:07:32] [PASSED] test_multiple_loops
[19:07:32] ==================== [PASSED] drm_exec =====================
[19:07:32] =========== drm_format_helper_test (17 subtests) ===========
[19:07:32] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:07:32] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:07:32] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:07:32] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:07:32] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:07:32] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:07:32] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:07:32] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:07:32] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:07:32] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:07:32] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:07:32] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:07:32] ==================== drm_test_fb_swab =====================
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ================ [PASSED] drm_test_fb_swab =================
[19:07:32] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:07:32] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:07:32] [PASSED] single_pixel_source_buffer
[19:07:32] [PASSED] single_pixel_clip_rectangle
[19:07:32] [PASSED] well_known_colors
[19:07:32] [PASSED] destination_pitch
[19:07:32] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:07:32] ================= drm_test_fb_clip_offset =================
[19:07:32] [PASSED] pass through
[19:07:32] [PASSED] horizontal offset
[19:07:32] [PASSED] vertical offset
[19:07:32] [PASSED] horizontal and vertical offset
[19:07:32] [PASSED] horizontal offset (custom pitch)
[19:07:32] [PASSED] vertical offset (custom pitch)
[19:07:32] [PASSED] horizontal and vertical offset (custom pitch)
[19:07:32] ============= [PASSED] drm_test_fb_clip_offset =============
[19:07:32] =================== drm_test_fb_memcpy ====================
[19:07:32] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:07:32] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:07:32] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:07:32] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:07:32] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:07:32] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:07:32] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:07:32] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:07:32] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:07:32] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:07:32] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:07:32] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:07:32] =============== [PASSED] drm_test_fb_memcpy ================
[19:07:32] ============= [PASSED] drm_format_helper_test ==============
[19:07:32] ================= drm_format (18 subtests) =================
[19:07:32] [PASSED] drm_test_format_block_width_invalid
[19:07:32] [PASSED] drm_test_format_block_width_one_plane
[19:07:32] [PASSED] drm_test_format_block_width_two_plane
[19:07:32] [PASSED] drm_test_format_block_width_three_plane
[19:07:32] [PASSED] drm_test_format_block_width_tiled
[19:07:32] [PASSED] drm_test_format_block_height_invalid
[19:07:32] [PASSED] drm_test_format_block_height_one_plane
[19:07:32] [PASSED] drm_test_format_block_height_two_plane
[19:07:32] [PASSED] drm_test_format_block_height_three_plane
[19:07:32] [PASSED] drm_test_format_block_height_tiled
[19:07:32] [PASSED] drm_test_format_min_pitch_invalid
[19:07:32] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:07:32] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:07:32] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:07:32] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:07:32] [PASSED] drm_test_format_min_pitch_two_plane
[19:07:32] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:07:32] [PASSED] drm_test_format_min_pitch_tiled
[19:07:32] =================== [PASSED] drm_format ====================
[19:07:32] ============== drm_framebuffer (10 subtests) ===============
[19:07:32] ========== drm_test_framebuffer_check_src_coords ==========
[19:07:32] [PASSED] Success: source fits into fb
[19:07:32] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:07:32] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:07:32] [PASSED] Fail: overflowing fb with source width
[19:07:32] [PASSED] Fail: overflowing fb with source height
[19:07:32] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:07:32] [PASSED] drm_test_framebuffer_cleanup
[19:07:32] =============== drm_test_framebuffer_create ===============
[19:07:32] [PASSED] ABGR8888 normal sizes
[19:07:32] [PASSED] ABGR8888 max sizes
[19:07:32] [PASSED] ABGR8888 pitch greater than min required
[19:07:32] [PASSED] ABGR8888 pitch less than min required
[19:07:32] [PASSED] ABGR8888 Invalid width
[19:07:32] [PASSED] ABGR8888 Invalid buffer handle
[19:07:32] [PASSED] No pixel format
[19:07:32] [PASSED] ABGR8888 Width 0
[19:07:32] [PASSED] ABGR8888 Height 0
[19:07:32] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:07:32] [PASSED] ABGR8888 Large buffer offset
[19:07:32] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:07:32] [PASSED] ABGR8888 Invalid flag
[19:07:32] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:07:32] [PASSED] ABGR8888 Valid buffer modifier
[19:07:32] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:07:32] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] NV12 Normal sizes
[19:07:32] [PASSED] NV12 Max sizes
[19:07:32] [PASSED] NV12 Invalid pitch
[19:07:32] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:07:32] [PASSED] NV12 different modifier per-plane
[19:07:32] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:07:32] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] NV12 Modifier for inexistent plane
[19:07:32] [PASSED] NV12 Handle for inexistent plane
[19:07:32] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:07:32] [PASSED] YVU420 Normal sizes
[19:07:32] [PASSED] YVU420 Max sizes
[19:07:32] [PASSED] YVU420 Invalid pitch
[19:07:32] [PASSED] YVU420 Different pitches
[19:07:32] [PASSED] YVU420 Different buffer offsets/pitches
[19:07:32] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:07:32] [PASSED] YVU420 Valid modifier
[19:07:32] [PASSED] YVU420 Different modifiers per plane
[19:07:32] [PASSED] YVU420 Modifier for inexistent plane
[19:07:32] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:07:32] [PASSED] X0L2 Normal sizes
[19:07:32] [PASSED] X0L2 Max sizes
[19:07:32] [PASSED] X0L2 Invalid pitch
[19:07:32] [PASSED] X0L2 Pitch greater than minimum required
[19:07:32] [PASSED] X0L2 Handle for inexistent plane
[19:07:32] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:07:32] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:07:32] [PASSED] X0L2 Valid modifier
[19:07:32] [PASSED] X0L2 Modifier for inexistent plane
[19:07:32] =========== [PASSED] drm_test_framebuffer_create ===========
[19:07:32] [PASSED] drm_test_framebuffer_free
[19:07:32] [PASSED] drm_test_framebuffer_init
[19:07:32] [PASSED] drm_test_framebuffer_init_bad_format
[19:07:32] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:07:32] [PASSED] drm_test_framebuffer_lookup
[19:07:32] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:07:32] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:07:32] ================= [PASSED] drm_framebuffer =================
[19:07:32] ================ drm_gem_shmem (8 subtests) ================
[19:07:32] [PASSED] drm_gem_shmem_test_obj_create
[19:07:32] [PASSED] drm_gem_shmem_test_obj_create_private
[19:07:32] [PASSED] drm_gem_shmem_test_pin_pages
[19:07:32] [PASSED] drm_gem_shmem_test_vmap
[19:07:32] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:07:32] [PASSED] drm_gem_shmem_test_get_sg_table
[19:07:32] [PASSED] drm_gem_shmem_test_madvise
[19:07:32] [PASSED] drm_gem_shmem_test_purge
[19:07:32] ================== [PASSED] drm_gem_shmem ==================
[19:07:32] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:07:32] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:07:32] [PASSED] Automatic
[19:07:32] [PASSED] Full
[19:07:32] [PASSED] Limited 16:235
[19:07:32] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:07:32] [PASSED] drm_test_check_disable_connector
[19:07:32] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:07:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:07:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:07:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:07:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:07:32] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:07:32] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:07:32] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:07:32] [PASSED] drm_test_check_output_bpc_dvi
[19:07:32] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:07:32] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:07:32] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:07:32] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:07:32] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:07:32] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:07:32] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:07:32] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:07:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:07:32] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:07:32] [PASSED] drm_test_check_broadcast_rgb_value
[19:07:32] [PASSED] drm_test_check_bpc_8_value
[19:07:32] [PASSED] drm_test_check_bpc_10_value
[19:07:32] [PASSED] drm_test_check_bpc_12_value
[19:07:32] [PASSED] drm_test_check_format_value
[19:07:32] [PASSED] drm_test_check_tmds_char_value
[19:07:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:07:32] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:07:32] [PASSED] drm_test_check_mode_valid
[19:07:32] [PASSED] drm_test_check_mode_valid_reject
[19:07:32] [PASSED] drm_test_check_mode_valid_reject_rate
[19:07:32] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:07:32] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:07:32] ================= drm_managed (2 subtests) =================
[19:07:32] [PASSED] drm_test_managed_release_action
[19:07:32] [PASSED] drm_test_managed_run_action
[19:07:32] =================== [PASSED] drm_managed ===================
[19:07:32] =================== drm_mm (6 subtests) ====================
[19:07:32] [PASSED] drm_test_mm_init
[19:07:32] [PASSED] drm_test_mm_debug
[19:07:32] [PASSED] drm_test_mm_align32
[19:07:32] [PASSED] drm_test_mm_align64
[19:07:32] [PASSED] drm_test_mm_lowest
[19:07:32] [PASSED] drm_test_mm_highest
[19:07:32] ===================== [PASSED] drm_mm ======================
[19:07:32] ============= drm_modes_analog_tv (5 subtests) =============
[19:07:32] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:07:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:07:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:07:32] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:07:32] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:07:32] =============== [PASSED] drm_modes_analog_tv ===============
[19:07:32] ============== drm_plane_helper (2 subtests) ===============
[19:07:32] =============== drm_test_check_plane_state ================
[19:07:32] [PASSED] clipping_simple
[19:07:32] [PASSED] clipping_rotate_reflect
[19:07:32] [PASSED] positioning_simple
[19:07:32] [PASSED] upscaling
[19:07:32] [PASSED] downscaling
[19:07:32] [PASSED] rounding1
[19:07:32] [PASSED] rounding2
[19:07:32] [PASSED] rounding3
[19:07:32] [PASSED] rounding4
[19:07:32] =========== [PASSED] drm_test_check_plane_state ============
[19:07:32] =========== drm_test_check_invalid_plane_state ============
[19:07:32] [PASSED] positioning_invalid
[19:07:32] [PASSED] upscaling_invalid
[19:07:32] [PASSED] downscaling_invalid
[19:07:32] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:07:32] ================ [PASSED] drm_plane_helper =================
[19:07:32] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:07:32] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:07:32] [PASSED] None
[19:07:32] [PASSED] PAL
[19:07:32] [PASSED] NTSC
[19:07:32] [PASSED] Both, NTSC Default
[19:07:32] [PASSED] Both, PAL Default
[19:07:32] [PASSED] Both, NTSC Default, with PAL on command-line
[19:07:32] [PASSED] Both, PAL Default, with NTSC on command-line
[19:07:32] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:07:32] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:07:32] ================== drm_rect (9 subtests) ===================
[19:07:32] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:07:32] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:07:32] [PASSED] drm_test_rect_clip_scaled_clipped
[19:07:32] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:07:32] ================= drm_test_rect_intersect =================
[19:07:32] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:07:32] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:07:32] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:07:32] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:07:32] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:07:32] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:07:32] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:07:32] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:07:32] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:07:32] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:07:32] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:07:32] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:07:32] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:07:32] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:07:32] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[19:07:32] ============= [PASSED] drm_test_rect_intersect =============
[19:07:32] ================ drm_test_rect_calc_hscale ================
[19:07:32] [PASSED] normal use
[19:07:32] [PASSED] out of max range
[19:07:32] [PASSED] out of min range
[19:07:32] [PASSED] zero dst
[19:07:32] [PASSED] negative src
[19:07:32] [PASSED] negative dst
[19:07:32] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:07:32] ================ drm_test_rect_calc_vscale ================
[19:07:32] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[19:07:32] [PASSED] out of max range
[19:07:32] [PASSED] out of min range
[19:07:32] [PASSED] zero dst
[19:07:32] [PASSED] negative src
[19:07:32] [PASSED] negative dst
[19:07:32] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:07:32] ================== drm_test_rect_rotate ===================
[19:07:32] [PASSED] reflect-x
[19:07:32] [PASSED] reflect-y
[19:07:32] [PASSED] rotate-0
[19:07:32] [PASSED] rotate-90
[19:07:32] [PASSED] rotate-180
[19:07:32] [PASSED] rotate-270
[19:07:32] ============== [PASSED] drm_test_rect_rotate ===============
[19:07:32] ================ drm_test_rect_rotate_inv =================
[19:07:32] [PASSED] reflect-x
[19:07:32] [PASSED] reflect-y
[19:07:32] [PASSED] rotate-0
[19:07:32] [PASSED] rotate-90
[19:07:32] [PASSED] rotate-180
[19:07:32] [PASSED] rotate-270
[19:07:32] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:07:32] ==================== [PASSED] drm_rect =====================
[19:07:32] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:07:32] ============ drm_test_sysfb_build_fourcc_list =============
[19:07:32] [PASSED] no native formats
[19:07:32] [PASSED] XRGB8888 as native format
[19:07:32] [PASSED] remove duplicates
[19:07:32] [PASSED] convert alpha formats
[19:07:32] [PASSED] random formats
[19:07:32] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:07:32] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:07:32] ============================================================
[19:07:32] Testing complete. Ran 622 tests: passed: 622
[19:07:32] Elapsed time: 27.410s total, 1.775s configuring, 25.218s building, 0.414s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:07:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:07:34] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:07:43] Starting KUnit Kernel (1/1)...
[19:07:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:07:43] ================= ttm_device (5 subtests) ==================
[19:07:43] [PASSED] ttm_device_init_basic
[19:07:43] [PASSED] ttm_device_init_multiple
[19:07:43] [PASSED] ttm_device_fini_basic
[19:07:43] [PASSED] ttm_device_init_no_vma_man
[19:07:43] ================== ttm_device_init_pools ==================
[19:07:43] [PASSED] No DMA allocations, no DMA32 required
[19:07:43] [PASSED] DMA allocations, DMA32 required
[19:07:43] [PASSED] No DMA allocations, DMA32 required
[19:07:43] [PASSED] DMA allocations, no DMA32 required
[19:07:43] ============== [PASSED] ttm_device_init_pools ==============
[19:07:43] =================== [PASSED] ttm_device ====================
[19:07:43] ================== ttm_pool (8 subtests) ===================
[19:07:43] ================== ttm_pool_alloc_basic ===================
[19:07:43] [PASSED] One page
[19:07:43] [PASSED] More than one page
[19:07:43] [PASSED] Above the allocation limit
[19:07:43] [PASSED] One page, with coherent DMA mappings enabled
[19:07:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:07:43] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:07:43] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:07:43] [PASSED] One page
[19:07:43] [PASSED] More than one page
[19:07:43] [PASSED] Above the allocation limit
[19:07:43] [PASSED] One page, with coherent DMA mappings enabled
[19:07:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:07:43] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:07:43] [PASSED] ttm_pool_alloc_order_caching_match
[19:07:43] [PASSED] ttm_pool_alloc_caching_mismatch
[19:07:43] [PASSED] ttm_pool_alloc_order_mismatch
[19:07:43] [PASSED] ttm_pool_free_dma_alloc
[19:07:43] [PASSED] ttm_pool_free_no_dma_alloc
[19:07:43] [PASSED] ttm_pool_fini_basic
[19:07:43] ==================== [PASSED] ttm_pool =====================
[19:07:43] ================ ttm_resource (8 subtests) =================
[19:07:43] ================= ttm_resource_init_basic =================
[19:07:43] [PASSED] Init resource in TTM_PL_SYSTEM
[19:07:43] [PASSED] Init resource in TTM_PL_VRAM
[19:07:43] [PASSED] Init resource in a private placement
[19:07:43] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:07:43] ============= [PASSED] ttm_resource_init_basic =============
[19:07:43] [PASSED] ttm_resource_init_pinned
[19:07:43] [PASSED] ttm_resource_fini_basic
[19:07:43] [PASSED] ttm_resource_manager_init_basic
[19:07:43] [PASSED] ttm_resource_manager_usage_basic
[19:07:43] [PASSED] ttm_resource_manager_set_used_basic
[19:07:43] [PASSED] ttm_sys_man_alloc_basic
[19:07:43] [PASSED] ttm_sys_man_free_basic
[19:07:43] ================== [PASSED] ttm_resource ===================
[19:07:43] =================== ttm_tt (15 subtests) ===================
[19:07:43] ==================== ttm_tt_init_basic ====================
[19:07:43] [PASSED] Page-aligned size
[19:07:43] [PASSED] Extra pages requested
[19:07:43] ================ [PASSED] ttm_tt_init_basic ================
[19:07:43] [PASSED] ttm_tt_init_misaligned
[19:07:43] [PASSED] ttm_tt_fini_basic
[19:07:43] [PASSED] ttm_tt_fini_sg
[19:07:43] [PASSED] ttm_tt_fini_shmem
[19:07:43] [PASSED] ttm_tt_create_basic
[19:07:43] [PASSED] ttm_tt_create_invalid_bo_type
[19:07:43] [PASSED] ttm_tt_create_ttm_exists
[19:07:43] [PASSED] ttm_tt_create_failed
[19:07:43] [PASSED] ttm_tt_destroy_basic
[19:07:43] [PASSED] ttm_tt_populate_null_ttm
[19:07:43] [PASSED] ttm_tt_populate_populated_ttm
[19:07:43] [PASSED] ttm_tt_unpopulate_basic
[19:07:43] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:07:43] [PASSED] ttm_tt_swapin_basic
[19:07:43] ===================== [PASSED] ttm_tt ======================
[19:07:43] =================== ttm_bo (14 subtests) ===================
[19:07:43] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:07:43] [PASSED] Cannot be interrupted and sleeps
[19:07:43] [PASSED] Cannot be interrupted, locks straight away
[19:07:43] [PASSED] Can be interrupted, sleeps
[19:07:43] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:07:43] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:07:43] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:07:43] [PASSED] ttm_bo_reserve_double_resv
[19:07:43] [PASSED] ttm_bo_reserve_interrupted
[19:07:43] [PASSED] ttm_bo_reserve_deadlock
[19:07:43] [PASSED] ttm_bo_unreserve_basic
[19:07:43] [PASSED] ttm_bo_unreserve_pinned
[19:07:43] [PASSED] ttm_bo_unreserve_bulk
[19:07:43] [PASSED] ttm_bo_fini_basic
[19:07:43] [PASSED] ttm_bo_fini_shared_resv
[19:07:43] [PASSED] ttm_bo_pin_basic
[19:07:43] [PASSED] ttm_bo_pin_unpin_resource
[19:07:43] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:07:43] ===================== [PASSED] ttm_bo ======================
[19:07:43] ============== ttm_bo_validate (21 subtests) ===============
[19:07:43] ============== ttm_bo_init_reserved_sys_man ===============
[19:07:43] [PASSED] Buffer object for userspace
[19:07:43] [PASSED] Kernel buffer object
[19:07:43] [PASSED] Shared buffer object
[19:07:43] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:07:43] ============== ttm_bo_init_reserved_mock_man ==============
[19:07:43] [PASSED] Buffer object for userspace
[19:07:43] [PASSED] Kernel buffer object
[19:07:43] [PASSED] Shared buffer object
[19:07:43] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:07:43] [PASSED] ttm_bo_init_reserved_resv
[19:07:43] ================== ttm_bo_validate_basic ==================
[19:07:43] [PASSED] Buffer object for userspace
[19:07:43] [PASSED] Kernel buffer object
[19:07:43] [PASSED] Shared buffer object
[19:07:43] ============== [PASSED] ttm_bo_validate_basic ==============
[19:07:43] [PASSED] ttm_bo_validate_invalid_placement
[19:07:43] ============= ttm_bo_validate_same_placement ==============
[19:07:43] [PASSED] System manager
[19:07:43] [PASSED] VRAM manager
[19:07:43] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:07:43] [PASSED] ttm_bo_validate_failed_alloc
[19:07:43] [PASSED] ttm_bo_validate_pinned
[19:07:43] [PASSED] ttm_bo_validate_busy_placement
[19:07:43] ================ ttm_bo_validate_multihop =================
[19:07:43] [PASSED] Buffer object for userspace
[19:07:43] [PASSED] Kernel buffer object
[19:07:43] [PASSED] Shared buffer object
[19:07:43] ============ [PASSED] ttm_bo_validate_multihop =============
[19:07:43] ========== ttm_bo_validate_no_placement_signaled ==========
[19:07:43] [PASSED] Buffer object in system domain, no page vector
[19:07:43] [PASSED] Buffer object in system domain with an existing page vector
[19:07:43] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:07:43] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:07:43] [PASSED] Buffer object for userspace
[19:07:43] [PASSED] Kernel buffer object
[19:07:43] [PASSED] Shared buffer object
[19:07:43] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:07:43] [PASSED] ttm_bo_validate_move_fence_signaled
[19:07:43] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:07:43] [PASSED] Waits for GPU
[19:07:43] [PASSED] Tries to lock straight away
[19:07:43] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:07:43] [PASSED] ttm_bo_validate_happy_evict
[19:07:43] [PASSED] ttm_bo_validate_all_pinned_evict
[19:07:43] [PASSED] ttm_bo_validate_allowed_only_evict
[19:07:43] [PASSED] ttm_bo_validate_deleted_evict
[19:07:43] [PASSED] ttm_bo_validate_busy_domain_evict
[19:07:43] [PASSED] ttm_bo_validate_evict_gutting
[19:07:43] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:07:43] ================= [PASSED] ttm_bo_validate =================
[19:07:43] ============================================================
[19:07:43] Testing complete. Ran 101 tests: passed: 101
[19:07:44] Elapsed time: 11.306s total, 1.735s configuring, 9.355s building, 0.178s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.Full: failure for Add support for Mesa GPU hang replay tool (rev5)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (10 preceding siblings ...)
2025-11-26 19:07 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-26 20:59 ` Patchwork
2025-11-27 6:02 ` ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev6) Patchwork
` (3 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-26 20:59 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 68874 bytes --]
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev5)
URL : https://patchwork.freedesktop.org/series/143868/
State : failure
== Summary ==
CI Bug Log - changes from xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27_FULL -> xe-pw-143868v5_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-143868v5_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-143868v5_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-143868v5_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_queue_property@invalid-property:
- shard-dg2-set2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-433/igt@xe_exec_queue_property@invalid-property.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-464/igt@xe_exec_queue_property@invalid-property.html
- shard-adlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@xe_exec_queue_property@invalid-property.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@xe_exec_queue_property@invalid-property.html
- shard-bmg: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-7/igt@xe_exec_queue_property@invalid-property.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@xe_exec_queue_property@invalid-property.html
Known issues
------------
Here are the changes found in xe-pw-143868v5_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#1125] / [Intel XE#5574])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@basic:
- shard-adlp: [PASS][8] -> [DMESG-WARN][9] ([Intel XE#2953] / [Intel XE#4173])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-2/igt@kms_addfb_basic@basic.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-2/igt@kms_addfb_basic@basic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-x:
- shard-lnl: NOTRUN -> [FAIL][10] ([Intel XE#6676]) +6 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-edp-1-x.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#316]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#610])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#367]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2669]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#787]) +20 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2325]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#373]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3278])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2390])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#455]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#309])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#5299])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#323])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#3009])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-1/igt@kms_dp_aux_dev.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4354])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4354]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#4331])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2244])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#4422])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2372])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2316])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#310]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2316])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1421]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1401]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2293] / [Intel XE#2380])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2293])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
- shard-adlp: [PASS][65] -> [FAIL][66] ([Intel XE#1874])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#651]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#651]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#651]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +11 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#656]) +12 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#656]) +9 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2312]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4141]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2352])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#6312])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#653]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2313]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#653]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#6312])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1503])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#2925])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2925] / [Intel XE#2927])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][84] ([Intel XE#4658]) +3 other tests fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6691]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#870])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#870])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1131])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1439] / [Intel XE#836])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1439] / [Intel XE#836])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#1489])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr-suspend@edp-1:
- shard-lnl: NOTRUN -> [ABORT][100] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_psr@psr-suspend@edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1435])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6503]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [PASS][103] -> [ABORT][104] ([Intel XE#6675]) +6 other tests abort
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1499])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@kms_vrr@flipline.html
* igt@xe_compute_preempt@compute-preempt:
- shard-adlp: NOTRUN -> [SKIP][106] ([Intel XE#6360])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x8fffe:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#5300])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_copy_basic@mem-copy-linear-0x8fffe.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#1126])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0x8fffe:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#5503])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
* igt@xe_eu_stall@blocking-re-enable:
- shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#5626])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_eu_stall@blocking-re-enable.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#4837]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#4837]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#4837] / [Intel XE#5565]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#5793])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-small-external:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#688]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@xe_evict@evict-beng-small-external.html
* igt@xe_evict@evict-beng-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#261])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_evict@evict-beng-small-multi-vm-cm.html
* igt@xe_evict@evict-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#261] / [Intel XE#688])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_evict@evict-small-multi-vm-cm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#688])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-dg2-set2: [PASS][119] -> [SKIP][120] ([Intel XE#1392])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2322]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-adlp: NOTRUN -> [SKIP][122] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1392])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-rebind:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#288] / [Intel XE#5561]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_exec_fault_mode@many-execqueues-rebind.html
* igt@xe_exec_fault_mode@many-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#288]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_exec_fault_mode@many-rebind-prefetch.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4837]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#5007])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-mmap-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4915]) +31 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_exec_system_allocator@process-many-mmap-huge.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#4915]) +109 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#4943]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-stride-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#4943]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-hang-rebind:
- shard-adlp: [PASS][132] -> [ABORT][133] ([Intel XE#3970])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_exec_threads@threads-hang-rebind.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_exec_threads@threads-hang-rebind.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#5893])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_eudebug:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#455] / [Intel XE#5712])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_mmap@pci-membarrier:
- shard-adlp: NOTRUN -> [SKIP][137] ([Intel XE#5100])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#5100])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#6032])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_oa@buffer-size.html
* igt@xe_oa@invalid-oa-exponent:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#3573]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_oa@invalid-oa-exponent.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1061])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-436/igt@xe_peer2peer@write.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-433/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2284] / [Intel XE#366])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2284])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: NOTRUN -> [ABORT][145] ([Intel XE#6675]) +3 other tests abort
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][146] ([Intel XE#6675])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-1/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][147] -> [ABORT][148] ([Intel XE#6675])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-lnl-1/igt@xe_pm@s4-d3hot-basic-exec.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-7/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [PASS][149] -> [ABORT][150] ([Intel XE#6675]) +1 other test abort
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [PASS][151] -> [ABORT][152] ([Intel XE#6675])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-2/igt@xe_pm@s4-vm-bind-userptr.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pmu@engine-activity-suspend:
- shard-dg2-set2: NOTRUN -> [ABORT][153] ([Intel XE#6675])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-466/igt@xe_pmu@engine-activity-suspend.html
* igt@xe_pxp@pxp-stale-queue-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#4733]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-suspend.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#944])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#944])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_survivability@i2c-functionality:
- shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#6529])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_survivability@i2c-functionality.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][158] ([Intel XE#3908]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: [FAIL][160] ([Intel XE#1231]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: [DMESG-WARN][162] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [SKIP][164] ([Intel XE#2291]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@single-move:
- shard-dg2-set2: [DMESG-WARN][166] ([Intel XE#6363]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-466/igt@kms_cursor_legacy@single-move.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-435/igt@kms_cursor_legacy@single-move.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][168] ([Intel XE#4302]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][170] ([Intel XE#2316]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][172] ([Intel XE#1874]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-bmg: [ABORT][174] ([Intel XE#6662]) -> [PASS][175] +2 other tests pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-1/igt@kms_hdr@bpc-switch-dpms.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: [ABORT][176] ([Intel XE#6675]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-436/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: [ABORT][178] ([Intel XE#2625] / [Intel XE#6675]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-lnl-4/igt@kms_psr@fbc-psr-suspend@edp-1.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-2/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1:
- shard-lnl: [INCOMPLETE][180] ([Intel XE#4488]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [SKIP][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207]) ([Intel XE#378] / [Intel XE#5612]) -> ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-9/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-9/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-9/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-2/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-2/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-2/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-2/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-1/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-9/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-3/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-1/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-1/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-4/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-4/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-4/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-2/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-8/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-8/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-2/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-2/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-4/igt@xe_module_load@load.html
* igt@xe_pm@s4-basic:
- shard-adlp: [ABORT][232] ([Intel XE#6675]) -> [PASS][233] +3 other tests pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-1/igt@xe_pm@s4-basic.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-3/igt@xe_pm@s4-basic.html
* igt@xe_pxp@pxp-stale-queue-post-suspend:
- shard-lnl: [ABORT][234] ([Intel XE#6675]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-lnl-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-lnl-4/igt@xe_pxp@pxp-stale-queue-post-suspend.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][236] ([Intel XE#1178]) -> [SKIP][237] ([Intel XE#2341])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-5/igt@kms_content_protection@srm.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [SKIP][238] -> [FAIL][239] ([Intel XE#1178])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-6/igt@kms_content_protection@suspend-resume.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-adlp: [ABORT][240] ([Intel XE#2953] / [Intel XE#6675]) -> [ABORT][241] ([Intel XE#6675]) +1 other test abort
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [ABORT][242] ([Intel XE#6675]) -> [INCOMPLETE][243] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [ABORT][244] ([Intel XE#6675]) -> [ABORT][245] ([Intel XE#2953] / [Intel XE#6675]) +1 other test abort
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][246] ([Intel XE#2311]) -> [SKIP][247] ([Intel XE#2312]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][248] ([Intel XE#2312]) -> [SKIP][249] ([Intel XE#2311]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][250] ([Intel XE#4141]) -> [SKIP][251] ([Intel XE#2312]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][252] ([Intel XE#2312]) -> [SKIP][253] ([Intel XE#4141]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][254] ([Intel XE#2313]) -> [SKIP][255] ([Intel XE#2312]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][256] ([Intel XE#2312]) -> [SKIP][257] ([Intel XE#2313]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-WARN][258] ([Intel XE#3868]) -> [DMESG-FAIL][259] ([Intel XE#3868])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27/shard-adlp-6/igt@xe_exec_reset@cm-cat-error.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/shard-adlp-6/igt@xe_exec_reset@cm-cat-error.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6363]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6363
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6662]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6662
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6691
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27 -> xe-pw-143868v5
IGT_8639: 2ce563031e6b2ec91479f6af8c326d25c15bdb26 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4154-7a51efcb9c6be1fa6cad319ce1dc7c776db71a27: 7a51efcb9c6be1fa6cad319ce1dc7c776db71a27
xe-pw-143868v5: 143868v5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v5/index.html
[-- Attachment #2: Type: text/html, Size: 80356 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev6)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (11 preceding siblings ...)
2025-11-26 20:59 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-11-27 6:02 ` Patchwork
2025-11-27 6:04 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-27 6:02 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev6)
URL : https://patchwork.freedesktop.org/series/143868/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
2de9a3901bc28757c7906b454717b64e2a214021
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 86a190406f0857fc9d107b84043bb3ba2762ba33
Author: Matthew Brost <matthew.brost@intel.com>
Date: Wed Nov 26 10:59:52 2025 -0800
drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE which sets the exec
queue default state to user data passed in. The intent is for a Mesa
tool to use this replay GPU hangs.
v2:
- Enable the flag DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
- Fix the page size math calculation to avoid a crash
v4:
- Use vmemdup_user (Maarten)
- Copy default state first into LRC, then replay state (Testing, Carlos)
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
+ /mt/dim checkpatch e7a767430515c3a6e8aee91c2a68cba8b06fe884 drm-intel
7bbf1ffd257e drm/xe: Add properties line to VM snapshot capture
e4c79d30ffc9 drm/xe: Add "null_sparse" type to VM snap properties
26b55f7ccdd9 drm/xe: Add mem_region to properties line in VM snapshot capture
188880640ebc drm/xe: Add pat_index to properties line in VM snapshot capture
5ceb9a221d51 drm/xe: Add cpu_caching to properties line in VM snapshot capture
-:16: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#16:
[<vma address>]: <permissions>|<type>|mem_region=0x%x|pat_index=%d|cpu_caching=%d
total: 0 errors, 1 warnings, 0 checks, 31 lines checked
1d4c5216f889 drm/xe: Add VM.uapi_flags to VM snapshot capture
2ac73c168ae5 drm/xe/uapi: Add DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
ffd13f75c632 drm/xe: Add replay_offset and replay_length lines to LRC HWCTX snapshot
86a190406f08 drm/xe: Implement DRM_XE_EXEC_QUEUE_SET_HANG_REPLAY_STATE
^ permalink raw reply [flat|nested] 19+ messages in thread* ✓ CI.KUnit: success for Add support for Mesa GPU hang replay tool (rev6)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (12 preceding siblings ...)
2025-11-27 6:02 ` ✗ CI.checkpatch: warning for Add support for Mesa GPU hang replay tool (rev6) Patchwork
@ 2025-11-27 6:04 ` Patchwork
2025-11-27 7:16 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-11-27 8:18 ` ✗ Xe.CI.Full: " Patchwork
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-27 6:04 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev6)
URL : https://patchwork.freedesktop.org/series/143868/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:02:41] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:02:49] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:03:43] Starting KUnit Kernel (1/1)...
[06:03:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:03:43] ================== guc_buf (11 subtests) ===================
[06:03:43] [PASSED] test_smallest
[06:03:43] [PASSED] test_largest
[06:03:43] [PASSED] test_granular
[06:03:43] [PASSED] test_unique
[06:03:43] [PASSED] test_overlap
[06:03:43] [PASSED] test_reusable
[06:03:43] [PASSED] test_too_big
[06:03:43] [PASSED] test_flush
[06:03:43] [PASSED] test_lookup
[06:03:43] [PASSED] test_data
[06:03:43] [PASSED] test_class
[06:03:43] ===================== [PASSED] guc_buf =====================
[06:03:43] =================== guc_dbm (7 subtests) ===================
[06:03:43] [PASSED] test_empty
[06:03:43] [PASSED] test_default
[06:03:43] ======================== test_size ========================
[06:03:43] [PASSED] 4
[06:03:43] [PASSED] 8
[06:03:43] [PASSED] 32
[06:03:43] [PASSED] 256
[06:03:43] ==================== [PASSED] test_size ====================
[06:03:43] ======================= test_reuse ========================
[06:03:43] [PASSED] 4
[06:03:43] [PASSED] 8
[06:03:43] [PASSED] 32
[06:03:43] [PASSED] 256
[06:03:43] =================== [PASSED] test_reuse ====================
[06:03:43] =================== test_range_overlap ====================
[06:03:43] [PASSED] 4
[06:03:43] [PASSED] 8
[06:03:43] [PASSED] 32
[06:03:43] [PASSED] 256
[06:03:43] =============== [PASSED] test_range_overlap ================
[06:03:43] =================== test_range_compact ====================
[06:03:43] [PASSED] 4
[06:03:43] [PASSED] 8
[06:03:43] [PASSED] 32
[06:03:43] [PASSED] 256
[06:03:43] =============== [PASSED] test_range_compact ================
[06:03:43] ==================== test_range_spare =====================
[06:03:43] [PASSED] 4
[06:03:43] [PASSED] 8
[06:03:43] [PASSED] 32
[06:03:43] [PASSED] 256
[06:03:43] ================ [PASSED] test_range_spare =================
[06:03:43] ===================== [PASSED] guc_dbm =====================
[06:03:43] =================== guc_idm (6 subtests) ===================
[06:03:43] [PASSED] bad_init
[06:03:43] [PASSED] no_init
[06:03:43] [PASSED] init_fini
[06:03:43] [PASSED] check_used
[06:03:43] [PASSED] check_quota
[06:03:43] [PASSED] check_all
[06:03:43] ===================== [PASSED] guc_idm =====================
[06:03:43] ================== no_relay (3 subtests) ===================
[06:03:43] [PASSED] xe_drops_guc2pf_if_not_ready
[06:03:43] [PASSED] xe_drops_guc2vf_if_not_ready
[06:03:43] [PASSED] xe_rejects_send_if_not_ready
[06:03:43] ==================== [PASSED] no_relay =====================
[06:03:43] ================== pf_relay (14 subtests) ==================
[06:03:43] [PASSED] pf_rejects_guc2pf_too_short
[06:03:43] [PASSED] pf_rejects_guc2pf_too_long
[06:03:43] [PASSED] pf_rejects_guc2pf_no_payload
[06:03:43] [PASSED] pf_fails_no_payload
[06:03:43] [PASSED] pf_fails_bad_origin
[06:03:43] [PASSED] pf_fails_bad_type
[06:03:43] [PASSED] pf_txn_reports_error
[06:03:43] [PASSED] pf_txn_sends_pf2guc
[06:03:43] [PASSED] pf_sends_pf2guc
[06:03:43] [SKIPPED] pf_loopback_nop
[06:03:43] [SKIPPED] pf_loopback_echo
[06:03:43] [SKIPPED] pf_loopback_fail
[06:03:43] [SKIPPED] pf_loopback_busy
[06:03:43] [SKIPPED] pf_loopback_retry
[06:03:43] ==================== [PASSED] pf_relay =====================
[06:03:43] ================== vf_relay (3 subtests) ===================
[06:03:43] [PASSED] vf_rejects_guc2vf_too_short
[06:03:43] [PASSED] vf_rejects_guc2vf_too_long
[06:03:43] [PASSED] vf_rejects_guc2vf_no_payload
[06:03:43] ==================== [PASSED] vf_relay =====================
[06:03:43] ================ pf_gt_config (6 subtests) =================
[06:03:43] [PASSED] fair_contexts_1vf
[06:03:43] [PASSED] fair_doorbells_1vf
[06:03:43] [PASSED] fair_ggtt_1vf
[06:03:43] ====================== fair_contexts ======================
[06:03:43] [PASSED] 1 VF
[06:03:43] [PASSED] 2 VFs
[06:03:43] [PASSED] 3 VFs
[06:03:43] [PASSED] 4 VFs
[06:03:43] [PASSED] 5 VFs
[06:03:43] [PASSED] 6 VFs
[06:03:43] [PASSED] 7 VFs
[06:03:43] [PASSED] 8 VFs
[06:03:43] [PASSED] 9 VFs
[06:03:43] [PASSED] 10 VFs
[06:03:43] [PASSED] 11 VFs
[06:03:43] [PASSED] 12 VFs
[06:03:43] [PASSED] 13 VFs
[06:03:43] [PASSED] 14 VFs
[06:03:43] [PASSED] 15 VFs
[06:03:43] [PASSED] 16 VFs
[06:03:43] [PASSED] 17 VFs
[06:03:43] [PASSED] 18 VFs
[06:03:43] [PASSED] 19 VFs
[06:03:43] [PASSED] 20 VFs
[06:03:43] [PASSED] 21 VFs
[06:03:43] [PASSED] 22 VFs
[06:03:43] [PASSED] 23 VFs
[06:03:43] [PASSED] 24 VFs
[06:03:43] [PASSED] 25 VFs
[06:03:43] [PASSED] 26 VFs
[06:03:43] [PASSED] 27 VFs
[06:03:43] [PASSED] 28 VFs
[06:03:43] [PASSED] 29 VFs
[06:03:43] [PASSED] 30 VFs
[06:03:43] [PASSED] 31 VFs
[06:03:43] [PASSED] 32 VFs
[06:03:43] [PASSED] 33 VFs
[06:03:43] [PASSED] 34 VFs
[06:03:43] [PASSED] 35 VFs
[06:03:43] [PASSED] 36 VFs
[06:03:43] [PASSED] 37 VFs
[06:03:43] [PASSED] 38 VFs
[06:03:43] [PASSED] 39 VFs
[06:03:43] [PASSED] 40 VFs
[06:03:43] [PASSED] 41 VFs
[06:03:43] [PASSED] 42 VFs
[06:03:43] [PASSED] 43 VFs
[06:03:43] [PASSED] 44 VFs
[06:03:43] [PASSED] 45 VFs
[06:03:43] [PASSED] 46 VFs
[06:03:43] [PASSED] 47 VFs
[06:03:43] [PASSED] 48 VFs
[06:03:43] [PASSED] 49 VFs
[06:03:43] [PASSED] 50 VFs
[06:03:43] [PASSED] 51 VFs
[06:03:43] [PASSED] 52 VFs
[06:03:43] [PASSED] 53 VFs
[06:03:43] [PASSED] 54 VFs
[06:03:43] [PASSED] 55 VFs
[06:03:43] [PASSED] 56 VFs
[06:03:43] [PASSED] 57 VFs
[06:03:43] [PASSED] 58 VFs
[06:03:43] [PASSED] 59 VFs
[06:03:43] [PASSED] 60 VFs
[06:03:43] [PASSED] 61 VFs
[06:03:43] [PASSED] 62 VFs
[06:03:43] [PASSED] 63 VFs
[06:03:43] ================== [PASSED] fair_contexts ==================
[06:03:43] ===================== fair_doorbells ======================
[06:03:43] [PASSED] 1 VF
[06:03:43] [PASSED] 2 VFs
[06:03:43] [PASSED] 3 VFs
[06:03:43] [PASSED] 4 VFs
[06:03:43] [PASSED] 5 VFs
[06:03:43] [PASSED] 6 VFs
[06:03:43] [PASSED] 7 VFs
[06:03:43] [PASSED] 8 VFs
[06:03:43] [PASSED] 9 VFs
[06:03:43] [PASSED] 10 VFs
[06:03:43] [PASSED] 11 VFs
[06:03:43] [PASSED] 12 VFs
[06:03:43] [PASSED] 13 VFs
[06:03:43] [PASSED] 14 VFs
[06:03:43] [PASSED] 15 VFs
[06:03:43] [PASSED] 16 VFs
[06:03:43] [PASSED] 17 VFs
[06:03:43] [PASSED] 18 VFs
[06:03:43] [PASSED] 19 VFs
[06:03:43] [PASSED] 20 VFs
[06:03:43] [PASSED] 21 VFs
[06:03:43] [PASSED] 22 VFs
[06:03:43] [PASSED] 23 VFs
[06:03:43] [PASSED] 24 VFs
[06:03:43] [PASSED] 25 VFs
[06:03:43] [PASSED] 26 VFs
[06:03:43] [PASSED] 27 VFs
[06:03:43] [PASSED] 28 VFs
[06:03:43] [PASSED] 29 VFs
[06:03:43] [PASSED] 30 VFs
[06:03:43] [PASSED] 31 VFs
[06:03:43] [PASSED] 32 VFs
[06:03:43] [PASSED] 33 VFs
[06:03:43] [PASSED] 34 VFs
[06:03:43] [PASSED] 35 VFs
[06:03:43] [PASSED] 36 VFs
[06:03:43] [PASSED] 37 VFs
[06:03:43] [PASSED] 38 VFs
[06:03:43] [PASSED] 39 VFs
[06:03:43] [PASSED] 40 VFs
[06:03:43] [PASSED] 41 VFs
[06:03:43] [PASSED] 42 VFs
[06:03:43] [PASSED] 43 VFs
[06:03:43] [PASSED] 44 VFs
[06:03:43] [PASSED] 45 VFs
[06:03:43] [PASSED] 46 VFs
[06:03:43] [PASSED] 47 VFs
[06:03:43] [PASSED] 48 VFs
[06:03:43] [PASSED] 49 VFs
[06:03:43] [PASSED] 50 VFs
[06:03:43] [PASSED] 51 VFs
[06:03:43] [PASSED] 52 VFs
[06:03:43] [PASSED] 53 VFs
[06:03:43] [PASSED] 54 VFs
[06:03:43] [PASSED] 55 VFs
[06:03:43] [PASSED] 56 VFs
[06:03:43] [PASSED] 57 VFs
[06:03:43] [PASSED] 58 VFs
[06:03:43] [PASSED] 59 VFs
[06:03:43] [PASSED] 60 VFs
[06:03:43] [PASSED] 61 VFs
[06:03:43] [PASSED] 62 VFs
[06:03:43] [PASSED] 63 VFs
[06:03:43] ================= [PASSED] fair_doorbells ==================
[06:03:43] ======================== fair_ggtt ========================
[06:03:43] [PASSED] 1 VF
[06:03:43] [PASSED] 2 VFs
[06:03:43] [PASSED] 3 VFs
[06:03:43] [PASSED] 4 VFs
[06:03:43] [PASSED] 5 VFs
[06:03:43] [PASSED] 6 VFs
[06:03:43] [PASSED] 7 VFs
[06:03:43] [PASSED] 8 VFs
[06:03:43] [PASSED] 9 VFs
[06:03:43] [PASSED] 10 VFs
[06:03:43] [PASSED] 11 VFs
[06:03:43] [PASSED] 12 VFs
[06:03:43] [PASSED] 13 VFs
[06:03:43] [PASSED] 14 VFs
[06:03:43] [PASSED] 15 VFs
[06:03:43] [PASSED] 16 VFs
[06:03:43] [PASSED] 17 VFs
[06:03:43] [PASSED] 18 VFs
[06:03:43] [PASSED] 19 VFs
[06:03:43] [PASSED] 20 VFs
[06:03:43] [PASSED] 21 VFs
[06:03:43] [PASSED] 22 VFs
[06:03:43] [PASSED] 23 VFs
[06:03:43] [PASSED] 24 VFs
[06:03:43] [PASSED] 25 VFs
[06:03:43] [PASSED] 26 VFs
[06:03:43] [PASSED] 27 VFs
[06:03:43] [PASSED] 28 VFs
[06:03:43] [PASSED] 29 VFs
[06:03:43] [PASSED] 30 VFs
[06:03:43] [PASSED] 31 VFs
[06:03:43] [PASSED] 32 VFs
[06:03:43] [PASSED] 33 VFs
[06:03:43] [PASSED] 34 VFs
[06:03:43] [PASSED] 35 VFs
[06:03:43] [PASSED] 36 VFs
[06:03:43] [PASSED] 37 VFs
[06:03:43] [PASSED] 38 VFs
[06:03:43] [PASSED] 39 VFs
[06:03:43] [PASSED] 40 VFs
[06:03:43] [PASSED] 41 VFs
[06:03:43] [PASSED] 42 VFs
[06:03:43] [PASSED] 43 VFs
[06:03:43] [PASSED] 44 VFs
[06:03:43] [PASSED] 45 VFs
[06:03:43] [PASSED] 46 VFs
[06:03:43] [PASSED] 47 VFs
[06:03:43] [PASSED] 48 VFs
[06:03:43] [PASSED] 49 VFs
[06:03:43] [PASSED] 50 VFs
[06:03:43] [PASSED] 51 VFs
[06:03:43] [PASSED] 52 VFs
[06:03:43] [PASSED] 53 VFs
[06:03:43] [PASSED] 54 VFs
[06:03:43] [PASSED] 55 VFs
[06:03:43] [PASSED] 56 VFs
[06:03:43] [PASSED] 57 VFs
[06:03:43] [PASSED] 58 VFs
[06:03:43] [PASSED] 59 VFs
[06:03:43] [PASSED] 60 VFs
[06:03:43] [PASSED] 61 VFs
[06:03:43] [PASSED] 62 VFs
[06:03:43] [PASSED] 63 VFs
[06:03:43] ==================== [PASSED] fair_ggtt ====================
[06:03:43] ================== [PASSED] pf_gt_config ===================
[06:03:43] ===================== lmtt (1 subtest) =====================
[06:03:43] ======================== test_ops =========================
[06:03:43] [PASSED] 2-level
[06:03:43] [PASSED] multi-level
[06:03:43] ==================== [PASSED] test_ops =====================
[06:03:43] ====================== [PASSED] lmtt =======================
[06:03:43] ================= pf_service (11 subtests) =================
[06:03:43] [PASSED] pf_negotiate_any
[06:03:43] [PASSED] pf_negotiate_base_match
[06:03:43] [PASSED] pf_negotiate_base_newer
[06:03:43] [PASSED] pf_negotiate_base_next
[06:03:43] [SKIPPED] pf_negotiate_base_older
[06:03:43] [PASSED] pf_negotiate_base_prev
[06:03:43] [PASSED] pf_negotiate_latest_match
[06:03:43] [PASSED] pf_negotiate_latest_newer
[06:03:43] [PASSED] pf_negotiate_latest_next
[06:03:43] [SKIPPED] pf_negotiate_latest_older
[06:03:43] [SKIPPED] pf_negotiate_latest_prev
[06:03:43] =================== [PASSED] pf_service ====================
[06:03:43] ================= xe_guc_g2g (2 subtests) ==================
[06:03:43] ============== xe_live_guc_g2g_kunit_default ==============
[06:03:43] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[06:03:43] ============== xe_live_guc_g2g_kunit_allmem ===============
[06:03:43] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[06:03:43] =================== [SKIPPED] xe_guc_g2g ===================
[06:03:43] =================== xe_mocs (2 subtests) ===================
[06:03:43] ================ xe_live_mocs_kernel_kunit ================
[06:03:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:03:43] ================ xe_live_mocs_reset_kunit =================
[06:03:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:03:43] ==================== [SKIPPED] xe_mocs =====================
[06:03:43] ================= xe_migrate (2 subtests) ==================
[06:03:43] ================= xe_migrate_sanity_kunit =================
[06:03:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:03:43] ================== xe_validate_ccs_kunit ==================
[06:03:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:03:43] =================== [SKIPPED] xe_migrate ===================
[06:03:43] ================== xe_dma_buf (1 subtest) ==================
[06:03:43] ==================== xe_dma_buf_kunit =====================
[06:03:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:03:43] =================== [SKIPPED] xe_dma_buf ===================
[06:03:43] ================= xe_bo_shrink (1 subtest) =================
[06:03:43] =================== xe_bo_shrink_kunit ====================
[06:03:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:03:43] ================== [SKIPPED] xe_bo_shrink ==================
[06:03:43] ==================== xe_bo (2 subtests) ====================
[06:03:43] ================== xe_ccs_migrate_kunit ===================
[06:03:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:03:43] ==================== xe_bo_evict_kunit ====================
[06:03:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:03:43] ===================== [SKIPPED] xe_bo ======================
[06:03:43] ==================== args (11 subtests) ====================
[06:03:43] [PASSED] count_args_test
[06:03:43] [PASSED] call_args_example
[06:03:43] [PASSED] call_args_test
[06:03:43] [PASSED] drop_first_arg_example
[06:03:43] [PASSED] drop_first_arg_test
[06:03:43] [PASSED] first_arg_example
[06:03:43] [PASSED] first_arg_test
[06:03:43] [PASSED] last_arg_example
[06:03:43] [PASSED] last_arg_test
[06:03:43] [PASSED] pick_arg_example
[06:03:43] [PASSED] sep_comma_example
[06:03:43] ====================== [PASSED] args =======================
[06:03:43] =================== xe_pci (3 subtests) ====================
[06:03:43] ==================== check_graphics_ip ====================
[06:03:43] [PASSED] 12.00 Xe_LP
[06:03:43] [PASSED] 12.10 Xe_LP+
[06:03:43] [PASSED] 12.55 Xe_HPG
[06:03:43] [PASSED] 12.60 Xe_HPC
[06:03:43] [PASSED] 12.70 Xe_LPG
[06:03:43] [PASSED] 12.71 Xe_LPG
[06:03:43] [PASSED] 12.74 Xe_LPG+
[06:03:43] [PASSED] 20.01 Xe2_HPG
[06:03:43] [PASSED] 20.02 Xe2_HPG
[06:03:43] [PASSED] 20.04 Xe2_LPG
[06:03:43] [PASSED] 30.00 Xe3_LPG
[06:03:43] [PASSED] 30.01 Xe3_LPG
[06:03:43] [PASSED] 30.03 Xe3_LPG
[06:03:43] [PASSED] 30.04 Xe3_LPG
[06:03:43] [PASSED] 30.05 Xe3_LPG
[06:03:43] [PASSED] 35.11 Xe3p_XPC
[06:03:43] ================ [PASSED] check_graphics_ip ================
[06:03:43] ===================== check_media_ip ======================
[06:03:43] [PASSED] 12.00 Xe_M
[06:03:43] [PASSED] 12.55 Xe_HPM
[06:03:43] [PASSED] 13.00 Xe_LPM+
[06:03:43] [PASSED] 13.01 Xe2_HPM
[06:03:43] [PASSED] 20.00 Xe2_LPM
[06:03:43] [PASSED] 30.00 Xe3_LPM
[06:03:43] [PASSED] 30.02 Xe3_LPM
[06:03:43] [PASSED] 35.00 Xe3p_LPM
[06:03:43] [PASSED] 35.03 Xe3p_HPM
[06:03:43] ================= [PASSED] check_media_ip ==================
[06:03:43] =================== check_platform_desc ===================
[06:03:43] [PASSED] 0x9A60 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A68 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A70 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A40 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A49 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A59 (TIGERLAKE)
[06:03:43] [PASSED] 0x9A78 (TIGERLAKE)
[06:03:43] [PASSED] 0x9AC0 (TIGERLAKE)
[06:03:43] [PASSED] 0x9AC9 (TIGERLAKE)
[06:03:43] [PASSED] 0x9AD9 (TIGERLAKE)
[06:03:43] [PASSED] 0x9AF8 (TIGERLAKE)
[06:03:43] [PASSED] 0x4C80 (ROCKETLAKE)
[06:03:43] [PASSED] 0x4C8A (ROCKETLAKE)
[06:03:43] [PASSED] 0x4C8B (ROCKETLAKE)
[06:03:43] [PASSED] 0x4C8C (ROCKETLAKE)
[06:03:43] [PASSED] 0x4C90 (ROCKETLAKE)
[06:03:43] [PASSED] 0x4C9A (ROCKETLAKE)
[06:03:43] [PASSED] 0x4680 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4682 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4688 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x468A (ALDERLAKE_S)
[06:03:43] [PASSED] 0x468B (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4690 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4692 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4693 (ALDERLAKE_S)
[06:03:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46AA (ALDERLAKE_P)
[06:03:43] [PASSED] 0x462A (ALDERLAKE_P)
[06:03:43] [PASSED] 0x4626 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x4628 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[06:03:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[06:03:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[06:03:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[06:03:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[06:03:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[06:03:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[06:03:43] [PASSED] 0xA721 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA720 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[06:03:43] [PASSED] 0xA780 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA781 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA782 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA783 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA788 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA789 (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA78A (ALDERLAKE_S)
[06:03:43] [PASSED] 0xA78B (ALDERLAKE_S)
[06:03:43] [PASSED] 0x4905 (DG1)
[06:03:43] [PASSED] 0x4906 (DG1)
[06:03:43] [PASSED] 0x4907 (DG1)
[06:03:43] [PASSED] 0x4908 (DG1)
[06:03:43] [PASSED] 0x4909 (DG1)
[06:03:43] [PASSED] 0x56C0 (DG2)
[06:03:43] [PASSED] 0x56C2 (DG2)
[06:03:43] [PASSED] 0x56C1 (DG2)
[06:03:43] [PASSED] 0x7D51 (METEORLAKE)
[06:03:43] [PASSED] 0x7DD1 (METEORLAKE)
[06:03:43] [PASSED] 0x7D41 (METEORLAKE)
[06:03:43] [PASSED] 0x7D67 (METEORLAKE)
[06:03:43] [PASSED] 0xB640 (METEORLAKE)
[06:03:43] [PASSED] 0x56A0 (DG2)
[06:03:43] [PASSED] 0x56A1 (DG2)
[06:03:43] [PASSED] 0x56A2 (DG2)
[06:03:43] [PASSED] 0x56BE (DG2)
[06:03:43] [PASSED] 0x56BF (DG2)
[06:03:43] [PASSED] 0x5690 (DG2)
[06:03:43] [PASSED] 0x5691 (DG2)
[06:03:43] [PASSED] 0x5692 (DG2)
[06:03:43] [PASSED] 0x56A5 (DG2)
[06:03:43] [PASSED] 0x56A6 (DG2)
[06:03:43] [PASSED] 0x56B0 (DG2)
[06:03:43] [PASSED] 0x56B1 (DG2)
[06:03:43] [PASSED] 0x56BA (DG2)
[06:03:43] [PASSED] 0x56BB (DG2)
[06:03:43] [PASSED] 0x56BC (DG2)
[06:03:43] [PASSED] 0x56BD (DG2)
[06:03:43] [PASSED] 0x5693 (DG2)
[06:03:43] [PASSED] 0x5694 (DG2)
[06:03:43] [PASSED] 0x5695 (DG2)
[06:03:43] [PASSED] 0x56A3 (DG2)
[06:03:43] [PASSED] 0x56A4 (DG2)
[06:03:43] [PASSED] 0x56B2 (DG2)
[06:03:43] [PASSED] 0x56B3 (DG2)
[06:03:43] [PASSED] 0x5696 (DG2)
[06:03:43] [PASSED] 0x5697 (DG2)
[06:03:43] [PASSED] 0xB69 (PVC)
[06:03:43] [PASSED] 0xB6E (PVC)
[06:03:43] [PASSED] 0xBD4 (PVC)
[06:03:43] [PASSED] 0xBD5 (PVC)
[06:03:43] [PASSED] 0xBD6 (PVC)
[06:03:43] [PASSED] 0xBD7 (PVC)
[06:03:43] [PASSED] 0xBD8 (PVC)
[06:03:43] [PASSED] 0xBD9 (PVC)
[06:03:43] [PASSED] 0xBDA (PVC)
[06:03:43] [PASSED] 0xBDB (PVC)
[06:03:43] [PASSED] 0xBE0 (PVC)
[06:03:43] [PASSED] 0xBE1 (PVC)
[06:03:43] [PASSED] 0xBE5 (PVC)
[06:03:43] [PASSED] 0x7D40 (METEORLAKE)
[06:03:43] [PASSED] 0x7D45 (METEORLAKE)
[06:03:43] [PASSED] 0x7D55 (METEORLAKE)
[06:03:43] [PASSED] 0x7D60 (METEORLAKE)
[06:03:43] [PASSED] 0x7DD5 (METEORLAKE)
[06:03:43] [PASSED] 0x6420 (LUNARLAKE)
[06:03:43] [PASSED] 0x64A0 (LUNARLAKE)
[06:03:43] [PASSED] 0x64B0 (LUNARLAKE)
[06:03:43] [PASSED] 0xE202 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE209 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE20B (BATTLEMAGE)
[06:03:43] [PASSED] 0xE20C (BATTLEMAGE)
[06:03:43] [PASSED] 0xE20D (BATTLEMAGE)
[06:03:43] [PASSED] 0xE210 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE211 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE212 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE216 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE220 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE221 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE222 (BATTLEMAGE)
[06:03:43] [PASSED] 0xE223 (BATTLEMAGE)
[06:03:43] [PASSED] 0xB080 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB081 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB082 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB083 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB084 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB085 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB086 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB087 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB08F (PANTHERLAKE)
[06:03:43] [PASSED] 0xB090 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[06:03:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[06:03:43] [PASSED] 0xD740 (NOVALAKE_S)
[06:03:43] [PASSED] 0xD741 (NOVALAKE_S)
[06:03:43] [PASSED] 0xD742 (NOVALAKE_S)
[06:03:43] [PASSED] 0xD743 (NOVALAKE_S)
[06:03:43] [PASSED] 0xD744 (NOVALAKE_S)
[06:03:43] [PASSED] 0xD745 (NOVALAKE_S)
[06:03:43] [PASSED] 0x674C (CRESCENTISLAND)
[06:03:43] [PASSED] 0xFD80 (PANTHERLAKE)
[06:03:43] [PASSED] 0xFD81 (PANTHERLAKE)
[06:03:43] =============== [PASSED] check_platform_desc ===============
[06:03:43] ===================== [PASSED] xe_pci ======================
[06:03:43] =================== xe_rtp (2 subtests) ====================
[06:03:43] =============== xe_rtp_process_to_sr_tests ================
[06:03:43] [PASSED] coalesce-same-reg
[06:03:43] [PASSED] no-match-no-add
[06:03:43] [PASSED] match-or
[06:03:43] [PASSED] match-or-xfail
[06:03:43] [PASSED] no-match-no-add-multiple-rules
[06:03:43] [PASSED] two-regs-two-entries
[06:03:43] [PASSED] clr-one-set-other
[06:03:43] [PASSED] set-field
[06:03:43] [PASSED] conflict-duplicate
[06:03:43] [PASSED] conflict-not-disjoint
[06:03:43] [PASSED] conflict-reg-type
[06:03:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:03:43] ================== xe_rtp_process_tests ===================
[06:03:43] [PASSED] active1
[06:03:43] [PASSED] active2
[06:03:43] [PASSED] active-inactive
[06:03:43] [PASSED] inactive-active
[06:03:43] [PASSED] inactive-1st_or_active-inactive
[06:03:43] [PASSED] inactive-2nd_or_active-inactive
[06:03:43] [PASSED] inactive-last_or_active-inactive
[06:03:43] [PASSED] inactive-no_or_active-inactive
[06:03:43] ============== [PASSED] xe_rtp_process_tests ===============
[06:03:43] ===================== [PASSED] xe_rtp ======================
[06:03:43] ==================== xe_wa (1 subtest) =====================
[06:03:43] ======================== xe_wa_gt =========================
[06:03:43] [PASSED] TIGERLAKE B0
[06:03:43] [PASSED] DG1 A0
[06:03:43] [PASSED] DG1 B0
[06:03:43] [PASSED] ALDERLAKE_S A0
[06:03:43] [PASSED] ALDERLAKE_S B0
[06:03:43] [PASSED] ALDERLAKE_S C0
[06:03:43] [PASSED] ALDERLAKE_S D0
[06:03:43] [PASSED] ALDERLAKE_P A0
[06:03:43] [PASSED] ALDERLAKE_P B0
[06:03:43] [PASSED] ALDERLAKE_P C0
[06:03:43] [PASSED] ALDERLAKE_S RPLS D0
[06:03:43] [PASSED] ALDERLAKE_P RPLU E0
[06:03:43] [PASSED] DG2 G10 C0
[06:03:43] [PASSED] DG2 G11 B1
[06:03:43] [PASSED] DG2 G12 A1
[06:03:43] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:03:43] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:03:43] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[06:03:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[06:03:43] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[06:03:43] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[06:03:43] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[06:03:43] ==================== [PASSED] xe_wa_gt =====================
[06:03:43] ====================== [PASSED] xe_wa ======================
[06:03:43] ============================================================
[06:03:43] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[06:03:43] Elapsed time: 62.038s total, 7.306s configuring, 54.260s building, 0.452s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:03:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:03:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:04:11] Starting KUnit Kernel (1/1)...
[06:04:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:04:11] ============ drm_test_pick_cmdline (2 subtests) ============
[06:04:11] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[06:04:11] =============== drm_test_pick_cmdline_named ===============
[06:04:11] [PASSED] NTSC
[06:04:11] [PASSED] NTSC-J
[06:04:11] [PASSED] PAL
[06:04:11] [PASSED] PAL-M
[06:04:11] =========== [PASSED] drm_test_pick_cmdline_named ===========
[06:04:11] ============== [PASSED] drm_test_pick_cmdline ==============
[06:04:11] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:04:11] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:04:11] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:04:11] =========== drm_validate_clone_mode (2 subtests) ===========
[06:04:11] ============== drm_test_check_in_clone_mode ===============
[06:04:11] [PASSED] in_clone_mode
[06:04:11] [PASSED] not_in_clone_mode
[06:04:11] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:04:11] =============== drm_test_check_valid_clones ===============
[06:04:11] [PASSED] not_in_clone_mode
[06:04:11] [PASSED] valid_clone
[06:04:11] [PASSED] invalid_clone
[06:04:11] =========== [PASSED] drm_test_check_valid_clones ===========
[06:04:11] ============= [PASSED] drm_validate_clone_mode =============
[06:04:11] ============= drm_validate_modeset (1 subtest) =============
[06:04:11] [PASSED] drm_test_check_connector_changed_modeset
[06:04:11] ============== [PASSED] drm_validate_modeset ===============
[06:04:11] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:04:11] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:04:11] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:04:11] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:04:11] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:04:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:04:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:04:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:04:11] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:04:11] ============== drm_bridge_alloc (2 subtests) ===============
[06:04:11] [PASSED] drm_test_drm_bridge_alloc_basic
[06:04:11] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:04:11] ================ [PASSED] drm_bridge_alloc =================
[06:04:11] ================== drm_buddy (8 subtests) ==================
[06:04:11] [PASSED] drm_test_buddy_alloc_limit
[06:04:11] [PASSED] drm_test_buddy_alloc_optimistic
[06:04:11] [PASSED] drm_test_buddy_alloc_pessimistic
[06:04:11] [PASSED] drm_test_buddy_alloc_pathological
[06:04:11] [PASSED] drm_test_buddy_alloc_contiguous
[06:04:11] [PASSED] drm_test_buddy_alloc_clear
[06:04:11] [PASSED] drm_test_buddy_alloc_range_bias
[06:04:11] [PASSED] drm_test_buddy_fragmentation_performance
[06:04:11] ==================== [PASSED] drm_buddy ====================
[06:04:11] ============= drm_cmdline_parser (40 subtests) =============
[06:04:11] [PASSED] drm_test_cmdline_force_d_only
[06:04:11] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:04:11] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:04:11] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:04:11] [PASSED] drm_test_cmdline_force_e_only
[06:04:11] [PASSED] drm_test_cmdline_res
[06:04:11] [PASSED] drm_test_cmdline_res_vesa
[06:04:11] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:04:11] [PASSED] drm_test_cmdline_res_rblank
[06:04:11] [PASSED] drm_test_cmdline_res_bpp
[06:04:11] [PASSED] drm_test_cmdline_res_refresh
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:04:11] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:04:11] [PASSED] drm_test_cmdline_res_margins_force_on
[06:04:11] [PASSED] drm_test_cmdline_res_vesa_margins
[06:04:11] [PASSED] drm_test_cmdline_name
[06:04:11] [PASSED] drm_test_cmdline_name_bpp
[06:04:11] [PASSED] drm_test_cmdline_name_option
[06:04:11] [PASSED] drm_test_cmdline_name_bpp_option
[06:04:11] [PASSED] drm_test_cmdline_rotate_0
[06:04:11] [PASSED] drm_test_cmdline_rotate_90
[06:04:11] [PASSED] drm_test_cmdline_rotate_180
[06:04:11] [PASSED] drm_test_cmdline_rotate_270
[06:04:11] [PASSED] drm_test_cmdline_hmirror
[06:04:11] [PASSED] drm_test_cmdline_vmirror
[06:04:11] [PASSED] drm_test_cmdline_margin_options
[06:04:11] [PASSED] drm_test_cmdline_multiple_options
[06:04:11] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:04:11] [PASSED] drm_test_cmdline_extra_and_option
[06:04:11] [PASSED] drm_test_cmdline_freestanding_options
[06:04:11] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:04:11] [PASSED] drm_test_cmdline_panel_orientation
[06:04:11] ================ drm_test_cmdline_invalid =================
[06:04:11] [PASSED] margin_only
[06:04:11] [PASSED] interlace_only
[06:04:11] [PASSED] res_missing_x
[06:04:11] [PASSED] res_missing_y
[06:04:11] [PASSED] res_bad_y
[06:04:11] [PASSED] res_missing_y_bpp
[06:04:11] [PASSED] res_bad_bpp
[06:04:11] [PASSED] res_bad_refresh
[06:04:11] [PASSED] res_bpp_refresh_force_on_off
[06:04:11] [PASSED] res_invalid_mode
[06:04:11] [PASSED] res_bpp_wrong_place_mode
[06:04:11] [PASSED] name_bpp_refresh
[06:04:11] [PASSED] name_refresh
[06:04:11] [PASSED] name_refresh_wrong_mode
[06:04:11] [PASSED] name_refresh_invalid_mode
[06:04:11] [PASSED] rotate_multiple
[06:04:11] [PASSED] rotate_invalid_val
[06:04:11] [PASSED] rotate_truncated
[06:04:11] [PASSED] invalid_option
[06:04:11] [PASSED] invalid_tv_option
[06:04:11] [PASSED] truncated_tv_option
[06:04:11] ============ [PASSED] drm_test_cmdline_invalid =============
[06:04:11] =============== drm_test_cmdline_tv_options ===============
[06:04:11] [PASSED] NTSC
[06:04:11] [PASSED] NTSC_443
[06:04:11] [PASSED] NTSC_J
[06:04:11] [PASSED] PAL
[06:04:11] [PASSED] PAL_M
[06:04:11] [PASSED] PAL_N
[06:04:11] [PASSED] SECAM
[06:04:11] [PASSED] MONO_525
[06:04:11] [PASSED] MONO_625
[06:04:11] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:04:11] =============== [PASSED] drm_cmdline_parser ================
[06:04:11] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:04:11] [PASSED] drm_test_connector_hdmi_init_valid
[06:04:11] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:04:11] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:04:11] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:04:11] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:04:11] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:04:11] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:04:11] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:04:11] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:04:11] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:04:11] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:04:11] [PASSED] supported_formats=0x3 yuv420_allowed=1
[06:04:11] [PASSED] supported_formats=0x3 yuv420_allowed=0
[06:04:11] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:04:11] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:04:11] [PASSED] drm_test_connector_hdmi_init_null_product
[06:04:11] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:04:11] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:04:11] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:04:11] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:04:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:04:11] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:04:11] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:04:11] ========= drm_test_connector_hdmi_init_type_valid =========
[06:04:11] [PASSED] HDMI-A
[06:04:11] [PASSED] HDMI-B
[06:04:11] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:04:11] ======== drm_test_connector_hdmi_init_type_invalid ========
[06:04:11] [PASSED] Unknown
[06:04:11] [PASSED] VGA
[06:04:11] [PASSED] DVI-I
[06:04:11] [PASSED] DVI-D
[06:04:11] [PASSED] DVI-A
[06:04:11] [PASSED] Composite
[06:04:11] [PASSED] SVIDEO
[06:04:11] [PASSED] LVDS
[06:04:11] [PASSED] Component
[06:04:11] [PASSED] DIN
[06:04:11] [PASSED] DP
[06:04:11] [PASSED] TV
[06:04:11] [PASSED] eDP
[06:04:11] [PASSED] Virtual
[06:04:11] [PASSED] DSI
[06:04:11] [PASSED] DPI
[06:04:11] [PASSED] Writeback
[06:04:11] [PASSED] SPI
[06:04:11] [PASSED] USB
[06:04:11] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:04:11] ============ [PASSED] drmm_connector_hdmi_init =============
[06:04:11] ============= drmm_connector_init (3 subtests) =============
[06:04:11] [PASSED] drm_test_drmm_connector_init
[06:04:11] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:04:11] ========= drm_test_drmm_connector_init_type_valid =========
[06:04:11] [PASSED] Unknown
[06:04:11] [PASSED] VGA
[06:04:11] [PASSED] DVI-I
[06:04:11] [PASSED] DVI-D
[06:04:11] [PASSED] DVI-A
[06:04:11] [PASSED] Composite
[06:04:11] [PASSED] SVIDEO
[06:04:11] [PASSED] LVDS
[06:04:11] [PASSED] Component
[06:04:11] [PASSED] DIN
[06:04:11] [PASSED] DP
[06:04:11] [PASSED] HDMI-A
[06:04:11] [PASSED] HDMI-B
[06:04:11] [PASSED] TV
[06:04:11] [PASSED] eDP
[06:04:11] [PASSED] Virtual
[06:04:11] [PASSED] DSI
[06:04:11] [PASSED] DPI
[06:04:11] [PASSED] Writeback
[06:04:11] [PASSED] SPI
[06:04:11] [PASSED] USB
[06:04:11] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:04:11] =============== [PASSED] drmm_connector_init ===============
[06:04:11] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_init
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:04:11] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[06:04:11] [PASSED] Unknown
[06:04:11] [PASSED] VGA
[06:04:11] [PASSED] DVI-I
[06:04:11] [PASSED] DVI-D
[06:04:11] [PASSED] DVI-A
[06:04:11] [PASSED] Composite
[06:04:11] [PASSED] SVIDEO
[06:04:11] [PASSED] LVDS
[06:04:11] [PASSED] Component
[06:04:11] [PASSED] DIN
[06:04:11] [PASSED] DP
[06:04:11] [PASSED] HDMI-A
[06:04:11] [PASSED] HDMI-B
[06:04:11] [PASSED] TV
[06:04:11] [PASSED] eDP
[06:04:11] [PASSED] Virtual
[06:04:11] [PASSED] DSI
[06:04:11] [PASSED] DPI
[06:04:11] [PASSED] Writeback
[06:04:11] [PASSED] SPI
[06:04:11] [PASSED] USB
[06:04:11] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:04:11] ======== drm_test_drm_connector_dynamic_init_name =========
[06:04:11] [PASSED] Unknown
[06:04:11] [PASSED] VGA
[06:04:11] [PASSED] DVI-I
[06:04:11] [PASSED] DVI-D
[06:04:11] [PASSED] DVI-A
[06:04:11] [PASSED] Composite
[06:04:11] [PASSED] SVIDEO
[06:04:11] [PASSED] LVDS
[06:04:11] [PASSED] Component
[06:04:11] [PASSED] DIN
[06:04:11] [PASSED] DP
[06:04:11] [PASSED] HDMI-A
[06:04:11] [PASSED] HDMI-B
[06:04:11] [PASSED] TV
[06:04:11] [PASSED] eDP
[06:04:11] [PASSED] Virtual
[06:04:11] [PASSED] DSI
[06:04:11] [PASSED] DPI
[06:04:11] [PASSED] Writeback
[06:04:11] [PASSED] SPI
[06:04:11] [PASSED] USB
[06:04:11] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:04:11] =========== [PASSED] drm_connector_dynamic_init ============
[06:04:11] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:04:11] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:04:11] ======= drm_connector_dynamic_register (7 subtests) ========
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:04:11] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:04:11] ========= [PASSED] drm_connector_dynamic_register ==========
[06:04:11] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:04:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:04:11] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:04:11] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:04:11] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:04:11] ========== drm_test_get_tv_mode_from_name_valid ===========
[06:04:11] [PASSED] NTSC
[06:04:11] [PASSED] NTSC-443
[06:04:11] [PASSED] NTSC-J
[06:04:11] [PASSED] PAL
[06:04:11] [PASSED] PAL-M
[06:04:11] [PASSED] PAL-N
[06:04:11] [PASSED] SECAM
[06:04:11] [PASSED] Mono
[06:04:11] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:04:11] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:04:11] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:04:11] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:04:11] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:04:11] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[06:04:11] [PASSED] VIC 96
[06:04:11] [PASSED] VIC 97
[06:04:11] [PASSED] VIC 101
[06:04:11] [PASSED] VIC 102
[06:04:11] [PASSED] VIC 106
[06:04:11] [PASSED] VIC 107
[06:04:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:04:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:04:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:04:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:04:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:04:11] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:04:11] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:04:11] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:04:11] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[06:04:11] [PASSED] Automatic
[06:04:11] [PASSED] Full
[06:04:11] [PASSED] Limited 16:235
[06:04:11] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:04:11] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:04:11] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:04:11] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:04:11] === drm_test_drm_hdmi_connector_get_output_format_name ====
[06:04:11] [PASSED] RGB
[06:04:11] [PASSED] YUV 4:2:0
[06:04:11] [PASSED] YUV 4:2:2
[06:04:11] [PASSED] YUV 4:4:4
[06:04:11] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:04:11] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:04:11] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:04:11] ============= drm_damage_helper (21 subtests) ==============
[06:04:11] [PASSED] drm_test_damage_iter_no_damage
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:04:11] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:04:11] [PASSED] drm_test_damage_iter_simple_damage
[06:04:11] [PASSED] drm_test_damage_iter_single_damage
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:04:11] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:04:11] [PASSED] drm_test_damage_iter_damage
[06:04:11] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:04:11] [PASSED] drm_test_damage_iter_damage_one_outside
[06:04:11] [PASSED] drm_test_damage_iter_damage_src_moved
[06:04:11] [PASSED] drm_test_damage_iter_damage_not_visible
[06:04:11] ================ [PASSED] drm_damage_helper ================
[06:04:11] ============== drm_dp_mst_helper (3 subtests) ==============
[06:04:11] ============== drm_test_dp_mst_calc_pbn_mode ==============
[06:04:11] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:04:11] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:04:11] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:04:11] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:04:11] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:04:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:04:11] ============== drm_test_dp_mst_calc_pbn_div ===============
[06:04:11] [PASSED] Link rate 2000000 lane count 4
[06:04:11] [PASSED] Link rate 2000000 lane count 2
[06:04:11] [PASSED] Link rate 2000000 lane count 1
[06:04:11] [PASSED] Link rate 1350000 lane count 4
[06:04:11] [PASSED] Link rate 1350000 lane count 2
[06:04:11] [PASSED] Link rate 1350000 lane count 1
[06:04:11] [PASSED] Link rate 1000000 lane count 4
[06:04:11] [PASSED] Link rate 1000000 lane count 2
[06:04:11] [PASSED] Link rate 1000000 lane count 1
[06:04:11] [PASSED] Link rate 810000 lane count 4
[06:04:11] [PASSED] Link rate 810000 lane count 2
[06:04:11] [PASSED] Link rate 810000 lane count 1
[06:04:11] [PASSED] Link rate 540000 lane count 4
[06:04:11] [PASSED] Link rate 540000 lane count 2
[06:04:11] [PASSED] Link rate 540000 lane count 1
[06:04:11] [PASSED] Link rate 270000 lane count 4
[06:04:11] [PASSED] Link rate 270000 lane count 2
[06:04:11] [PASSED] Link rate 270000 lane count 1
[06:04:11] [PASSED] Link rate 162000 lane count 4
[06:04:11] [PASSED] Link rate 162000 lane count 2
[06:04:11] [PASSED] Link rate 162000 lane count 1
[06:04:11] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:04:11] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[06:04:11] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:04:11] [PASSED] DP_POWER_UP_PHY with port number
[06:04:11] [PASSED] DP_POWER_DOWN_PHY with port number
[06:04:11] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:04:11] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:04:11] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:04:11] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:04:11] [PASSED] DP_QUERY_PAYLOAD with port number
[06:04:11] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:04:11] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:04:11] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:04:11] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:04:11] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:04:11] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:04:11] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:04:11] [PASSED] DP_REMOTE_I2C_READ with port number
[06:04:11] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:04:11] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:04:11] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:04:11] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:04:11] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:04:11] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:04:11] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:04:11] ================ [PASSED] drm_dp_mst_helper ================
[06:04:11] ================== drm_exec (7 subtests) ===================
[06:04:11] [PASSED] sanitycheck
[06:04:11] [PASSED] test_lock
[06:04:11] [PASSED] test_lock_unlock
[06:04:11] [PASSED] test_duplicates
[06:04:11] [PASSED] test_prepare
[06:04:11] [PASSED] test_prepare_array
[06:04:11] [PASSED] test_multiple_loops
[06:04:11] ==================== [PASSED] drm_exec =====================
[06:04:11] =========== drm_format_helper_test (17 subtests) ===========
[06:04:11] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:04:11] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:04:11] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:04:11] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:04:11] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:04:11] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:04:11] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:04:11] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:04:11] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:04:11] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:04:11] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:04:11] ============== drm_test_fb_xrgb8888_to_mono ===============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:04:11] ==================== drm_test_fb_swab =====================
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ================ [PASSED] drm_test_fb_swab =================
[06:04:11] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:04:11] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[06:04:11] [PASSED] single_pixel_source_buffer
[06:04:11] [PASSED] single_pixel_clip_rectangle
[06:04:11] [PASSED] well_known_colors
[06:04:11] [PASSED] destination_pitch
[06:04:11] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:04:11] ================= drm_test_fb_clip_offset =================
[06:04:11] [PASSED] pass through
[06:04:11] [PASSED] horizontal offset
[06:04:11] [PASSED] vertical offset
[06:04:11] [PASSED] horizontal and vertical offset
[06:04:11] [PASSED] horizontal offset (custom pitch)
[06:04:11] [PASSED] vertical offset (custom pitch)
[06:04:11] [PASSED] horizontal and vertical offset (custom pitch)
[06:04:11] ============= [PASSED] drm_test_fb_clip_offset =============
[06:04:11] =================== drm_test_fb_memcpy ====================
[06:04:11] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:04:11] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:04:11] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:04:11] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:04:11] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:04:11] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:04:11] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:04:11] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:04:11] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:04:11] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:04:11] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:04:11] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:04:11] =============== [PASSED] drm_test_fb_memcpy ================
[06:04:11] ============= [PASSED] drm_format_helper_test ==============
[06:04:11] ================= drm_format (18 subtests) =================
[06:04:11] [PASSED] drm_test_format_block_width_invalid
[06:04:11] [PASSED] drm_test_format_block_width_one_plane
[06:04:11] [PASSED] drm_test_format_block_width_two_plane
[06:04:11] [PASSED] drm_test_format_block_width_three_plane
[06:04:11] [PASSED] drm_test_format_block_width_tiled
[06:04:11] [PASSED] drm_test_format_block_height_invalid
[06:04:11] [PASSED] drm_test_format_block_height_one_plane
[06:04:11] [PASSED] drm_test_format_block_height_two_plane
[06:04:11] [PASSED] drm_test_format_block_height_three_plane
[06:04:11] [PASSED] drm_test_format_block_height_tiled
[06:04:11] [PASSED] drm_test_format_min_pitch_invalid
[06:04:11] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:04:11] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:04:11] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:04:11] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:04:11] [PASSED] drm_test_format_min_pitch_two_plane
[06:04:11] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:04:11] [PASSED] drm_test_format_min_pitch_tiled
[06:04:11] =================== [PASSED] drm_format ====================
[06:04:11] ============== drm_framebuffer (10 subtests) ===============
[06:04:11] ========== drm_test_framebuffer_check_src_coords ==========
[06:04:11] [PASSED] Success: source fits into fb
[06:04:11] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:04:11] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:04:11] [PASSED] Fail: overflowing fb with source width
[06:04:11] [PASSED] Fail: overflowing fb with source height
[06:04:11] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:04:11] [PASSED] drm_test_framebuffer_cleanup
[06:04:11] =============== drm_test_framebuffer_create ===============
[06:04:11] [PASSED] ABGR8888 normal sizes
[06:04:11] [PASSED] ABGR8888 max sizes
[06:04:11] [PASSED] ABGR8888 pitch greater than min required
[06:04:11] [PASSED] ABGR8888 pitch less than min required
[06:04:11] [PASSED] ABGR8888 Invalid width
[06:04:11] [PASSED] ABGR8888 Invalid buffer handle
[06:04:11] [PASSED] No pixel format
[06:04:11] [PASSED] ABGR8888 Width 0
[06:04:11] [PASSED] ABGR8888 Height 0
[06:04:11] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:04:11] [PASSED] ABGR8888 Large buffer offset
[06:04:11] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:04:11] [PASSED] ABGR8888 Invalid flag
[06:04:11] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:04:11] [PASSED] ABGR8888 Valid buffer modifier
[06:04:11] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:04:11] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] NV12 Normal sizes
[06:04:11] [PASSED] NV12 Max sizes
[06:04:11] [PASSED] NV12 Invalid pitch
[06:04:11] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:04:11] [PASSED] NV12 different modifier per-plane
[06:04:11] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:04:11] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] NV12 Modifier for inexistent plane
[06:04:11] [PASSED] NV12 Handle for inexistent plane
[06:04:11] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:04:11] [PASSED] YVU420 Normal sizes
[06:04:11] [PASSED] YVU420 Max sizes
[06:04:11] [PASSED] YVU420 Invalid pitch
[06:04:11] [PASSED] YVU420 Different pitches
[06:04:11] [PASSED] YVU420 Different buffer offsets/pitches
[06:04:11] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:04:11] [PASSED] YVU420 Valid modifier
[06:04:11] [PASSED] YVU420 Different modifiers per plane
[06:04:11] [PASSED] YVU420 Modifier for inexistent plane
[06:04:11] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:04:11] [PASSED] X0L2 Normal sizes
[06:04:11] [PASSED] X0L2 Max sizes
[06:04:11] [PASSED] X0L2 Invalid pitch
[06:04:11] [PASSED] X0L2 Pitch greater than minimum required
[06:04:11] [PASSED] X0L2 Handle for inexistent plane
[06:04:11] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:04:11] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:04:11] [PASSED] X0L2 Valid modifier
[06:04:11] [PASSED] X0L2 Modifier for inexistent plane
[06:04:11] =========== [PASSED] drm_test_framebuffer_create ===========
[06:04:11] [PASSED] drm_test_framebuffer_free
[06:04:11] [PASSED] drm_test_framebuffer_init
[06:04:11] [PASSED] drm_test_framebuffer_init_bad_format
[06:04:11] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:04:11] [PASSED] drm_test_framebuffer_lookup
[06:04:11] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:04:11] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:04:11] ================= [PASSED] drm_framebuffer =================
[06:04:11] ================ drm_gem_shmem (8 subtests) ================
[06:04:11] [PASSED] drm_gem_shmem_test_obj_create
[06:04:11] [PASSED] drm_gem_shmem_test_obj_create_private
[06:04:11] [PASSED] drm_gem_shmem_test_pin_pages
[06:04:11] [PASSED] drm_gem_shmem_test_vmap
[06:04:11] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:04:11] [PASSED] drm_gem_shmem_test_get_sg_table
[06:04:11] [PASSED] drm_gem_shmem_test_madvise
[06:04:11] [PASSED] drm_gem_shmem_test_purge
[06:04:11] ================== [PASSED] drm_gem_shmem ==================
[06:04:11] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:04:11] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[06:04:11] [PASSED] Automatic
[06:04:11] [PASSED] Full
[06:04:11] [PASSED] Limited 16:235
[06:04:11] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:04:11] [PASSED] drm_test_check_disable_connector
[06:04:11] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:04:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:04:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:04:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:04:11] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:04:11] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:04:11] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:04:11] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:04:11] [PASSED] drm_test_check_output_bpc_dvi
[06:04:11] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:04:11] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:04:11] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:04:11] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:04:11] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:04:11] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:04:11] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:04:11] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:04:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:04:11] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:04:11] [PASSED] drm_test_check_broadcast_rgb_value
[06:04:11] [PASSED] drm_test_check_bpc_8_value
[06:04:11] [PASSED] drm_test_check_bpc_10_value
[06:04:11] [PASSED] drm_test_check_bpc_12_value
[06:04:11] [PASSED] drm_test_check_format_value
[06:04:11] [PASSED] drm_test_check_tmds_char_value
[06:04:11] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:04:11] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:04:11] [PASSED] drm_test_check_mode_valid
[06:04:11] [PASSED] drm_test_check_mode_valid_reject
[06:04:11] [PASSED] drm_test_check_mode_valid_reject_rate
[06:04:11] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:04:11] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:04:11] ================= drm_managed (2 subtests) =================
[06:04:11] [PASSED] drm_test_managed_release_action
[06:04:11] [PASSED] drm_test_managed_run_action
[06:04:11] =================== [PASSED] drm_managed ===================
[06:04:11] =================== drm_mm (6 subtests) ====================
[06:04:11] [PASSED] drm_test_mm_init
[06:04:11] [PASSED] drm_test_mm_debug
[06:04:11] [PASSED] drm_test_mm_align32
[06:04:11] [PASSED] drm_test_mm_align64
[06:04:11] [PASSED] drm_test_mm_lowest
[06:04:11] [PASSED] drm_test_mm_highest
[06:04:11] ===================== [PASSED] drm_mm ======================
[06:04:11] ============= drm_modes_analog_tv (5 subtests) =============
[06:04:11] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:04:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:04:11] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:04:11] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:04:11] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:04:11] =============== [PASSED] drm_modes_analog_tv ===============
[06:04:11] ============== drm_plane_helper (2 subtests) ===============
[06:04:11] =============== drm_test_check_plane_state ================
[06:04:11] [PASSED] clipping_simple
[06:04:11] [PASSED] clipping_rotate_reflect
[06:04:11] [PASSED] positioning_simple
[06:04:11] [PASSED] upscaling
[06:04:11] [PASSED] downscaling
[06:04:11] [PASSED] rounding1
[06:04:11] [PASSED] rounding2
[06:04:11] [PASSED] rounding3
[06:04:11] [PASSED] rounding4
[06:04:11] =========== [PASSED] drm_test_check_plane_state ============
[06:04:11] =========== drm_test_check_invalid_plane_state ============
[06:04:11] [PASSED] positioning_invalid
[06:04:11] [PASSED] upscaling_invalid
[06:04:11] [PASSED] downscaling_invalid
[06:04:11] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:04:11] ================ [PASSED] drm_plane_helper =================
[06:04:11] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:04:11] ====== drm_test_connector_helper_tv_get_modes_check =======
[06:04:11] [PASSED] None
[06:04:11] [PASSED] PAL
[06:04:11] [PASSED] NTSC
[06:04:11] [PASSED] Both, NTSC Default
[06:04:11] [PASSED] Both, PAL Default
[06:04:11] [PASSED] Both, NTSC Default, with PAL on command-line
[06:04:11] [PASSED] Both, PAL Default, with NTSC on command-line
[06:04:11] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:04:11] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:04:11] ================== drm_rect (9 subtests) ===================
[06:04:11] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:04:11] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:04:11] [PASSED] drm_test_rect_clip_scaled_clipped
[06:04:11] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:04:11] ================= drm_test_rect_intersect =================
[06:04:11] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:04:11] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:04:11] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:04:11] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:04:11] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:04:11] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:04:11] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:04:11] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:04:11] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:04:11] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:04:11] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:04:11] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:04:11] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:04:11] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:04:11] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[06:04:11] ============= [PASSED] drm_test_rect_intersect =============
[06:04:11] ================ drm_test_rect_calc_hscale ================
[06:04:11] [PASSED] normal use
[06:04:11] [PASSED] out of max range
[06:04:11] [PASSED] out of min range
[06:04:11] [PASSED] zero dst
[06:04:11] [PASSED] negative src
[06:04:11] [PASSED] negative dst
[06:04:11] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:04:11] ================ drm_test_rect_calc_vscale ================
[06:04:11] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[06:04:11] [PASSED] out of max range
[06:04:11] [PASSED] out of min range
[06:04:11] [PASSED] zero dst
[06:04:11] [PASSED] negative src
[06:04:11] [PASSED] negative dst
[06:04:11] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:04:11] ================== drm_test_rect_rotate ===================
[06:04:11] [PASSED] reflect-x
[06:04:11] [PASSED] reflect-y
[06:04:11] [PASSED] rotate-0
[06:04:11] [PASSED] rotate-90
[06:04:11] [PASSED] rotate-180
[06:04:11] [PASSED] rotate-270
[06:04:11] ============== [PASSED] drm_test_rect_rotate ===============
[06:04:11] ================ drm_test_rect_rotate_inv =================
[06:04:11] [PASSED] reflect-x
[06:04:11] [PASSED] reflect-y
[06:04:11] [PASSED] rotate-0
[06:04:11] [PASSED] rotate-90
[06:04:11] [PASSED] rotate-180
[06:04:11] [PASSED] rotate-270
[06:04:11] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:04:11] ==================== [PASSED] drm_rect =====================
[06:04:11] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:04:11] ============ drm_test_sysfb_build_fourcc_list =============
[06:04:11] [PASSED] no native formats
[06:04:11] [PASSED] XRGB8888 as native format
[06:04:11] [PASSED] remove duplicates
[06:04:11] [PASSED] convert alpha formats
[06:04:11] [PASSED] random formats
[06:04:11] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:04:11] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:04:11] ================== drm_fixp (2 subtests) ===================
[06:04:11] [PASSED] drm_test_int2fixp
[06:04:11] [PASSED] drm_test_sm2fixp
[06:04:11] ==================== [PASSED] drm_fixp =====================
[06:04:11] ============================================================
[06:04:11] Testing complete. Ran 624 tests: passed: 624
[06:04:11] Elapsed time: 27.953s total, 1.757s configuring, 25.726s building, 0.461s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:04:11] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:04:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:04:22] Starting KUnit Kernel (1/1)...
[06:04:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:04:23] ================= ttm_device (5 subtests) ==================
[06:04:23] [PASSED] ttm_device_init_basic
[06:04:23] [PASSED] ttm_device_init_multiple
[06:04:23] [PASSED] ttm_device_fini_basic
[06:04:23] [PASSED] ttm_device_init_no_vma_man
[06:04:23] ================== ttm_device_init_pools ==================
[06:04:23] [PASSED] No DMA allocations, no DMA32 required
[06:04:23] [PASSED] DMA allocations, DMA32 required
[06:04:23] [PASSED] No DMA allocations, DMA32 required
[06:04:23] [PASSED] DMA allocations, no DMA32 required
[06:04:23] ============== [PASSED] ttm_device_init_pools ==============
[06:04:23] =================== [PASSED] ttm_device ====================
[06:04:23] ================== ttm_pool (8 subtests) ===================
[06:04:23] ================== ttm_pool_alloc_basic ===================
[06:04:23] [PASSED] One page
[06:04:23] [PASSED] More than one page
[06:04:23] [PASSED] Above the allocation limit
[06:04:23] [PASSED] One page, with coherent DMA mappings enabled
[06:04:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:04:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:04:23] ============== ttm_pool_alloc_basic_dma_addr ==============
[06:04:23] [PASSED] One page
[06:04:23] [PASSED] More than one page
[06:04:23] [PASSED] Above the allocation limit
[06:04:23] [PASSED] One page, with coherent DMA mappings enabled
[06:04:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:04:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:04:23] [PASSED] ttm_pool_alloc_order_caching_match
[06:04:23] [PASSED] ttm_pool_alloc_caching_mismatch
[06:04:23] [PASSED] ttm_pool_alloc_order_mismatch
[06:04:23] [PASSED] ttm_pool_free_dma_alloc
[06:04:23] [PASSED] ttm_pool_free_no_dma_alloc
[06:04:23] [PASSED] ttm_pool_fini_basic
[06:04:23] ==================== [PASSED] ttm_pool =====================
[06:04:23] ================ ttm_resource (8 subtests) =================
[06:04:23] ================= ttm_resource_init_basic =================
[06:04:23] [PASSED] Init resource in TTM_PL_SYSTEM
[06:04:23] [PASSED] Init resource in TTM_PL_VRAM
[06:04:23] [PASSED] Init resource in a private placement
[06:04:23] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:04:23] ============= [PASSED] ttm_resource_init_basic =============
[06:04:23] [PASSED] ttm_resource_init_pinned
[06:04:23] [PASSED] ttm_resource_fini_basic
[06:04:23] [PASSED] ttm_resource_manager_init_basic
[06:04:23] [PASSED] ttm_resource_manager_usage_basic
[06:04:23] [PASSED] ttm_resource_manager_set_used_basic
[06:04:23] [PASSED] ttm_sys_man_alloc_basic
[06:04:23] [PASSED] ttm_sys_man_free_basic
[06:04:23] ================== [PASSED] ttm_resource ===================
[06:04:23] =================== ttm_tt (15 subtests) ===================
[06:04:23] ==================== ttm_tt_init_basic ====================
[06:04:23] [PASSED] Page-aligned size
[06:04:23] [PASSED] Extra pages requested
[06:04:23] ================ [PASSED] ttm_tt_init_basic ================
[06:04:23] [PASSED] ttm_tt_init_misaligned
[06:04:23] [PASSED] ttm_tt_fini_basic
[06:04:23] [PASSED] ttm_tt_fini_sg
[06:04:23] [PASSED] ttm_tt_fini_shmem
[06:04:23] [PASSED] ttm_tt_create_basic
[06:04:23] [PASSED] ttm_tt_create_invalid_bo_type
[06:04:23] [PASSED] ttm_tt_create_ttm_exists
[06:04:23] [PASSED] ttm_tt_create_failed
[06:04:23] [PASSED] ttm_tt_destroy_basic
[06:04:23] [PASSED] ttm_tt_populate_null_ttm
[06:04:23] [PASSED] ttm_tt_populate_populated_ttm
[06:04:23] [PASSED] ttm_tt_unpopulate_basic
[06:04:23] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:04:23] [PASSED] ttm_tt_swapin_basic
[06:04:23] ===================== [PASSED] ttm_tt ======================
[06:04:23] =================== ttm_bo (14 subtests) ===================
[06:04:23] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[06:04:23] [PASSED] Cannot be interrupted and sleeps
[06:04:23] [PASSED] Cannot be interrupted, locks straight away
[06:04:23] [PASSED] Can be interrupted, sleeps
[06:04:23] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:04:23] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:04:23] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:04:23] [PASSED] ttm_bo_reserve_double_resv
[06:04:23] [PASSED] ttm_bo_reserve_interrupted
[06:04:23] [PASSED] ttm_bo_reserve_deadlock
[06:04:23] [PASSED] ttm_bo_unreserve_basic
[06:04:23] [PASSED] ttm_bo_unreserve_pinned
[06:04:23] [PASSED] ttm_bo_unreserve_bulk
[06:04:23] [PASSED] ttm_bo_fini_basic
[06:04:23] [PASSED] ttm_bo_fini_shared_resv
[06:04:23] [PASSED] ttm_bo_pin_basic
[06:04:23] [PASSED] ttm_bo_pin_unpin_resource
[06:04:23] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:04:23] ===================== [PASSED] ttm_bo ======================
[06:04:23] ============== ttm_bo_validate (21 subtests) ===============
[06:04:23] ============== ttm_bo_init_reserved_sys_man ===============
[06:04:23] [PASSED] Buffer object for userspace
[06:04:23] [PASSED] Kernel buffer object
[06:04:23] [PASSED] Shared buffer object
[06:04:23] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:04:23] ============== ttm_bo_init_reserved_mock_man ==============
[06:04:23] [PASSED] Buffer object for userspace
[06:04:23] [PASSED] Kernel buffer object
[06:04:23] [PASSED] Shared buffer object
[06:04:23] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:04:23] [PASSED] ttm_bo_init_reserved_resv
[06:04:23] ================== ttm_bo_validate_basic ==================
[06:04:23] [PASSED] Buffer object for userspace
[06:04:23] [PASSED] Kernel buffer object
[06:04:23] [PASSED] Shared buffer object
[06:04:23] ============== [PASSED] ttm_bo_validate_basic ==============
[06:04:23] [PASSED] ttm_bo_validate_invalid_placement
[06:04:23] ============= ttm_bo_validate_same_placement ==============
[06:04:23] [PASSED] System manager
[06:04:23] [PASSED] VRAM manager
[06:04:23] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:04:23] [PASSED] ttm_bo_validate_failed_alloc
[06:04:23] [PASSED] ttm_bo_validate_pinned
[06:04:23] [PASSED] ttm_bo_validate_busy_placement
[06:04:23] ================ ttm_bo_validate_multihop =================
[06:04:23] [PASSED] Buffer object for userspace
[06:04:23] [PASSED] Kernel buffer object
[06:04:23] [PASSED] Shared buffer object
[06:04:23] ============ [PASSED] ttm_bo_validate_multihop =============
[06:04:23] ========== ttm_bo_validate_no_placement_signaled ==========
[06:04:23] [PASSED] Buffer object in system domain, no page vector
[06:04:23] [PASSED] Buffer object in system domain with an existing page vector
[06:04:23] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:04:23] ======== ttm_bo_validate_no_placement_not_signaled ========
[06:04:23] [PASSED] Buffer object for userspace
[06:04:23] [PASSED] Kernel buffer object
[06:04:23] [PASSED] Shared buffer object
[06:04:23] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:04:23] [PASSED] ttm_bo_validate_move_fence_signaled
[06:04:23] ========= ttm_bo_validate_move_fence_not_signaled =========
[06:04:23] [PASSED] Waits for GPU
[06:04:23] [PASSED] Tries to lock straight away
[06:04:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:04:23] [PASSED] ttm_bo_validate_happy_evict
[06:04:23] [PASSED] ttm_bo_validate_all_pinned_evict
[06:04:23] [PASSED] ttm_bo_validate_allowed_only_evict
[06:04:23] [PASSED] ttm_bo_validate_deleted_evict
[06:04:23] [PASSED] ttm_bo_validate_busy_domain_evict
[06:04:23] [PASSED] ttm_bo_validate_evict_gutting
[06:04:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[06:04:23] ================= [PASSED] ttm_bo_validate =================
[06:04:23] ============================================================
[06:04:23] Testing complete. Ran 101 tests: passed: 101
[06:04:23] Elapsed time: 11.241s total, 1.654s configuring, 9.370s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.BAT: failure for Add support for Mesa GPU hang replay tool (rev6)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (13 preceding siblings ...)
2025-11-27 6:04 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-27 7:16 ` Patchwork
2025-11-27 8:18 ` ✗ Xe.CI.Full: " Patchwork
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-27 7:16 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 6224 bytes --]
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev6)
URL : https://patchwork.freedesktop.org/series/143868/
State : failure
== Summary ==
CI Bug Log - changes from xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884_BAT -> xe-pw-143868v6_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-143868v6_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-143868v6_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 (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-143868v6_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_queue_property@invalid-property:
- bat-ptl-2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-ptl-2/igt@xe_exec_queue_property@invalid-property.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-ptl-2/igt@xe_exec_queue_property@invalid-property.html
- bat-dg2-oem2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-dg2-oem2/igt@xe_exec_queue_property@invalid-property.html
- bat-atsm-2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-atsm-2/igt@xe_exec_queue_property@invalid-property.html
- bat-adlp-vm: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-adlp-vm/igt@xe_exec_queue_property@invalid-property.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-adlp-vm/igt@xe_exec_queue_property@invalid-property.html
- bat-ptl-1: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-ptl-1/igt@xe_exec_queue_property@invalid-property.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-ptl-1/igt@xe_exec_queue_property@invalid-property.html
- bat-lnl-1: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-lnl-1/igt@xe_exec_queue_property@invalid-property.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-lnl-1/igt@xe_exec_queue_property@invalid-property.html
- bat-ptl-vm: [PASS][13] -> [FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-ptl-vm/igt@xe_exec_queue_property@invalid-property.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-ptl-vm/igt@xe_exec_queue_property@invalid-property.html
- bat-bmg-2: [PASS][15] -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-bmg-2/igt@xe_exec_queue_property@invalid-property.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-bmg-2/igt@xe_exec_queue_property@invalid-property.html
- bat-adlp-7: [PASS][17] -> [FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-adlp-7/igt@xe_exec_queue_property@invalid-property.html
- bat-bmg-1: [PASS][19] -> [FAIL][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-bmg-1/igt@xe_exec_queue_property@invalid-property.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-bmg-1/igt@xe_exec_queue_property@invalid-property.html
- bat-lnl-2: [PASS][21] -> [FAIL][22]
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-lnl-2/igt@xe_exec_queue_property@invalid-property.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-lnl-2/igt@xe_exec_queue_property@invalid-property.html
Known issues
------------
Here are the changes found in xe-pw-143868v6_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][23] -> [TIMEOUT][24] ([Intel XE#6506])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-dg2-oem2/igt@xe_waitfence@abstime.html
#### Possible fixes ####
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [FAIL][25] ([Intel XE#6519]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/bat-dg2-oem2/igt@xe_waitfence@engine.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* Linux: xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884 -> xe-pw-143868v6
IGT_8639: 2ce563031e6b2ec91479f6af8c326d25c15bdb26 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884: e7a767430515c3a6e8aee91c2a68cba8b06fe884
xe-pw-143868v6: 143868v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/index.html
[-- Attachment #2: Type: text/html, Size: 6898 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread* ✗ Xe.CI.Full: failure for Add support for Mesa GPU hang replay tool (rev6)
2025-11-26 18:59 [PATCH v5 0/9] Add support for Mesa GPU hang replay tool Matthew Brost
` (14 preceding siblings ...)
2025-11-27 7:16 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-27 8:18 ` Patchwork
15 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-11-27 8:18 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51843 bytes --]
== Series Details ==
Series: Add support for Mesa GPU hang replay tool (rev6)
URL : https://patchwork.freedesktop.org/series/143868/
State : failure
== Summary ==
CI Bug Log - changes from xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884_FULL -> xe-pw-143868v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-143868v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-143868v6_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-143868v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-dp-2.html
* igt@kms_pm_rpm@legacy-planes@plane-43:
- shard-bmg: [PASS][4] -> [FAIL][5] +5 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-3/igt@kms_pm_rpm@legacy-planes@plane-43.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_pm_rpm@legacy-planes@plane-43.html
* igt@xe_exec_queue_property@invalid-property:
- shard-dg2-set2: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-dg2-435/igt@xe_exec_queue_property@invalid-property.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-432/igt@xe_exec_queue_property@invalid-property.html
- shard-adlp: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@xe_exec_queue_property@invalid-property.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@xe_exec_queue_property@invalid-property.html
Known issues
------------
Here are the changes found in xe-pw-143868v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [FAIL][12] ([Intel XE#1874])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-adlp: NOTRUN -> [SKIP][16] ([Intel XE#367])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +20 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#3442])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#787]) +14 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2724])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-7/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#373]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#1178]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_content_protection@atomic.html
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178]) +3 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2:
- shard-bmg: [PASS][31] -> [ABORT][32] ([Intel XE#6675]) +1 other test abort
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#309])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#323]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#4302])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#4331])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2244])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-adlp: NOTRUN -> [ABORT][39] ([Intel XE#6675]) +5 other tests abort
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2316]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-4/igt@kms_flip@2x-plain-flip-interruptible.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#310]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293] / [Intel XE#2380])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#455]) +12 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y:
- shard-adlp: [PASS][47] -> [FAIL][48] ([Intel XE#1874])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#651]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#656]) +15 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [FAIL][53] ([Intel XE#5671])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4141]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2312]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1151])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#6312])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#6312])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#653]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#653]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2350])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: NOTRUN -> [FAIL][63] ([Intel XE#718])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2-set2: NOTRUN -> [ABORT][64] ([Intel XE#6675]) +2 other tests abort
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-suspend:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_psr@pr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2413])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [PASS][73] -> [ABORT][74] ([Intel XE#6675]) +2 other tests abort
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: NOTRUN -> [ABORT][75] ([Intel XE#6675]) +3 other tests abort
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-7/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@lobf:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#2168])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@kms_vrr@lobf.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_ccs@suspend-resume.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#6360])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x8fffe:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#5300])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_copy_basic@mem-copy-linear-0x8fffe.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#1126])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0x8fffe:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#5503])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#5503])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x8fffe.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable.html
* igt@xe_eudebug_online@single-step-one:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#4837] / [Intel XE#5565]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_evict@evict-beng-small-external-cm.html
* igt@xe_evict@evict-cm-threads-large-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#261])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_evict@evict-cm-threads-large-multi-vm.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#1392] / [Intel XE#5575]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2322]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#288]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#288] / [Intel XE#5561]) +13 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_system_allocator@process-many-execqueues-free:
- shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#4915]) +115 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_exec_system_allocator@process-many-execqueues-free.html
* igt@xe_exec_system_allocator@process-many-execqueues-free-race:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#4915]) +85 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@xe_exec_system_allocator@process-many-execqueues-free-race.html
* igt@xe_exec_system_allocator@twice-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4943]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@xe_exec_system_allocator@twice-mmap-huge-nomemset.html
* igt@xe_mmap@pci-membarrier:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#5100])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@vram:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#1008] / [Intel XE#5591])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_mmap@vram.html
* igt@xe_module_load@load:
- shard-adlp: ([PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121]) -> ([PASS][122], [SKIP][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) ([Intel XE#378] / [Intel XE#5612])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-4/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-4/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-4/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-3/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-4/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-1/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-1/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-1/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-1/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-6/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-8/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-8/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-6/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-8/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-6/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-2/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-2/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-2/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-3/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-3/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-2/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-2/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-3/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-2/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-8/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-8/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-8/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_module_load@load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#6032])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@xe_oa@buffer-size.html
- shard-adlp: NOTRUN -> [SKIP][149] ([Intel XE#6032])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_oa@buffer-size.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#3573]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_oa@syncs-syncobj-cfg.html
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#3573])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html
- shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#4650])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#4733])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-4/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#4733])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#944])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_query@multigpu-query-cs-cycles.html
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#944]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@xe_query@multigpu-query-cs-cycles.html
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#944])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#4130])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-466/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_vm@out-of-memory:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#5745])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-9/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][162] -> [PASS][163] +1 other test pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-3.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-3.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][164] ([Intel XE#2291]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: [SKIP][166] ([Intel XE#2316]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][168] ([Intel XE#301]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][170] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
- shard-adlp: [FAIL][172] ([Intel XE#1874]) -> [PASS][173] +1 other test pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
* igt@xe_exec_system_allocator@processes-evict-malloc:
- shard-bmg: [ABORT][174] ([Intel XE#3970]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-5/igt@xe_exec_system_allocator@processes-evict-malloc.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-7/igt@xe_exec_system_allocator@processes-evict-malloc.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][176] ([Intel XE#6675]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html
- shard-adlp: [ABORT][178] ([Intel XE#6675]) -> [PASS][179] +6 other tests pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-userptr.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-userptr.html
- shard-dg2-set2: [ABORT][180] ([Intel XE#6675]) -> [PASS][181] +1 other test pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-userptr.html
#### Warnings ####
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][182] ([Intel XE#1178]) -> [SKIP][183] ([Intel XE#2341])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-5/igt@kms_content_protection@legacy.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-bmg: [ABORT][184] ([Intel XE#6675]) -> [SKIP][185] ([Intel XE#2316])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][186] ([Intel XE#2312]) -> [SKIP][187] ([Intel XE#2311]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][188] ([Intel XE#2311]) -> [SKIP][189] ([Intel XE#2312]) +9 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][190] ([Intel XE#4141]) -> [SKIP][191] ([Intel XE#2312]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][192] ([Intel XE#2312]) -> [SKIP][193] ([Intel XE#4141]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][194] ([Intel XE#2313]) -> [SKIP][195] ([Intel XE#2312]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][196] ([Intel XE#2312]) -> [SKIP][197] ([Intel XE#2313]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][198] ([Intel XE#362]) -> [FAIL][199] ([Intel XE#1729])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][200] ([Intel XE#2509]) -> [SKIP][201] ([Intel XE#2426])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
[Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884 -> xe-pw-143868v6
IGT_8639: 2ce563031e6b2ec91479f6af8c326d25c15bdb26 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4156-e7a767430515c3a6e8aee91c2a68cba8b06fe884: e7a767430515c3a6e8aee91c2a68cba8b06fe884
xe-pw-143868v6: 143868v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-143868v6/index.html
[-- Attachment #2: Type: text/html, Size: 60055 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread