* [PATCH] drm/xe: Limit number of jobs per exec queue
@ 2025-10-22 18:10 Shuicheng Lin
2025-10-22 18:48 ` Matthew Brost
` (12 more replies)
0 siblings, 13 replies; 19+ messages in thread
From: Shuicheng Lin @ 2025-10-22 18:10 UTC (permalink / raw)
To: intel-xe; +Cc: stuart.summers, Shuicheng Lin, Matthew Brost
Add a limit to the number of jobs that can be queued in a single
exec queue to avoid potential resource exhaustion.
A new field `job_cnt` is introduced in `struct xe_exec_queue` to
track the number of active DRM jobs, along with a maximum limit
`XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
If the job count exceeds this threshold, `xe_exec_ioctl()` now
returns `-EAGAIN` to signal that the caller should retry later.
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_exec.c | 5 +++++
drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
3 files changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 0dc27476832b..722a5ac0200a 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
goto err_exec_queue;
}
+ if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
+ err = -EAGAIN;
+ goto err_exec_queue;
+ }
+
if (args->num_syncs) {
syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
if (!syncs) {
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 282505fa1377..5f3219acec3c 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -162,6 +162,11 @@ struct xe_exec_queue {
const struct xe_ring_ops *ring_ops;
/** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
struct drm_sched_entity *entity;
+
+#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
+
+ /** @job_cnt: number of drm jobs in this exec queue */
+ u32 job_cnt;
/**
* @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
* Protected by @vm's resv. Unused if @vm == NULL.
diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
index d21bf8f26964..37f58be7cbcc 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.c
+++ b/drivers/gpu/drm/xe/xe_sched_job.c
@@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
for (i = 0; i < width; ++i)
job->ptrs[i].batch_addr = batch_addr[i];
+ q->job_cnt++;
xe_pm_runtime_get_noresume(job_to_xe(job));
trace_xe_sched_job_create(job);
return job;
@@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
dma_fence_put(job->fence);
drm_sched_job_cleanup(&job->drm);
job_free(job);
+ q->job_cnt--;
xe_exec_queue_put(q);
xe_pm_runtime_put(xe);
}
--
2.49.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH] drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
@ 2025-10-22 18:48 ` Matthew Brost
2025-10-23 15:51 ` Lin, Shuicheng
2025-10-23 1:04 ` ✓ CI.KUnit: success for " Patchwork
` (11 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Matthew Brost @ 2025-10-22 18:48 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe, stuart.summers
On Wed, Oct 22, 2025 at 06:10:37PM +0000, Shuicheng Lin wrote:
> Add a limit to the number of jobs that can be queued in a single
> exec queue to avoid potential resource exhaustion.
>
> A new field `job_cnt` is introduced in `struct xe_exec_queue` to
> track the number of active DRM jobs, along with a maximum limit
> `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
>
> If the job count exceeds this threshold, `xe_exec_ioctl()` now
> returns `-EAGAIN` to signal that the caller should retry later.
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
> drivers/gpu/drm/xe/xe_exec.c | 5 +++++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> 3 files changed, 12 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 0dc27476832b..722a5ac0200a 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> goto err_exec_queue;
> }
>
> + if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> + err = -EAGAIN;
How about an ftrace point if this occurs? Should help us detect if users
somehow hit this during normal operation.
> + goto err_exec_queue;
> + }
> +
> if (args->num_syncs) {
> syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
> if (!syncs) {
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> index 282505fa1377..5f3219acec3c 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> @@ -162,6 +162,11 @@ struct xe_exec_queue {
> const struct xe_ring_ops *ring_ops;
> /** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
> struct drm_sched_entity *entity;
> +
> +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
Hmm, I'm trying to think of a reasonable limit. 4K seems high. Maybe we
should check with the UMDs to understand the deepest reasonable pipeline
of jobs they build — to avoid blocking them here while still limiting
the DoS surface. My initial thought that 512 or 1k should be a
reasonable limit for now. Can always adjust going forward.
> +
> + /** @job_cnt: number of drm jobs in this exec queue */
> + u32 job_cnt;
This needs to be atomic. xe_sched_job_destroy can run in parallel with
the exec IOCTL.
Everything else looks correct.
Matt
> /**
> * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> * Protected by @vm's resv. Unused if @vm == NULL.
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
> index d21bf8f26964..37f58be7cbcc 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.c
> +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
> for (i = 0; i < width; ++i)
> job->ptrs[i].batch_addr = batch_addr[i];
>
> + q->job_cnt++;
> xe_pm_runtime_get_noresume(job_to_xe(job));
> trace_xe_sched_job_create(job);
> return job;
> @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> dma_fence_put(job->fence);
> drm_sched_job_cleanup(&job->drm);
> job_free(job);
> + q->job_cnt--;
> xe_exec_queue_put(q);
> xe_pm_runtime_put(xe);
> }
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
2025-10-22 18:48 ` Matthew Brost
@ 2025-10-23 1:04 ` Patchwork
2025-10-23 1:43 ` ✗ Xe.CI.BAT: failure " Patchwork
` (10 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-23 1:04 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:03:30] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:03: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
[01:04:05] Starting KUnit Kernel (1/1)...
[01:04:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:04:05] ================== guc_buf (11 subtests) ===================
[01:04:05] [PASSED] test_smallest
[01:04:05] [PASSED] test_largest
[01:04:05] [PASSED] test_granular
[01:04:05] [PASSED] test_unique
[01:04:05] [PASSED] test_overlap
[01:04:05] [PASSED] test_reusable
[01:04:05] [PASSED] test_too_big
[01:04:05] [PASSED] test_flush
[01:04:05] [PASSED] test_lookup
[01:04:05] [PASSED] test_data
[01:04:05] [PASSED] test_class
[01:04:05] ===================== [PASSED] guc_buf =====================
[01:04:05] =================== guc_dbm (7 subtests) ===================
[01:04:05] [PASSED] test_empty
[01:04:05] [PASSED] test_default
[01:04:05] ======================== test_size ========================
[01:04:05] [PASSED] 4
[01:04:05] [PASSED] 8
[01:04:05] [PASSED] 32
[01:04:05] [PASSED] 256
[01:04:05] ==================== [PASSED] test_size ====================
[01:04:05] ======================= test_reuse ========================
[01:04:05] [PASSED] 4
[01:04:05] [PASSED] 8
[01:04:05] [PASSED] 32
[01:04:05] [PASSED] 256
[01:04:05] =================== [PASSED] test_reuse ====================
[01:04:05] =================== test_range_overlap ====================
[01:04:05] [PASSED] 4
[01:04:05] [PASSED] 8
[01:04:05] [PASSED] 32
[01:04:05] [PASSED] 256
[01:04:05] =============== [PASSED] test_range_overlap ================
[01:04:05] =================== test_range_compact ====================
[01:04:05] [PASSED] 4
[01:04:05] [PASSED] 8
[01:04:05] [PASSED] 32
[01:04:05] [PASSED] 256
[01:04:05] =============== [PASSED] test_range_compact ================
[01:04:05] ==================== test_range_spare =====================
[01:04:05] [PASSED] 4
[01:04:05] [PASSED] 8
[01:04:05] [PASSED] 32
[01:04:05] [PASSED] 256
[01:04:05] ================ [PASSED] test_range_spare =================
[01:04:05] ===================== [PASSED] guc_dbm =====================
[01:04:05] =================== guc_idm (6 subtests) ===================
[01:04:05] [PASSED] bad_init
[01:04:05] [PASSED] no_init
[01:04:05] [PASSED] init_fini
[01:04:05] [PASSED] check_used
[01:04:05] [PASSED] check_quota
[01:04:05] [PASSED] check_all
[01:04:05] ===================== [PASSED] guc_idm =====================
[01:04:05] ================== no_relay (3 subtests) ===================
[01:04:05] [PASSED] xe_drops_guc2pf_if_not_ready
[01:04:05] [PASSED] xe_drops_guc2vf_if_not_ready
[01:04:05] [PASSED] xe_rejects_send_if_not_ready
[01:04:05] ==================== [PASSED] no_relay =====================
[01:04:05] ================== pf_relay (14 subtests) ==================
[01:04:05] [PASSED] pf_rejects_guc2pf_too_short
[01:04:05] [PASSED] pf_rejects_guc2pf_too_long
[01:04:05] [PASSED] pf_rejects_guc2pf_no_payload
[01:04:05] [PASSED] pf_fails_no_payload
[01:04:05] [PASSED] pf_fails_bad_origin
[01:04:05] [PASSED] pf_fails_bad_type
[01:04:05] [PASSED] pf_txn_reports_error
[01:04:05] [PASSED] pf_txn_sends_pf2guc
[01:04:05] [PASSED] pf_sends_pf2guc
[01:04:05] [SKIPPED] pf_loopback_nop
[01:04:05] [SKIPPED] pf_loopback_echo
[01:04:05] [SKIPPED] pf_loopback_fail
[01:04:05] [SKIPPED] pf_loopback_busy
[01:04:05] [SKIPPED] pf_loopback_retry
[01:04:05] ==================== [PASSED] pf_relay =====================
[01:04:05] ================== vf_relay (3 subtests) ===================
[01:04:05] [PASSED] vf_rejects_guc2vf_too_short
[01:04:05] [PASSED] vf_rejects_guc2vf_too_long
[01:04:05] [PASSED] vf_rejects_guc2vf_no_payload
[01:04:05] ==================== [PASSED] vf_relay =====================
[01:04:05] ===================== lmtt (1 subtest) =====================
[01:04:05] ======================== test_ops =========================
[01:04:05] [PASSED] 2-level
[01:04:05] [PASSED] multi-level
[01:04:05] ==================== [PASSED] test_ops =====================
[01:04:05] ====================== [PASSED] lmtt =======================
[01:04:05] ================= pf_service (11 subtests) =================
[01:04:05] [PASSED] pf_negotiate_any
[01:04:05] [PASSED] pf_negotiate_base_match
[01:04:05] [PASSED] pf_negotiate_base_newer
[01:04:05] [PASSED] pf_negotiate_base_next
[01:04:05] [SKIPPED] pf_negotiate_base_older
[01:04:05] [PASSED] pf_negotiate_base_prev
[01:04:05] [PASSED] pf_negotiate_latest_match
[01:04:05] [PASSED] pf_negotiate_latest_newer
[01:04:05] [PASSED] pf_negotiate_latest_next
[01:04:05] [SKIPPED] pf_negotiate_latest_older
[01:04:05] [SKIPPED] pf_negotiate_latest_prev
[01:04:05] =================== [PASSED] pf_service ====================
[01:04:05] ================= xe_guc_g2g (2 subtests) ==================
[01:04:05] ============== xe_live_guc_g2g_kunit_default ==============
[01:04:05] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:04:05] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:04:05] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:04:05] =================== [SKIPPED] xe_guc_g2g ===================
[01:04:05] =================== xe_mocs (2 subtests) ===================
[01:04:05] ================ xe_live_mocs_kernel_kunit ================
[01:04:05] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:04:05] ================ xe_live_mocs_reset_kunit =================
[01:04:05] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:04:05] ==================== [SKIPPED] xe_mocs =====================
[01:04:05] ================= xe_migrate (2 subtests) ==================
[01:04:05] ================= xe_migrate_sanity_kunit =================
[01:04:05] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:04:05] ================== xe_validate_ccs_kunit ==================
[01:04:05] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:04:05] =================== [SKIPPED] xe_migrate ===================
[01:04:05] ================== xe_dma_buf (1 subtest) ==================
[01:04:05] ==================== xe_dma_buf_kunit =====================
[01:04:05] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:04:05] =================== [SKIPPED] xe_dma_buf ===================
[01:04:05] ================= xe_bo_shrink (1 subtest) =================
[01:04:05] =================== xe_bo_shrink_kunit ====================
[01:04:05] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:04:05] ================== [SKIPPED] xe_bo_shrink ==================
[01:04:05] ==================== xe_bo (2 subtests) ====================
[01:04:05] ================== xe_ccs_migrate_kunit ===================
[01:04:05] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:04:05] ==================== xe_bo_evict_kunit ====================
[01:04:05] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:04:05] ===================== [SKIPPED] xe_bo ======================
[01:04:05] ==================== args (11 subtests) ====================
[01:04:05] [PASSED] count_args_test
[01:04:05] [PASSED] call_args_example
[01:04:05] [PASSED] call_args_test
[01:04:05] [PASSED] drop_first_arg_example
[01:04:05] [PASSED] drop_first_arg_test
[01:04:05] [PASSED] first_arg_example
[01:04:05] [PASSED] first_arg_test
[01:04:05] [PASSED] last_arg_example
[01:04:05] [PASSED] last_arg_test
[01:04:05] [PASSED] pick_arg_example
[01:04:05] [PASSED] sep_comma_example
[01:04:05] ====================== [PASSED] args =======================
[01:04:05] =================== xe_pci (3 subtests) ====================
[01:04:05] ==================== check_graphics_ip ====================
[01:04:05] [PASSED] 12.00 Xe_LP
[01:04:05] [PASSED] 12.10 Xe_LP+
[01:04:05] [PASSED] 12.55 Xe_HPG
[01:04:05] [PASSED] 12.60 Xe_HPC
[01:04:05] [PASSED] 12.70 Xe_LPG
[01:04:05] [PASSED] 12.71 Xe_LPG
[01:04:05] [PASSED] 12.74 Xe_LPG+
[01:04:05] [PASSED] 20.01 Xe2_HPG
[01:04:05] [PASSED] 20.02 Xe2_HPG
[01:04:05] [PASSED] 20.04 Xe2_LPG
[01:04:05] [PASSED] 30.00 Xe3_LPG
[01:04:05] [PASSED] 30.01 Xe3_LPG
[01:04:05] [PASSED] 30.03 Xe3_LPG
[01:04:05] [PASSED] 30.04 Xe3_LPG
[01:04:05] [PASSED] 30.05 Xe3_LPG
[01:04:05] [PASSED] 35.11 Xe3p_XPC
[01:04:05] ================ [PASSED] check_graphics_ip ================
[01:04:05] ===================== check_media_ip ======================
[01:04:05] [PASSED] 12.00 Xe_M
[01:04:05] [PASSED] 12.55 Xe_HPM
[01:04:05] [PASSED] 13.00 Xe_LPM+
[01:04:05] [PASSED] 13.01 Xe2_HPM
[01:04:05] [PASSED] 20.00 Xe2_LPM
[01:04:05] [PASSED] 30.00 Xe3_LPM
[01:04:05] [PASSED] 30.02 Xe3_LPM
[01:04:05] [PASSED] 35.00 Xe3p_LPM
[01:04:05] [PASSED] 35.03 Xe3p_HPM
[01:04:05] ================= [PASSED] check_media_ip ==================
[01:04:05] =================== check_platform_desc ===================
[01:04:05] [PASSED] 0x9A60 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A68 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A70 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A40 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A49 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A59 (TIGERLAKE)
[01:04:05] [PASSED] 0x9A78 (TIGERLAKE)
[01:04:05] [PASSED] 0x9AC0 (TIGERLAKE)
[01:04:05] [PASSED] 0x9AC9 (TIGERLAKE)
[01:04:05] [PASSED] 0x9AD9 (TIGERLAKE)
[01:04:05] [PASSED] 0x9AF8 (TIGERLAKE)
[01:04:05] [PASSED] 0x4C80 (ROCKETLAKE)
[01:04:05] [PASSED] 0x4C8A (ROCKETLAKE)
[01:04:05] [PASSED] 0x4C8B (ROCKETLAKE)
[01:04:05] [PASSED] 0x4C8C (ROCKETLAKE)
[01:04:05] [PASSED] 0x4C90 (ROCKETLAKE)
[01:04:05] [PASSED] 0x4C9A (ROCKETLAKE)
[01:04:05] [PASSED] 0x4680 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4682 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4688 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x468A (ALDERLAKE_S)
[01:04:05] [PASSED] 0x468B (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4690 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4692 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4693 (ALDERLAKE_S)
[01:04:05] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46AA (ALDERLAKE_P)
[01:04:05] [PASSED] 0x462A (ALDERLAKE_P)
[01:04:05] [PASSED] 0x4626 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x4628 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:04:05] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:04:05] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:04:05] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:04:05] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:04:05] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:04:05] [PASSED] 0xA721 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA720 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:04:05] [PASSED] 0xA780 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA781 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA782 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA783 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA788 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA789 (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA78A (ALDERLAKE_S)
[01:04:05] [PASSED] 0xA78B (ALDERLAKE_S)
[01:04:05] [PASSED] 0x4905 (DG1)
[01:04:05] [PASSED] 0x4906 (DG1)
[01:04:05] [PASSED] 0x4907 (DG1)
[01:04:05] [PASSED] 0x4908 (DG1)
[01:04:05] [PASSED] 0x4909 (DG1)
[01:04:05] [PASSED] 0x56C0 (DG2)
[01:04:05] [PASSED] 0x56C2 (DG2)
[01:04:05] [PASSED] 0x56C1 (DG2)
[01:04:05] [PASSED] 0x7D51 (METEORLAKE)
[01:04:05] [PASSED] 0x7DD1 (METEORLAKE)
[01:04:05] [PASSED] 0x7D41 (METEORLAKE)
[01:04:05] [PASSED] 0x7D67 (METEORLAKE)
[01:04:05] [PASSED] 0xB640 (METEORLAKE)
[01:04:05] [PASSED] 0x56A0 (DG2)
[01:04:05] [PASSED] 0x56A1 (DG2)
[01:04:05] [PASSED] 0x56A2 (DG2)
[01:04:05] [PASSED] 0x56BE (DG2)
[01:04:05] [PASSED] 0x56BF (DG2)
[01:04:05] [PASSED] 0x5690 (DG2)
[01:04:05] [PASSED] 0x5691 (DG2)
[01:04:05] [PASSED] 0x5692 (DG2)
[01:04:05] [PASSED] 0x56A5 (DG2)
[01:04:05] [PASSED] 0x56A6 (DG2)
[01:04:05] [PASSED] 0x56B0 (DG2)
[01:04:05] [PASSED] 0x56B1 (DG2)
[01:04:05] [PASSED] 0x56BA (DG2)
[01:04:05] [PASSED] 0x56BB (DG2)
[01:04:05] [PASSED] 0x56BC (DG2)
[01:04:05] [PASSED] 0x56BD (DG2)
[01:04:05] [PASSED] 0x5693 (DG2)
[01:04:05] [PASSED] 0x5694 (DG2)
[01:04:05] [PASSED] 0x5695 (DG2)
[01:04:05] [PASSED] 0x56A3 (DG2)
[01:04:05] [PASSED] 0x56A4 (DG2)
[01:04:05] [PASSED] 0x56B2 (DG2)
[01:04:05] [PASSED] 0x56B3 (DG2)
[01:04:05] [PASSED] 0x5696 (DG2)
[01:04:05] [PASSED] 0x5697 (DG2)
[01:04:05] [PASSED] 0xB69 (PVC)
[01:04:05] [PASSED] 0xB6E (PVC)
[01:04:05] [PASSED] 0xBD4 (PVC)
[01:04:05] [PASSED] 0xBD5 (PVC)
[01:04:05] [PASSED] 0xBD6 (PVC)
[01:04:05] [PASSED] 0xBD7 (PVC)
[01:04:05] [PASSED] 0xBD8 (PVC)
[01:04:05] [PASSED] 0xBD9 (PVC)
[01:04:05] [PASSED] 0xBDA (PVC)
[01:04:05] [PASSED] 0xBDB (PVC)
[01:04:05] [PASSED] 0xBE0 (PVC)
[01:04:05] [PASSED] 0xBE1 (PVC)
[01:04:05] [PASSED] 0xBE5 (PVC)
[01:04:05] [PASSED] 0x7D40 (METEORLAKE)
[01:04:05] [PASSED] 0x7D45 (METEORLAKE)
[01:04:05] [PASSED] 0x7D55 (METEORLAKE)
[01:04:05] [PASSED] 0x7D60 (METEORLAKE)
[01:04:05] [PASSED] 0x7DD5 (METEORLAKE)
[01:04:05] [PASSED] 0x6420 (LUNARLAKE)
[01:04:05] [PASSED] 0x64A0 (LUNARLAKE)
[01:04:05] [PASSED] 0x64B0 (LUNARLAKE)
[01:04:05] [PASSED] 0xE202 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE209 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE20B (BATTLEMAGE)
[01:04:05] [PASSED] 0xE20C (BATTLEMAGE)
[01:04:05] [PASSED] 0xE20D (BATTLEMAGE)
[01:04:05] [PASSED] 0xE210 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE211 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE212 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE216 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE220 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE221 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE222 (BATTLEMAGE)
[01:04:05] [PASSED] 0xE223 (BATTLEMAGE)
[01:04:05] [PASSED] 0xB080 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB081 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB082 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB083 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB084 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB085 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB086 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB087 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB08F (PANTHERLAKE)
[01:04:05] [PASSED] 0xB090 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:04:05] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:04:05] [PASSED] 0xFD80 (PANTHERLAKE)
[01:04:05] [PASSED] 0xFD81 (PANTHERLAKE)
[01:04:05] [PASSED] 0xD740 (NOVALAKE_S)
[01:04:05] [PASSED] 0xD741 (NOVALAKE_S)
[01:04:05] [PASSED] 0xD742 (NOVALAKE_S)
[01:04:05] [PASSED] 0xD743 (NOVALAKE_S)
[01:04:05] [PASSED] 0xD744 (NOVALAKE_S)
[01:04:05] [PASSED] 0xD745 (NOVALAKE_S)
[01:04:05] =============== [PASSED] check_platform_desc ===============
[01:04:05] ===================== [PASSED] xe_pci ======================
[01:04:05] =================== xe_rtp (2 subtests) ====================
[01:04:05] =============== xe_rtp_process_to_sr_tests ================
[01:04:05] [PASSED] coalesce-same-reg
[01:04:05] [PASSED] no-match-no-add
[01:04:05] [PASSED] match-or
[01:04:05] [PASSED] match-or-xfail
[01:04:05] [PASSED] no-match-no-add-multiple-rules
[01:04:05] [PASSED] two-regs-two-entries
[01:04:05] [PASSED] clr-one-set-other
[01:04:05] [PASSED] set-field
[01:04:05] [PASSED] conflict-duplicate
[01:04:05] [PASSED] conflict-not-disjoint
[01:04:05] [PASSED] conflict-reg-type
[01:04:05] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:04:05] ================== xe_rtp_process_tests ===================
[01:04:05] [PASSED] active1
[01:04:05] [PASSED] active2
[01:04:05] [PASSED] active-inactive
[01:04:05] [PASSED] inactive-active
[01:04:05] [PASSED] inactive-1st_or_active-inactive
[01:04:05] [PASSED] inactive-2nd_or_active-inactive
[01:04:05] [PASSED] inactive-last_or_active-inactive
[01:04:05] [PASSED] inactive-no_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[01:04:05] ============== [PASSED] xe_rtp_process_tests ===============
[01:04:05] ===================== [PASSED] xe_rtp ======================
[01:04:05] ==================== xe_wa (1 subtest) =====================
[01:04:05] ======================== xe_wa_gt =========================
[01:04:05] [PASSED] TIGERLAKE B0
[01:04:05] [PASSED] DG1 A0
[01:04:05] [PASSED] DG1 B0
[01:04:05] [PASSED] ALDERLAKE_S A0
[01:04:05] [PASSED] ALDERLAKE_S B0
[01:04:05] [PASSED] ALDERLAKE_S C0
[01:04:05] [PASSED] ALDERLAKE_S D0
[01:04:05] [PASSED] ALDERLAKE_P A0
[01:04:05] [PASSED] ALDERLAKE_P B0
[01:04:05] [PASSED] ALDERLAKE_P C0
[01:04:05] [PASSED] ALDERLAKE_S RPLS D0
[01:04:05] [PASSED] ALDERLAKE_P RPLU E0
[01:04:05] [PASSED] DG2 G10 C0
[01:04:05] [PASSED] DG2 G11 B1
[01:04:05] [PASSED] DG2 G12 A1
[01:04:05] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:04:05] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:04:05] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:04:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:04:05] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:04:05] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:04:05] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:04:05] ==================== [PASSED] xe_wa_gt =====================
[01:04:05] ====================== [PASSED] xe_wa ======================
[01:04:05] ============================================================
[01:04:05] Testing complete. Ran 317 tests: passed: 299, skipped: 18
[01:04:05] Elapsed time: 35.177s total, 4.243s configuring, 30.568s building, 0.341s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:04:05] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:04:07] 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
[01:04:32] Starting KUnit Kernel (1/1)...
[01:04:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:04:32] ============ drm_test_pick_cmdline (2 subtests) ============
[01:04:32] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:04:32] =============== drm_test_pick_cmdline_named ===============
[01:04:32] [PASSED] NTSC
[01:04:32] [PASSED] NTSC-J
[01:04:32] [PASSED] PAL
[01:04:32] [PASSED] PAL-M
[01:04:32] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:04:32] ============== [PASSED] drm_test_pick_cmdline ==============
[01:04:32] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:04:32] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:04:32] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:04:32] =========== drm_validate_clone_mode (2 subtests) ===========
[01:04:32] ============== drm_test_check_in_clone_mode ===============
[01:04:32] [PASSED] in_clone_mode
[01:04:32] [PASSED] not_in_clone_mode
[01:04:32] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:04:32] =============== drm_test_check_valid_clones ===============
[01:04:32] [PASSED] not_in_clone_mode
[01:04:32] [PASSED] valid_clone
[01:04:32] [PASSED] invalid_clone
[01:04:32] =========== [PASSED] drm_test_check_valid_clones ===========
[01:04:32] ============= [PASSED] drm_validate_clone_mode =============
[01:04:32] ============= drm_validate_modeset (1 subtest) =============
[01:04:32] [PASSED] drm_test_check_connector_changed_modeset
[01:04:32] ============== [PASSED] drm_validate_modeset ===============
[01:04:32] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:04:32] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:04:32] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:04:32] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:04:32] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:04:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:04:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:04:32] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:04:32] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:04:32] ============== drm_bridge_alloc (2 subtests) ===============
[01:04:32] [PASSED] drm_test_drm_bridge_alloc_basic
[01:04:32] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:04:32] ================ [PASSED] drm_bridge_alloc =================
[01:04:32] ================== drm_buddy (8 subtests) ==================
[01:04:32] [PASSED] drm_test_buddy_alloc_limit
[01:04:32] [PASSED] drm_test_buddy_alloc_optimistic
[01:04:32] [PASSED] drm_test_buddy_alloc_pessimistic
[01:04:32] [PASSED] drm_test_buddy_alloc_pathological
[01:04:32] [PASSED] drm_test_buddy_alloc_contiguous
[01:04:32] [PASSED] drm_test_buddy_alloc_clear
[01:04:32] [PASSED] drm_test_buddy_alloc_range_bias
[01:04:32] [PASSED] drm_test_buddy_fragmentation_performance
[01:04:32] ==================== [PASSED] drm_buddy ====================
[01:04:32] ============= drm_cmdline_parser (40 subtests) =============
[01:04:32] [PASSED] drm_test_cmdline_force_d_only
[01:04:32] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:04:32] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:04:32] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:04:32] [PASSED] drm_test_cmdline_force_e_only
[01:04:32] [PASSED] drm_test_cmdline_res
[01:04:32] [PASSED] drm_test_cmdline_res_vesa
[01:04:32] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:04:32] [PASSED] drm_test_cmdline_res_rblank
[01:04:32] [PASSED] drm_test_cmdline_res_bpp
[01:04:32] [PASSED] drm_test_cmdline_res_refresh
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:04:32] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:04:32] [PASSED] drm_test_cmdline_res_margins_force_on
[01:04:32] [PASSED] drm_test_cmdline_res_vesa_margins
[01:04:32] [PASSED] drm_test_cmdline_name
[01:04:32] [PASSED] drm_test_cmdline_name_bpp
[01:04:32] [PASSED] drm_test_cmdline_name_option
[01:04:32] [PASSED] drm_test_cmdline_name_bpp_option
[01:04:32] [PASSED] drm_test_cmdline_rotate_0
[01:04:32] [PASSED] drm_test_cmdline_rotate_90
[01:04:32] [PASSED] drm_test_cmdline_rotate_180
[01:04:32] [PASSED] drm_test_cmdline_rotate_270
[01:04:32] [PASSED] drm_test_cmdline_hmirror
[01:04:32] [PASSED] drm_test_cmdline_vmirror
[01:04:32] [PASSED] drm_test_cmdline_margin_options
[01:04:32] [PASSED] drm_test_cmdline_multiple_options
[01:04:32] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:04:32] [PASSED] drm_test_cmdline_extra_and_option
[01:04:32] [PASSED] drm_test_cmdline_freestanding_options
[01:04:32] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:04:32] [PASSED] drm_test_cmdline_panel_orientation
[01:04:32] ================ drm_test_cmdline_invalid =================
[01:04:32] [PASSED] margin_only
[01:04:32] [PASSED] interlace_only
[01:04:32] [PASSED] res_missing_x
[01:04:32] [PASSED] res_missing_y
[01:04:32] [PASSED] res_bad_y
[01:04:32] [PASSED] res_missing_y_bpp
[01:04:32] [PASSED] res_bad_bpp
[01:04:32] [PASSED] res_bad_refresh
[01:04:32] [PASSED] res_bpp_refresh_force_on_off
[01:04:32] [PASSED] res_invalid_mode
[01:04:32] [PASSED] res_bpp_wrong_place_mode
[01:04:32] [PASSED] name_bpp_refresh
[01:04:32] [PASSED] name_refresh
[01:04:32] [PASSED] name_refresh_wrong_mode
[01:04:32] [PASSED] name_refresh_invalid_mode
[01:04:32] [PASSED] rotate_multiple
[01:04:32] [PASSED] rotate_invalid_val
[01:04:32] [PASSED] rotate_truncated
[01:04:32] [PASSED] invalid_option
[01:04:32] [PASSED] invalid_tv_option
[01:04:32] [PASSED] truncated_tv_option
[01:04:32] ============ [PASSED] drm_test_cmdline_invalid =============
[01:04:32] =============== drm_test_cmdline_tv_options ===============
[01:04:32] [PASSED] NTSC
[01:04:32] [PASSED] NTSC_443
[01:04:32] [PASSED] NTSC_J
[01:04:32] [PASSED] PAL
[01:04:32] [PASSED] PAL_M
[01:04:32] [PASSED] PAL_N
[01:04:32] [PASSED] SECAM
[01:04:32] [PASSED] MONO_525
[01:04:32] [PASSED] MONO_625
[01:04:32] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:04:32] =============== [PASSED] drm_cmdline_parser ================
[01:04:32] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:04:32] [PASSED] drm_test_connector_hdmi_init_valid
[01:04:32] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:04:32] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:04:32] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:04:32] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:04:32] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:04:32] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:04:32] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:04:32] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:04:32] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:04:32] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:04:32] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:04:32] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:04:32] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:04:32] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:04:32] [PASSED] drm_test_connector_hdmi_init_null_product
[01:04:32] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:04:32] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:04:32] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:04:32] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:04:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:04:32] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:04:32] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:04:32] ========= drm_test_connector_hdmi_init_type_valid =========
[01:04:32] [PASSED] HDMI-A
[01:04:32] [PASSED] HDMI-B
[01:04:32] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:04:32] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:04:32] [PASSED] Unknown
[01:04:32] [PASSED] VGA
[01:04:32] [PASSED] DVI-I
[01:04:32] [PASSED] DVI-D
[01:04:32] [PASSED] DVI-A
[01:04:32] [PASSED] Composite
[01:04:32] [PASSED] SVIDEO
[01:04:32] [PASSED] LVDS
[01:04:32] [PASSED] Component
[01:04:32] [PASSED] DIN
[01:04:32] [PASSED] DP
[01:04:32] [PASSED] TV
[01:04:32] [PASSED] eDP
[01:04:32] [PASSED] Virtual
[01:04:32] [PASSED] DSI
[01:04:32] [PASSED] DPI
[01:04:32] [PASSED] Writeback
[01:04:32] [PASSED] SPI
[01:04:32] [PASSED] USB
[01:04:32] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:04:32] ============ [PASSED] drmm_connector_hdmi_init =============
[01:04:32] ============= drmm_connector_init (3 subtests) =============
[01:04:32] [PASSED] drm_test_drmm_connector_init
[01:04:32] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:04:32] ========= drm_test_drmm_connector_init_type_valid =========
[01:04:32] [PASSED] Unknown
[01:04:32] [PASSED] VGA
[01:04:32] [PASSED] DVI-I
[01:04:32] [PASSED] DVI-D
[01:04:32] [PASSED] DVI-A
[01:04:32] [PASSED] Composite
[01:04:32] [PASSED] SVIDEO
[01:04:32] [PASSED] LVDS
[01:04:32] [PASSED] Component
[01:04:32] [PASSED] DIN
[01:04:32] [PASSED] DP
[01:04:32] [PASSED] HDMI-A
[01:04:32] [PASSED] HDMI-B
[01:04:32] [PASSED] TV
[01:04:32] [PASSED] eDP
[01:04:32] [PASSED] Virtual
[01:04:32] [PASSED] DSI
[01:04:32] [PASSED] DPI
[01:04:32] [PASSED] Writeback
[01:04:32] [PASSED] SPI
[01:04:32] [PASSED] USB
[01:04:32] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:04:32] =============== [PASSED] drmm_connector_init ===============
[01:04:32] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_init
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:04:32] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:04:32] [PASSED] Unknown
[01:04:32] [PASSED] VGA
[01:04:32] [PASSED] DVI-I
[01:04:32] [PASSED] DVI-D
[01:04:32] [PASSED] DVI-A
[01:04:32] [PASSED] Composite
[01:04:32] [PASSED] SVIDEO
[01:04:32] [PASSED] LVDS
[01:04:32] [PASSED] Component
[01:04:32] [PASSED] DIN
[01:04:32] [PASSED] DP
[01:04:32] [PASSED] HDMI-A
[01:04:32] [PASSED] HDMI-B
[01:04:32] [PASSED] TV
[01:04:32] [PASSED] eDP
[01:04:32] [PASSED] Virtual
[01:04:32] [PASSED] DSI
[01:04:32] [PASSED] DPI
[01:04:32] [PASSED] Writeback
[01:04:32] [PASSED] SPI
[01:04:32] [PASSED] USB
[01:04:32] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:04:32] ======== drm_test_drm_connector_dynamic_init_name =========
[01:04:32] [PASSED] Unknown
[01:04:32] [PASSED] VGA
[01:04:32] [PASSED] DVI-I
[01:04:32] [PASSED] DVI-D
[01:04:32] [PASSED] DVI-A
[01:04:32] [PASSED] Composite
[01:04:32] [PASSED] SVIDEO
[01:04:32] [PASSED] LVDS
[01:04:32] [PASSED] Component
[01:04:32] [PASSED] DIN
[01:04:32] [PASSED] DP
[01:04:32] [PASSED] HDMI-A
[01:04:32] [PASSED] HDMI-B
[01:04:32] [PASSED] TV
[01:04:32] [PASSED] eDP
[01:04:32] [PASSED] Virtual
[01:04:32] [PASSED] DSI
[01:04:32] [PASSED] DPI
[01:04:32] [PASSED] Writeback
[01:04:32] [PASSED] SPI
[01:04:32] [PASSED] USB
[01:04:32] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:04:32] =========== [PASSED] drm_connector_dynamic_init ============
[01:04:32] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:04:32] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:04:32] ======= drm_connector_dynamic_register (7 subtests) ========
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:04:32] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:04:32] ========= [PASSED] drm_connector_dynamic_register ==========
[01:04:32] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:04:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:04:32] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:04:32] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:04:32] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:04:32] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:04:32] [PASSED] NTSC
[01:04:32] [PASSED] NTSC-443
[01:04:32] [PASSED] NTSC-J
[01:04:32] [PASSED] PAL
[01:04:32] [PASSED] PAL-M
[01:04:32] [PASSED] PAL-N
[01:04:32] [PASSED] SECAM
[01:04:32] [PASSED] Mono
[01:04:32] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:04:32] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:04:32] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:04:32] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:04:32] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:04:32] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:04:32] [PASSED] VIC 96
[01:04:32] [PASSED] VIC 97
[01:04:32] [PASSED] VIC 101
[01:04:32] [PASSED] VIC 102
[01:04:32] [PASSED] VIC 106
[01:04:32] [PASSED] VIC 107
[01:04:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:04:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:04:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:04:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:04:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:04:32] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:04:32] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:04:32] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:04:32] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:04:32] [PASSED] Automatic
[01:04:32] [PASSED] Full
[01:04:32] [PASSED] Limited 16:235
[01:04:32] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:04:32] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:04:32] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:04:32] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:04:32] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:04:32] [PASSED] RGB
[01:04:32] [PASSED] YUV 4:2:0
[01:04:32] [PASSED] YUV 4:2:2
[01:04:32] [PASSED] YUV 4:4:4
[01:04:32] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:04:32] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:04:32] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:04:32] ============= drm_damage_helper (21 subtests) ==============
[01:04:32] [PASSED] drm_test_damage_iter_no_damage
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:04:32] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:04:32] [PASSED] drm_test_damage_iter_simple_damage
[01:04:32] [PASSED] drm_test_damage_iter_single_damage
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:04:32] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:04:32] [PASSED] drm_test_damage_iter_damage
[01:04:32] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:04:32] [PASSED] drm_test_damage_iter_damage_one_outside
[01:04:32] [PASSED] drm_test_damage_iter_damage_src_moved
[01:04:32] [PASSED] drm_test_damage_iter_damage_not_visible
[01:04:32] ================ [PASSED] drm_damage_helper ================
[01:04:32] ============== drm_dp_mst_helper (3 subtests) ==============
[01:04:32] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:04:32] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:04:32] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:04:32] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:04:32] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:04:32] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:04:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:04:32] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:04:32] [PASSED] Link rate 2000000 lane count 4
[01:04:32] [PASSED] Link rate 2000000 lane count 2
[01:04:32] [PASSED] Link rate 2000000 lane count 1
[01:04:32] [PASSED] Link rate 1350000 lane count 4
[01:04:32] [PASSED] Link rate 1350000 lane count 2
[01:04:32] [PASSED] Link rate 1350000 lane count 1
[01:04:32] [PASSED] Link rate 1000000 lane count 4
[01:04:32] [PASSED] Link rate 1000000 lane count 2
[01:04:32] [PASSED] Link rate 1000000 lane count 1
[01:04:32] [PASSED] Link rate 810000 lane count 4
[01:04:32] [PASSED] Link rate 810000 lane count 2
[01:04:32] [PASSED] Link rate 810000 lane count 1
[01:04:32] [PASSED] Link rate 540000 lane count 4
[01:04:32] [PASSED] Link rate 540000 lane count 2
[01:04:32] [PASSED] Link rate 540000 lane count 1
[01:04:32] [PASSED] Link rate 270000 lane count 4
[01:04:32] [PASSED] Link rate 270000 lane count 2
[01:04:32] [PASSED] Link rate 270000 lane count 1
[01:04:32] [PASSED] Link rate 162000 lane count 4
[01:04:32] [PASSED] Link rate 162000 lane count 2
[01:04:32] [PASSED] Link rate 162000 lane count 1
[01:04:32] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:04:32] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:04:32] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:04:32] [PASSED] DP_POWER_UP_PHY with port number
[01:04:32] [PASSED] DP_POWER_DOWN_PHY with port number
[01:04:32] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:04:32] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:04:32] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:04:32] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:04:32] [PASSED] DP_QUERY_PAYLOAD with port number
[01:04:32] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:04:32] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:04:32] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:04:32] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:04:32] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:04:32] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:04:32] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:04:32] [PASSED] DP_REMOTE_I2C_READ with port number
[01:04:32] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:04:32] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:04:32] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:04:32] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:04:32] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:04:32] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:04:32] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:04:32] ================ [PASSED] drm_dp_mst_helper ================
[01:04:32] ================== drm_exec (7 subtests) ===================
[01:04:32] [PASSED] sanitycheck
[01:04:32] [PASSED] test_lock
[01:04:32] [PASSED] test_lock_unlock
[01:04:32] [PASSED] test_duplicates
[01:04:32] [PASSED] test_prepare
[01:04:32] [PASSED] test_prepare_array
[01:04:32] [PASSED] test_multiple_loops
[01:04:32] ==================== [PASSED] drm_exec =====================
[01:04:32] =========== drm_format_helper_test (17 subtests) ===========
[01:04:32] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:04:32] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:04:32] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:04:32] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:04:32] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:04:32] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:04:32] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:04:32] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:04:32] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:04:32] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:04:32] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:04:32] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:04:32] ==================== drm_test_fb_swab =====================
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ================ [PASSED] drm_test_fb_swab =================
[01:04:32] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:04:32] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:04:32] [PASSED] single_pixel_source_buffer
[01:04:32] [PASSED] single_pixel_clip_rectangle
[01:04:32] [PASSED] well_known_colors
[01:04:32] [PASSED] destination_pitch
[01:04:32] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:04:32] ================= drm_test_fb_clip_offset =================
[01:04:32] [PASSED] pass through
[01:04:32] [PASSED] horizontal offset
[01:04:32] [PASSED] vertical offset
[01:04:32] [PASSED] horizontal and vertical offset
[01:04:32] [PASSED] horizontal offset (custom pitch)
[01:04:32] [PASSED] vertical offset (custom pitch)
[01:04:32] [PASSED] horizontal and vertical offset (custom pitch)
[01:04:32] ============= [PASSED] drm_test_fb_clip_offset =============
[01:04:32] =================== drm_test_fb_memcpy ====================
[01:04:32] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:04:32] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:04:32] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:04:32] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:04:32] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:04:32] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:04:32] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:04:32] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:04:32] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:04:32] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:04:32] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:04:32] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:04:32] =============== [PASSED] drm_test_fb_memcpy ================
[01:04:32] ============= [PASSED] drm_format_helper_test ==============
[01:04:32] ================= drm_format (18 subtests) =================
[01:04:32] [PASSED] drm_test_format_block_width_invalid
[01:04:32] [PASSED] drm_test_format_block_width_one_plane
[01:04:32] [PASSED] drm_test_format_block_width_two_plane
[01:04:32] [PASSED] drm_test_format_block_width_three_plane
[01:04:32] [PASSED] drm_test_format_block_width_tiled
[01:04:32] [PASSED] drm_test_format_block_height_invalid
[01:04:32] [PASSED] drm_test_format_block_height_one_plane
[01:04:32] [PASSED] drm_test_format_block_height_two_plane
[01:04:32] [PASSED] drm_test_format_block_height_three_plane
[01:04:32] [PASSED] drm_test_format_block_height_tiled
[01:04:32] [PASSED] drm_test_format_min_pitch_invalid
[01:04:32] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:04:32] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:04:32] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:04:32] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:04:32] [PASSED] drm_test_format_min_pitch_two_plane
[01:04:32] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:04:32] [PASSED] drm_test_format_min_pitch_tiled
[01:04:32] =================== [PASSED] drm_format ====================
[01:04:32] ============== drm_framebuffer (10 subtests) ===============
[01:04:32] ========== drm_test_framebuffer_check_src_coords ==========
[01:04:32] [PASSED] Success: source fits into fb
[01:04:32] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:04:32] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:04:32] [PASSED] Fail: overflowing fb with source width
[01:04:32] [PASSED] Fail: overflowing fb with source height
[01:04:32] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:04:32] [PASSED] drm_test_framebuffer_cleanup
[01:04:32] =============== drm_test_framebuffer_create ===============
[01:04:32] [PASSED] ABGR8888 normal sizes
[01:04:32] [PASSED] ABGR8888 max sizes
[01:04:32] [PASSED] ABGR8888 pitch greater than min required
[01:04:32] [PASSED] ABGR8888 pitch less than min required
[01:04:32] [PASSED] ABGR8888 Invalid width
[01:04:32] [PASSED] ABGR8888 Invalid buffer handle
[01:04:32] [PASSED] No pixel format
[01:04:32] [PASSED] ABGR8888 Width 0
[01:04:32] [PASSED] ABGR8888 Height 0
[01:04:32] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:04:32] [PASSED] ABGR8888 Large buffer offset
[01:04:32] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:04:32] [PASSED] ABGR8888 Invalid flag
[01:04:32] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:04:32] [PASSED] ABGR8888 Valid buffer modifier
[01:04:32] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:04:32] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] NV12 Normal sizes
[01:04:32] [PASSED] NV12 Max sizes
[01:04:32] [PASSED] NV12 Invalid pitch
[01:04:32] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:04:32] [PASSED] NV12 different modifier per-plane
[01:04:32] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:04:32] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] NV12 Modifier for inexistent plane
[01:04:32] [PASSED] NV12 Handle for inexistent plane
[01:04:32] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:04:32] [PASSED] YVU420 Normal sizes
[01:04:32] [PASSED] YVU420 Max sizes
[01:04:32] [PASSED] YVU420 Invalid pitch
[01:04:32] [PASSED] YVU420 Different pitches
[01:04:32] [PASSED] YVU420 Different buffer offsets/pitches
[01:04:32] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:04:32] [PASSED] YVU420 Valid modifier
[01:04:32] [PASSED] YVU420 Different modifiers per plane
[01:04:32] [PASSED] YVU420 Modifier for inexistent plane
[01:04:32] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:04:32] [PASSED] X0L2 Normal sizes
[01:04:32] [PASSED] X0L2 Max sizes
[01:04:32] [PASSED] X0L2 Invalid pitch
[01:04:32] [PASSED] X0L2 Pitch greater than minimum required
[01:04:32] [PASSED] X0L2 Handle for inexistent plane
[01:04:32] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:04:32] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:04:32] [PASSED] X0L2 Valid modifier
[01:04:32] [PASSED] X0L2 Modifier for inexistent plane
[01:04:32] =========== [PASSED] drm_test_framebuffer_create ===========
[01:04:32] [PASSED] drm_test_framebuffer_free
[01:04:32] [PASSED] drm_test_framebuffer_init
[01:04:32] [PASSED] drm_test_framebuffer_init_bad_format
[01:04:32] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:04:32] [PASSED] drm_test_framebuffer_lookup
[01:04:32] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:04:32] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:04:32] ================= [PASSED] drm_framebuffer =================
[01:04:32] ================ drm_gem_shmem (8 subtests) ================
[01:04:32] [PASSED] drm_gem_shmem_test_obj_create
[01:04:32] [PASSED] drm_gem_shmem_test_obj_create_private
[01:04:32] [PASSED] drm_gem_shmem_test_pin_pages
[01:04:32] [PASSED] drm_gem_shmem_test_vmap
[01:04:32] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:04:32] [PASSED] drm_gem_shmem_test_get_sg_table
[01:04:32] [PASSED] drm_gem_shmem_test_madvise
[01:04:32] [PASSED] drm_gem_shmem_test_purge
[01:04:32] ================== [PASSED] drm_gem_shmem ==================
[01:04:32] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:04:32] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:04:32] [PASSED] Automatic
[01:04:32] [PASSED] Full
[01:04:32] [PASSED] Limited 16:235
[01:04:32] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:04:32] [PASSED] drm_test_check_disable_connector
[01:04:32] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:04:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:04:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:04:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:04:32] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:04:32] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:04:32] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:04:32] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:04:32] [PASSED] drm_test_check_output_bpc_dvi
[01:04:32] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:04:32] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:04:32] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:04:32] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:04:32] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:04:32] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:04:32] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:04:32] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:04:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:04:32] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:04:32] [PASSED] drm_test_check_broadcast_rgb_value
[01:04:32] [PASSED] drm_test_check_bpc_8_value
[01:04:32] [PASSED] drm_test_check_bpc_10_value
[01:04:32] [PASSED] drm_test_check_bpc_12_value
[01:04:32] [PASSED] drm_test_check_format_value
[01:04:32] [PASSED] drm_test_check_tmds_char_value
[01:04:32] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:04:32] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:04:32] [PASSED] drm_test_check_mode_valid
[01:04:32] [PASSED] drm_test_check_mode_valid_reject
[01:04:32] [PASSED] drm_test_check_mode_valid_reject_rate
[01:04:32] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:04:32] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:04:32] ================= drm_managed (2 subtests) =================
[01:04:32] [PASSED] drm_test_managed_release_action
[01:04:32] [PASSED] drm_test_managed_run_action
[01:04:32] =================== [PASSED] drm_managed ===================
[01:04:32] =================== drm_mm (6 subtests) ====================
[01:04:32] [PASSED] drm_test_mm_init
[01:04:32] [PASSED] drm_test_mm_debug
[01:04:32] [PASSED] drm_test_mm_align32
[01:04:32] [PASSED] drm_test_mm_align64
[01:04:32] [PASSED] drm_test_mm_lowest
[01:04:32] [PASSED] drm_test_mm_highest
[01:04:32] ===================== [PASSED] drm_mm ======================
[01:04:32] ============= drm_modes_analog_tv (5 subtests) =============
[01:04:32] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:04:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:04:32] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:04:32] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:04:32] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:04:32] =============== [PASSED] drm_modes_analog_tv ===============
[01:04:32] ============== drm_plane_helper (2 subtests) ===============
[01:04:32] =============== drm_test_check_plane_state ================
[01:04:32] [PASSED] clipping_simple
[01:04:32] [PASSED] clipping_rotate_reflect
[01:04:32] [PASSED] positioning_simple
[01:04:32] [PASSED] upscaling
[01:04:32] [PASSED] downscaling
[01:04:32] [PASSED] rounding1
[01:04:32] [PASSED] rounding2
[01:04:32] [PASSED] rounding3
[01:04:32] [PASSED] rounding4
[01:04:32] =========== [PASSED] drm_test_check_plane_state ============
[01:04:32] =========== drm_test_check_invalid_plane_state ============
[01:04:32] [PASSED] positioning_invalid
[01:04:32] [PASSED] upscaling_invalid
[01:04:32] [PASSED] downscaling_invalid
[01:04:32] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:04:32] ================ [PASSED] drm_plane_helper =================
[01:04:32] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:04:32] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:04:32] [PASSED] None
[01:04:32] [PASSED] PAL
[01:04:32] [PASSED] NTSC
[01:04:32] [PASSED] Both, NTSC Default
[01:04:32] [PASSED] Both, PAL Default
[01:04:32] [PASSED] Both, NTSC Default, with PAL on command-line
[01:04:32] [PASSED] Both, PAL Default, with NTSC on command-line
[01:04:32] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:04:32] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:04:32] ================== drm_rect (9 subtests) ===================
[01:04:32] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:04:32] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:04:32] [PASSED] drm_test_rect_clip_scaled_clipped
[01:04:32] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:04:32] ================= drm_test_rect_intersect =================
[01:04:32] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:04:32] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:04:32] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:04:32] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:04:32] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:04:32] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:04:32] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:04:32] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:04:32] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:04:32] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:04:32] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:04:32] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:04:32] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:04:32] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:04:32] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:04:32] ============= [PASSED] drm_test_rect_intersect =============
[01:04:32] ================ drm_test_rect_calc_hscale ================
[01:04:32] [PASSED] normal use
[01:04:32] [PASSED] out of max range
[01:04:32] [PASSED] out of min range
[01:04:32] [PASSED] zero dst
[01:04:32] [PASSED] negative src
[01:04:32] [PASSED] negative dst
[01:04:32] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:04:32] ================ drm_test_rect_calc_vscale ================
[01:04:32] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:04:32] [PASSED] out of max range
[01:04:32] [PASSED] out of min range
[01:04:32] [PASSED] zero dst
[01:04:32] [PASSED] negative src
[01:04:32] [PASSED] negative dst
[01:04:32] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:04:32] ================== drm_test_rect_rotate ===================
[01:04:32] [PASSED] reflect-x
[01:04:32] [PASSED] reflect-y
[01:04:32] [PASSED] rotate-0
[01:04:32] [PASSED] rotate-90
[01:04:32] [PASSED] rotate-180
[01:04:32] [PASSED] rotate-270
[01:04:32] ============== [PASSED] drm_test_rect_rotate ===============
[01:04:32] ================ drm_test_rect_rotate_inv =================
[01:04:32] [PASSED] reflect-x
[01:04:32] [PASSED] reflect-y
[01:04:32] [PASSED] rotate-0
[01:04:32] [PASSED] rotate-90
[01:04:32] [PASSED] rotate-180
[01:04:32] [PASSED] rotate-270
[01:04:32] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:04:32] ==================== [PASSED] drm_rect =====================
[01:04:32] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:04:32] ============ drm_test_sysfb_build_fourcc_list =============
[01:04:32] [PASSED] no native formats
[01:04:32] [PASSED] XRGB8888 as native format
[01:04:32] [PASSED] remove duplicates
[01:04:32] [PASSED] convert alpha formats
[01:04:32] [PASSED] random formats
[01:04:32] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:04:32] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:04:32] ============================================================
[01:04:32] Testing complete. Ran 622 tests: passed: 622
[01:04:32] Elapsed time: 26.995s total, 1.705s configuring, 24.869s building, 0.391s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:04:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:04: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
[01:04:43] Starting KUnit Kernel (1/1)...
[01:04:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:04:43] ================= ttm_device (5 subtests) ==================
[01:04:43] [PASSED] ttm_device_init_basic
[01:04:43] [PASSED] ttm_device_init_multiple
[01:04:43] [PASSED] ttm_device_fini_basic
[01:04:43] [PASSED] ttm_device_init_no_vma_man
[01:04:43] ================== ttm_device_init_pools ==================
[01:04:43] [PASSED] No DMA allocations, no DMA32 required
[01:04:43] [PASSED] DMA allocations, DMA32 required
[01:04:43] [PASSED] No DMA allocations, DMA32 required
[01:04:43] [PASSED] DMA allocations, no DMA32 required
[01:04:43] ============== [PASSED] ttm_device_init_pools ==============
[01:04:43] =================== [PASSED] ttm_device ====================
[01:04:43] ================== ttm_pool (8 subtests) ===================
[01:04:43] ================== ttm_pool_alloc_basic ===================
[01:04:43] [PASSED] One page
[01:04:43] [PASSED] More than one page
[01:04:43] [PASSED] Above the allocation limit
[01:04:43] [PASSED] One page, with coherent DMA mappings enabled
[01:04:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:04:43] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:04:43] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:04:43] [PASSED] One page
[01:04:43] [PASSED] More than one page
[01:04:43] [PASSED] Above the allocation limit
[01:04:43] [PASSED] One page, with coherent DMA mappings enabled
[01:04:43] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:04:43] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:04:43] [PASSED] ttm_pool_alloc_order_caching_match
[01:04:43] [PASSED] ttm_pool_alloc_caching_mismatch
[01:04:43] [PASSED] ttm_pool_alloc_order_mismatch
[01:04:43] [PASSED] ttm_pool_free_dma_alloc
[01:04:43] [PASSED] ttm_pool_free_no_dma_alloc
[01:04:43] [PASSED] ttm_pool_fini_basic
[01:04:43] ==================== [PASSED] ttm_pool =====================
[01:04:43] ================ ttm_resource (8 subtests) =================
[01:04:43] ================= ttm_resource_init_basic =================
[01:04:43] [PASSED] Init resource in TTM_PL_SYSTEM
[01:04:43] [PASSED] Init resource in TTM_PL_VRAM
[01:04:43] [PASSED] Init resource in a private placement
[01:04:43] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:04:43] ============= [PASSED] ttm_resource_init_basic =============
[01:04:43] [PASSED] ttm_resource_init_pinned
[01:04:43] [PASSED] ttm_resource_fini_basic
[01:04:43] [PASSED] ttm_resource_manager_init_basic
[01:04:43] [PASSED] ttm_resource_manager_usage_basic
[01:04:43] [PASSED] ttm_resource_manager_set_used_basic
[01:04:43] [PASSED] ttm_sys_man_alloc_basic
[01:04:43] [PASSED] ttm_sys_man_free_basic
[01:04:43] ================== [PASSED] ttm_resource ===================
[01:04:43] =================== ttm_tt (15 subtests) ===================
[01:04:43] ==================== ttm_tt_init_basic ====================
[01:04:43] [PASSED] Page-aligned size
[01:04:43] [PASSED] Extra pages requested
[01:04:43] ================ [PASSED] ttm_tt_init_basic ================
[01:04:43] [PASSED] ttm_tt_init_misaligned
[01:04:43] [PASSED] ttm_tt_fini_basic
[01:04:43] [PASSED] ttm_tt_fini_sg
[01:04:43] [PASSED] ttm_tt_fini_shmem
[01:04:43] [PASSED] ttm_tt_create_basic
[01:04:43] [PASSED] ttm_tt_create_invalid_bo_type
[01:04:43] [PASSED] ttm_tt_create_ttm_exists
[01:04:43] [PASSED] ttm_tt_create_failed
[01:04:43] [PASSED] ttm_tt_destroy_basic
[01:04:43] [PASSED] ttm_tt_populate_null_ttm
[01:04:43] [PASSED] ttm_tt_populate_populated_ttm
[01:04:43] [PASSED] ttm_tt_unpopulate_basic
[01:04:43] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:04:43] [PASSED] ttm_tt_swapin_basic
[01:04:43] ===================== [PASSED] ttm_tt ======================
[01:04:43] =================== ttm_bo (14 subtests) ===================
[01:04:43] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:04:43] [PASSED] Cannot be interrupted and sleeps
[01:04:43] [PASSED] Cannot be interrupted, locks straight away
[01:04:43] [PASSED] Can be interrupted, sleeps
[01:04:43] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:04:43] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:04:43] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:04:43] [PASSED] ttm_bo_reserve_double_resv
[01:04:43] [PASSED] ttm_bo_reserve_interrupted
[01:04:43] [PASSED] ttm_bo_reserve_deadlock
[01:04:43] [PASSED] ttm_bo_unreserve_basic
[01:04:43] [PASSED] ttm_bo_unreserve_pinned
[01:04:43] [PASSED] ttm_bo_unreserve_bulk
[01:04:43] [PASSED] ttm_bo_fini_basic
[01:04:43] [PASSED] ttm_bo_fini_shared_resv
[01:04:43] [PASSED] ttm_bo_pin_basic
[01:04:43] [PASSED] ttm_bo_pin_unpin_resource
[01:04:43] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:04:43] ===================== [PASSED] ttm_bo ======================
[01:04:43] ============== ttm_bo_validate (21 subtests) ===============
[01:04:43] ============== ttm_bo_init_reserved_sys_man ===============
[01:04:43] [PASSED] Buffer object for userspace
[01:04:43] [PASSED] Kernel buffer object
[01:04:43] [PASSED] Shared buffer object
[01:04:43] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:04:43] ============== ttm_bo_init_reserved_mock_man ==============
[01:04:43] [PASSED] Buffer object for userspace
[01:04:43] [PASSED] Kernel buffer object
[01:04:43] [PASSED] Shared buffer object
[01:04:43] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:04:43] [PASSED] ttm_bo_init_reserved_resv
[01:04:43] ================== ttm_bo_validate_basic ==================
[01:04:43] [PASSED] Buffer object for userspace
[01:04:43] [PASSED] Kernel buffer object
[01:04:43] [PASSED] Shared buffer object
[01:04:43] ============== [PASSED] ttm_bo_validate_basic ==============
[01:04:43] [PASSED] ttm_bo_validate_invalid_placement
[01:04:43] ============= ttm_bo_validate_same_placement ==============
[01:04:43] [PASSED] System manager
[01:04:43] [PASSED] VRAM manager
[01:04:43] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:04:43] [PASSED] ttm_bo_validate_failed_alloc
[01:04:43] [PASSED] ttm_bo_validate_pinned
[01:04:43] [PASSED] ttm_bo_validate_busy_placement
[01:04:43] ================ ttm_bo_validate_multihop =================
[01:04:43] [PASSED] Buffer object for userspace
[01:04:43] [PASSED] Kernel buffer object
[01:04:43] [PASSED] Shared buffer object
[01:04:43] ============ [PASSED] ttm_bo_validate_multihop =============
[01:04:43] ========== ttm_bo_validate_no_placement_signaled ==========
[01:04:43] [PASSED] Buffer object in system domain, no page vector
[01:04:43] [PASSED] Buffer object in system domain with an existing page vector
[01:04:43] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:04:43] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:04:43] [PASSED] Buffer object for userspace
[01:04:43] [PASSED] Kernel buffer object
[01:04:43] [PASSED] Shared buffer object
[01:04:43] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:04:43] [PASSED] ttm_bo_validate_move_fence_signaled
[01:04:43] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:04:43] [PASSED] Waits for GPU
[01:04:43] [PASSED] Tries to lock straight away
[01:04:43] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:04:43] [PASSED] ttm_bo_validate_happy_evict
[01:04:43] [PASSED] ttm_bo_validate_all_pinned_evict
[01:04:43] [PASSED] ttm_bo_validate_allowed_only_evict
[01:04:43] [PASSED] ttm_bo_validate_deleted_evict
[01:04:43] [PASSED] ttm_bo_validate_busy_domain_evict
[01:04:43] [PASSED] ttm_bo_validate_evict_gutting
[01:04:43] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:04:43] ================= [PASSED] ttm_bo_validate =================
[01:04:43] ============================================================
[01:04:43] Testing complete. Ran 101 tests: passed: 101
[01:04:43] Elapsed time: 11.254s total, 1.685s configuring, 9.353s 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 drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
2025-10-22 18:48 ` Matthew Brost
2025-10-23 1:04 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-10-23 1:43 ` Patchwork
2025-10-23 8:26 ` ✗ Xe.CI.Full: " Patchwork
` (9 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-23 1:43 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3148 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue
URL : https://patchwork.freedesktop.org/series/156371/
State : failure
== Summary ==
CI Bug Log - changes from xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd_BAT -> xe-pw-156371v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156371v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156371v1_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 (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-156371v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_fault_mode@many-basic:
- bat-pvc-2: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/bat-pvc-2/igt@xe_exec_fault_mode@many-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/bat-pvc-2/igt@xe_exec_fault_mode@many-basic.html
* igt@xe_exec_threads@threads-basic:
- bat-atsm-2: [PASS][3] -> [TIMEOUT][4] +1 other test timeout
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/bat-atsm-2/igt@xe_exec_threads@threads-basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/bat-atsm-2/igt@xe_exec_threads@threads-basic.html
* igt@xe_exec_threads@threads-mixed-basic:
- bat-lnl-2: [PASS][5] -> [TIMEOUT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/bat-lnl-2/igt@xe_exec_threads@threads-mixed-basic.html
Known issues
------------
Here are the changes found in xe-pw-156371v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#4543]) +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* IGT: IGT_8594 -> IGT_8595
* Linux: xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd -> xe-pw-156371v1
IGT_8594: 8594
IGT_8595: 8595
xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd: 71929a54e8bb5da291d41a931d80c6c9160073dd
xe-pw-156371v1: 156371v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/index.html
[-- Attachment #2: Type: text/html, Size: 3841 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (2 preceding siblings ...)
2025-10-23 1:43 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-10-23 8:26 ` Patchwork
2025-10-25 18:10 ` [PATCH v2] " Shuicheng Lin
` (8 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-23 8:26 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 64564 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue
URL : https://patchwork.freedesktop.org/series/156371/
State : failure
== Summary ==
CI Bug Log - changes from xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd_FULL -> xe-pw-156371v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156371v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156371v1_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-156371v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@viewport:
- shard-adlp: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-3/igt@kms_plane_cursor@viewport.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@kms_plane_cursor@viewport.html
* igt@xe_exec_basic@many-basic-defer-bind:
- shard-dg2-set2: [PASS][3] -> [TIMEOUT][4] +3 other tests timeout
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-464/igt@xe_exec_basic@many-basic-defer-bind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@xe_exec_basic@many-basic-defer-bind.html
- shard-adlp: [PASS][5] -> [TIMEOUT][6] +1 other test timeout
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@xe_exec_basic@many-basic-defer-bind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@xe_exec_basic@many-basic-defer-bind.html
* igt@xe_exec_basic@many-basic-defer-mmap:
- shard-bmg: [PASS][7] -> [TIMEOUT][8] +13 other tests timeout
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-8/igt@xe_exec_basic@many-basic-defer-mmap.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@xe_exec_basic@many-basic-defer-mmap.html
* igt@xe_exec_system_allocator@many-malloc-bo-unmap-nomemset:
- shard-lnl: NOTRUN -> [TIMEOUT][9] +1 other test timeout
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@xe_exec_system_allocator@many-malloc-bo-unmap-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch-shared:
- shard-bmg: NOTRUN -> [TIMEOUT][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch-shared.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr:
- shard-lnl: [PASS][11] -> [TIMEOUT][12] +23 other tests timeout
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr.html
Known issues
------------
Here are the changes found in xe-pw-156371v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#4543]) +6 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#6054]) +3 other tests fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][21] ([Intel XE#4543]) +1 other test dmesg-fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#619])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#1124])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#787]) +20 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-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][31] ([Intel XE#787]) +41 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#2907])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2724])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#373])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-5/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#373])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#3278]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][42] ([Intel XE#1178])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2341])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1188]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1424])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-tearing-framebuffer-change:
- shard-adlp: [PASS][47] -> [DMESG-WARN][48] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@kms_cursor_crc@cursor-tearing-framebuffer-change.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_cursor_crc@cursor-tearing-framebuffer-change.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2291]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#5299])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#4354])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1421]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#310])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2316])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1397] / [Intel XE#1745])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1397])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293] / [Intel XE#2380])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1401] / [Intel XE#1745])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1401])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#455]) +9 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#6312]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#6312])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#651]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5390]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#656]) +14 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#651]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#651]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2311]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#6312]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2313]) +8 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#653]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#656]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#653]) +16 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2925])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pm_backlight@basic-brightness:
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#870])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#718])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2499])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2893])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1406])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-page-flip:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1406] / [Intel XE#2234])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#3414]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1127])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#3414])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3414] / [Intel XE#3904])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#3414] / [Intel XE#3904])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][102] -> [FAIL][103] ([i915#15106]) +2 other tests fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#1435])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#4459]) +1 other test fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#455]) +8 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@kms_vrr@flip-dpms.html
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#1499])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2142]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#6360]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
- shard-bmg: [PASS][113] -> [ABORT][114] ([Intel XE#3970]) +1 other test abort
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#5300])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4837]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-435/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4837]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-5/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#4837]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#4837] / [Intel XE#5565]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#4518])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#261]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-8/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#688]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#688])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-1/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1392]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2322]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#288]) +12 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#288] / [Intel XE#5561]) +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2360])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#4915]) +119 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-466/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#4915]) +80 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#6196])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#4943]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-huge.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2459] / [Intel XE#2596])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#3573]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-435/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_peer2peer@read@read-gpua-system-gpub-system-p2p:
- shard-adlp: NOTRUN -> [DMESG-FAIL][137] ([Intel XE#5213])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@xe_peer2peer@read@read-gpua-system-gpub-system-p2p.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#1061] / [Intel XE#5568])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@xe_peer2peer@write.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-adlp: [PASS][139] -> [DMESG-WARN][140] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) +1 other test dmesg-warn
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-4/igt@xe_pm@s2idle-vm-bind-prefetch.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#6406])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-1/igt@xe_pm@s4-multiple-execs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-8/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#5611] / [Intel XE#579])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#4733])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#944])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#944])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#4351])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [PASS][148] -> [FAIL][149] ([Intel XE#5937]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [PASS][150] -> [ABORT][151] ([Intel XE#4917]) +1 other test abort
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][152] ([Intel XE#3908]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][154] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][156] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][158] ([Intel XE#2291]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [FAIL][160] ([Intel XE#4367]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][162] ([Intel XE#2316]) -> [PASS][163] +4 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [INCOMPLETE][164] ([Intel XE#2049]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-463/igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][166] ([Intel XE#301]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][168] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][170] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@plain-flip-interruptible@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][172] ([Intel XE#4543]) -> [PASS][173] +7 other tests pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-6/igt@kms_flip@plain-flip-interruptible@b-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
- shard-adlp: [DMESG-FAIL][174] ([Intel XE#4543]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][176] ([Intel XE#1874]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][178] ([Intel XE#455]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][180] ([Intel XE#1503]) -> [PASS][181] +1 other test pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][182] ([Intel XE#4596]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][184] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][186] ([Intel XE#718]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][188] ([Intel XE#1435]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][190] ([Intel XE#5893]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-463/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [FAIL][192] ([Intel XE#6407]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_pm@s3-basic:
- shard-adlp: [INCOMPLETE][194] ([Intel XE#6255]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-6/igt@xe_pm@s3-basic.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-6/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: [FAIL][196] ([Intel XE#6406]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-dg2-464/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-bmg: [FAIL][198] ([Intel XE#5937]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][200] ([Intel XE#2341]) -> [FAIL][201] ([Intel XE#1178])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_content_protection@srm.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][202] ([Intel XE#2311]) -> [SKIP][203] ([Intel XE#2312]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-adlp: [DMESG-FAIL][204] ([Intel XE#4543]) -> [FAIL][205] ([Intel XE#5671])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-adlp: [FAIL][206] ([Intel XE#5671]) -> [DMESG-FAIL][207] ([Intel XE#4543])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][208] ([Intel XE#5390]) -> [SKIP][209] ([Intel XE#2312])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][210] ([Intel XE#2312]) -> [SKIP][211] ([Intel XE#5390]) +7 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][212] ([Intel XE#2312]) -> [SKIP][213] ([Intel XE#2311]) +7 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][214] ([Intel XE#2312]) -> [SKIP][215] ([Intel XE#2313]) +13 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][216] ([Intel XE#2313]) -> [SKIP][217] ([Intel XE#2312]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][218] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][219] ([Intel XE#3544])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [SKIP][220] ([Intel XE#734]) -> [FAIL][221] ([Intel XE#3325])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-6/igt@kms_pm_dc@dc9-dpms.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
* igt@xe_peer2peer@read:
- shard-adlp: [SKIP][222] ([Intel XE#1061] / [Intel XE#5568]) -> [DMESG-FAIL][223] ([Intel XE#5213])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd/shard-adlp-2/igt@xe_peer2peer@read.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/shard-adlp-9/igt@xe_peer2peer@read.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#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#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[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#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[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#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[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#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[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#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[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#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
[Intel XE#5671]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5671
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6255
[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#6406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6406
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
Build changes
-------------
* IGT: IGT_8594 -> IGT_8595
* Linux: xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd -> xe-pw-156371v1
IGT_8594: 8594
IGT_8595: 8595
xe-3969-71929a54e8bb5da291d41a931d80c6c9160073dd: 71929a54e8bb5da291d41a931d80c6c9160073dd
xe-pw-156371v1: 156371v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v1/index.html
[-- Attachment #2: Type: text/html, Size: 74828 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* RE: [PATCH] drm/xe: Limit number of jobs per exec queue
2025-10-22 18:48 ` Matthew Brost
@ 2025-10-23 15:51 ` Lin, Shuicheng
2025-10-23 19:05 ` Matthew Brost
0 siblings, 1 reply; 19+ messages in thread
From: Lin, Shuicheng @ 2025-10-23 15:51 UTC (permalink / raw)
To: Brost, Matthew; +Cc: intel-xe@lists.freedesktop.org, Summers, Stuart
On Wed, Oct 22, 2025 11:48 AM Matthew Brost wrote:
> On Wed, Oct 22, 2025 at 06:10:37PM +0000, Shuicheng Lin wrote:
> > Add a limit to the number of jobs that can be queued in a single exec
> > queue to avoid potential resource exhaustion.
> >
> > A new field `job_cnt` is introduced in `struct xe_exec_queue` to track
> > the number of active DRM jobs, along with a maximum limit
> > `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
> >
> > If the job count exceeds this threshold, `xe_exec_ioctl()` now returns
> > `-EAGAIN` to signal that the caller should retry later.
> >
> > Suggested-by: Matthew Brost <matthew.brost@intel.com>
> > Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_exec.c | 5 +++++
> > drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> > drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> > 3 files changed, 12 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_exec.c
> > b/drivers/gpu/drm/xe/xe_exec.c index 0dc27476832b..722a5ac0200a
> 100644
> > --- a/drivers/gpu/drm/xe/xe_exec.c
> > +++ b/drivers/gpu/drm/xe/xe_exec.c
> > @@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void
> *data, struct drm_file *file)
> > goto err_exec_queue;
> > }
> >
> > + if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> > + err = -EAGAIN;
>
> How about an ftrace point if this occurs? Should help us detect if users
> somehow hit this during normal operation.
How about use " xe_err_once" log to detect it? err log in dmesg is more noticeable.
>
> > + goto err_exec_queue;
> > + }
> > +
> > if (args->num_syncs) {
> > syncs = kcalloc(args->num_syncs, sizeof(*syncs),
> GFP_KERNEL);
> > if (!syncs) {
> > diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > index 282505fa1377..5f3219acec3c 100644
> > --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > @@ -162,6 +162,11 @@ struct xe_exec_queue {
> > const struct xe_ring_ops *ring_ops;
> > /** @entity: DRM sched entity for this exec queue (1 to 1 relationship)
> */
> > struct drm_sched_entity *entity;
> > +
> > +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
>
> Hmm, I'm trying to think of a reasonable limit. 4K seems high. Maybe we
> should check with the UMDs to understand the deepest reasonable pipeline of
> jobs they build — to avoid blocking them here while still limiting the DoS
> surface. My initial thought that 512 or 1k should be a reasonable limit for now.
> Can always adjust going forward.
Yes. Let me change it to 1k. And adjust it later if needed.
>
> > +
> > + /** @job_cnt: number of drm jobs in this exec queue */
> > + u32 job_cnt;
>
> This needs to be atomic. xe_sched_job_destroy can run in parallel with the
> exec IOCTL.
Thanks. Yes, it should be atomic.
Shuicheng
>
> Everything else looks correct.
>
> Matt
>
> > /**
> > * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> > * Protected by @vm's resv. Unused if @vm == NULL.
> > diff --git a/drivers/gpu/drm/xe/xe_sched_job.c
> > b/drivers/gpu/drm/xe/xe_sched_job.c
> > index d21bf8f26964..37f58be7cbcc 100644
> > --- a/drivers/gpu/drm/xe/xe_sched_job.c
> > +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> > @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct
> xe_exec_queue *q,
> > for (i = 0; i < width; ++i)
> > job->ptrs[i].batch_addr = batch_addr[i];
> >
> > + q->job_cnt++;
> > xe_pm_runtime_get_noresume(job_to_xe(job));
> > trace_xe_sched_job_create(job);
> > return job;
> > @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> > dma_fence_put(job->fence);
> > drm_sched_job_cleanup(&job->drm);
> > job_free(job);
> > + q->job_cnt--;
> > xe_exec_queue_put(q);
> > xe_pm_runtime_put(xe);
> > }
> > --
> > 2.49.0
> >
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] drm/xe: Limit number of jobs per exec queue
2025-10-23 15:51 ` Lin, Shuicheng
@ 2025-10-23 19:05 ` Matthew Brost
0 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-10-23 19:05 UTC (permalink / raw)
To: Lin, Shuicheng; +Cc: intel-xe@lists.freedesktop.org, Summers, Stuart
On Thu, Oct 23, 2025 at 09:51:27AM -0600, Lin, Shuicheng wrote:
> On Wed, Oct 22, 2025 11:48 AM Matthew Brost wrote:
> > On Wed, Oct 22, 2025 at 06:10:37PM +0000, Shuicheng Lin wrote:
> > > Add a limit to the number of jobs that can be queued in a single exec
> > > queue to avoid potential resource exhaustion.
> > >
> > > A new field `job_cnt` is introduced in `struct xe_exec_queue` to track
> > > the number of active DRM jobs, along with a maximum limit
> > > `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
> > >
> > > If the job count exceeds this threshold, `xe_exec_ioctl()` now returns
> > > `-EAGAIN` to signal that the caller should retry later.
> > >
> > > Suggested-by: Matthew Brost <matthew.brost@intel.com>
> > > Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_exec.c | 5 +++++
> > > drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> > > drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> > > 3 files changed, 12 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_exec.c
> > > b/drivers/gpu/drm/xe/xe_exec.c index 0dc27476832b..722a5ac0200a
> > 100644
> > > --- a/drivers/gpu/drm/xe/xe_exec.c
> > > +++ b/drivers/gpu/drm/xe/xe_exec.c
> > > @@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void
> > *data, struct drm_file *file)
> > > goto err_exec_queue;
> > > }
> > >
> > > + if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> > > + err = -EAGAIN;
> >
> > How about an ftrace point if this occurs? Should help us detect if users
> > somehow hit this during normal operation.
>
> How about use " xe_err_once" log to detect it? err log in dmesg is more noticeable.
>
It is not an error. -EAGAIN is a specific return code in DRM that means
"try again." We want to avoid returning -EAGAIN to well-behaved
applications, while still being able to detect it. At the same time, we
want to prevent misbehaving applications from spamming dmesg.
Matt
> >
> > > + goto err_exec_queue;
> > > + }
> > > +
> > > if (args->num_syncs) {
> > > syncs = kcalloc(args->num_syncs, sizeof(*syncs),
> > GFP_KERNEL);
> > > if (!syncs) {
> > > diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > > b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > > index 282505fa1377..5f3219acec3c 100644
> > > --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > > +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > > @@ -162,6 +162,11 @@ struct xe_exec_queue {
> > > const struct xe_ring_ops *ring_ops;
> > > /** @entity: DRM sched entity for this exec queue (1 to 1 relationship)
> > */
> > > struct drm_sched_entity *entity;
> > > +
> > > +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
> >
> > Hmm, I'm trying to think of a reasonable limit. 4K seems high. Maybe we
> > should check with the UMDs to understand the deepest reasonable pipeline of
> > jobs they build — to avoid blocking them here while still limiting the DoS
> > surface. My initial thought that 512 or 1k should be a reasonable limit for now.
> > Can always adjust going forward.
>
> Yes. Let me change it to 1k. And adjust it later if needed.
>
> >
> > > +
> > > + /** @job_cnt: number of drm jobs in this exec queue */
> > > + u32 job_cnt;
> >
> > This needs to be atomic. xe_sched_job_destroy can run in parallel with the
> > exec IOCTL.
>
> Thanks. Yes, it should be atomic.
>
> Shuicheng
>
> >
> > Everything else looks correct.
> >
> > Matt
> >
> > > /**
> > > * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> > > * Protected by @vm's resv. Unused if @vm == NULL.
> > > diff --git a/drivers/gpu/drm/xe/xe_sched_job.c
> > > b/drivers/gpu/drm/xe/xe_sched_job.c
> > > index d21bf8f26964..37f58be7cbcc 100644
> > > --- a/drivers/gpu/drm/xe/xe_sched_job.c
> > > +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> > > @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct
> > xe_exec_queue *q,
> > > for (i = 0; i < width; ++i)
> > > job->ptrs[i].batch_addr = batch_addr[i];
> > >
> > > + q->job_cnt++;
> > > xe_pm_runtime_get_noresume(job_to_xe(job));
> > > trace_xe_sched_job_create(job);
> > > return job;
> > > @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> > > dma_fence_put(job->fence);
> > > drm_sched_job_cleanup(&job->drm);
> > > job_free(job);
> > > + q->job_cnt--;
> > > xe_exec_queue_put(q);
> > > xe_pm_runtime_put(xe);
> > > }
> > > --
> > > 2.49.0
> > >
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2] drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (3 preceding siblings ...)
2025-10-23 8:26 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-10-25 18:10 ` Shuicheng Lin
2025-10-25 18:20 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev2) Patchwork
` (7 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Shuicheng Lin @ 2025-10-25 18:10 UTC (permalink / raw)
To: intel-xe; +Cc: stuart.summers, Shuicheng Lin, Matthew Brost
Add a limit to the number of jobs that can be queued in a single
exec queue to avoid potential resource exhaustion.
A new field `job_cnt` is introduced in `struct xe_exec_queue` to
track the number of active DRM jobs, along with a maximum limit
`XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 1000.
If the job count exceeds this threshold, `xe_exec_ioctl()` now
returns `-EAGAIN` to signal that the caller should retry later.
A trace event is added to track when the limit is reached:
"xe_exec_queue_reach_max_job_count: dev=0000:03:00.0, job count
exceeded the maximum limit (1000) per exec queue. engine_class=0x3,
logical_mask=0x1, guc_id=2"
v2 (Matt):
- add log to trace the limit is hit.
- Change max count from 0x1000 to 1000.
- Use atomic_t for job_cnt.
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_exec.c | 7 +++++++
drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
drivers/gpu/drm/xe/xe_trace.h | 23 +++++++++++++++++++++++
4 files changed, 37 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 0dc27476832b..05f1b79440c4 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -21,6 +21,7 @@
#include "xe_sched_job.h"
#include "xe_sync.h"
#include "xe_svm.h"
+#include "xe_trace.h"
#include "xe_vm.h"
/**
@@ -154,6 +155,12 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
goto err_exec_queue;
}
+ if (atomic_read(&q->job_cnt) >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
+ trace_xe_exec_queue_reach_max_job_count(q, XE_MAX_JOB_COUNT_PER_EXEC_QUEUE);
+ err = -EAGAIN;
+ goto err_exec_queue;
+ }
+
if (args->num_syncs) {
syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
if (!syncs) {
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 282505fa1377..e26e4a6dd56a 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -162,6 +162,11 @@ struct xe_exec_queue {
const struct xe_ring_ops *ring_ops;
/** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
struct drm_sched_entity *entity;
+
+#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 1000
+
+ /** @job_cnt: number of drm jobs in this exec queue */
+ atomic_t job_cnt;
/**
* @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
* Protected by @vm's resv. Unused if @vm == NULL.
diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
index d21bf8f26964..f7a68bf4ed8b 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.c
+++ b/drivers/gpu/drm/xe/xe_sched_job.c
@@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
for (i = 0; i < width; ++i)
job->ptrs[i].batch_addr = batch_addr[i];
+ atomic_inc(&q->job_cnt);
xe_pm_runtime_get_noresume(job_to_xe(job));
trace_xe_sched_job_create(job);
return job;
@@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
dma_fence_put(job->fence);
drm_sched_job_cleanup(&job->drm);
job_free(job);
+ atomic_dec(&q->job_cnt);
xe_exec_queue_put(q);
xe_pm_runtime_put(xe);
}
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 314f42fcbcbd..79a97b086cb2 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -441,6 +441,29 @@ TRACE_EVENT(xe_eu_stall_data_read,
__entry->read_size, __entry->total_size)
);
+TRACE_EVENT(xe_exec_queue_reach_max_job_count,
+ TP_PROTO(struct xe_exec_queue *q, int max_cnt),
+ TP_ARGS(q, max_cnt),
+
+ TP_STRUCT__entry(__string(dev, __dev_name_eq(q))
+ __field(enum xe_engine_class, class)
+ __field(u32, logical_mask)
+ __field(u16, guc_id)
+ __field(int, max_cnt)
+ ),
+
+ TP_fast_assign(__assign_str(dev);
+ __entry->class = q->class;
+ __entry->logical_mask = q->logical_mask;
+ __entry->guc_id = q->guc->id;
+ __entry->max_cnt = max_cnt;
+ ),
+
+ TP_printk("dev=%s, job count exceeded the maximum limit (%d) per exec queue. engine_class=0x%x, logical_mask=0x%x, guc_id=%d",
+ __get_str(dev), __entry->max_cnt,
+ __entry->class, __entry->logical_mask, __entry->guc_id)
+);
+
#endif
/* This part must be outside protection */
--
2.49.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev2)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (4 preceding siblings ...)
2025-10-25 18:10 ` [PATCH v2] " Shuicheng Lin
@ 2025-10-25 18:20 ` Patchwork
2025-10-25 18:59 ` ✓ Xe.CI.BAT: " Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-25 18:20 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev2)
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:19:13] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:19:17] 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
[18:19:48] Starting KUnit Kernel (1/1)...
[18:19:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:19:48] ================== guc_buf (11 subtests) ===================
[18:19:48] [PASSED] test_smallest
[18:19:48] [PASSED] test_largest
[18:19:48] [PASSED] test_granular
[18:19:48] [PASSED] test_unique
[18:19:48] [PASSED] test_overlap
[18:19:48] [PASSED] test_reusable
[18:19:48] [PASSED] test_too_big
[18:19:48] [PASSED] test_flush
[18:19:48] [PASSED] test_lookup
[18:19:48] [PASSED] test_data
[18:19:48] [PASSED] test_class
[18:19:48] ===================== [PASSED] guc_buf =====================
[18:19:48] =================== guc_dbm (7 subtests) ===================
[18:19:48] [PASSED] test_empty
[18:19:48] [PASSED] test_default
[18:19:48] ======================== test_size ========================
[18:19:48] [PASSED] 4
[18:19:48] [PASSED] 8
[18:19:48] [PASSED] 32
[18:19:48] [PASSED] 256
[18:19:48] ==================== [PASSED] test_size ====================
[18:19:48] ======================= test_reuse ========================
[18:19:48] [PASSED] 4
[18:19:48] [PASSED] 8
[18:19:48] [PASSED] 32
[18:19:48] [PASSED] 256
[18:19:48] =================== [PASSED] test_reuse ====================
[18:19:48] =================== test_range_overlap ====================
[18:19:48] [PASSED] 4
[18:19:48] [PASSED] 8
[18:19:48] [PASSED] 32
[18:19:48] [PASSED] 256
[18:19:48] =============== [PASSED] test_range_overlap ================
[18:19:48] =================== test_range_compact ====================
[18:19:48] [PASSED] 4
[18:19:48] [PASSED] 8
[18:19:48] [PASSED] 32
[18:19:48] [PASSED] 256
[18:19:48] =============== [PASSED] test_range_compact ================
[18:19:48] ==================== test_range_spare =====================
[18:19:48] [PASSED] 4
[18:19:48] [PASSED] 8
[18:19:48] [PASSED] 32
[18:19:48] [PASSED] 256
[18:19:48] ================ [PASSED] test_range_spare =================
[18:19:48] ===================== [PASSED] guc_dbm =====================
[18:19:48] =================== guc_idm (6 subtests) ===================
[18:19:48] [PASSED] bad_init
[18:19:48] [PASSED] no_init
[18:19:48] [PASSED] init_fini
[18:19:48] [PASSED] check_used
[18:19:48] [PASSED] check_quota
[18:19:48] [PASSED] check_all
[18:19:48] ===================== [PASSED] guc_idm =====================
[18:19:48] ================== no_relay (3 subtests) ===================
[18:19:48] [PASSED] xe_drops_guc2pf_if_not_ready
[18:19:48] [PASSED] xe_drops_guc2vf_if_not_ready
[18:19:48] [PASSED] xe_rejects_send_if_not_ready
[18:19:48] ==================== [PASSED] no_relay =====================
[18:19:48] ================== pf_relay (14 subtests) ==================
[18:19:48] [PASSED] pf_rejects_guc2pf_too_short
[18:19:48] [PASSED] pf_rejects_guc2pf_too_long
[18:19:48] [PASSED] pf_rejects_guc2pf_no_payload
[18:19:48] [PASSED] pf_fails_no_payload
[18:19:48] [PASSED] pf_fails_bad_origin
[18:19:48] [PASSED] pf_fails_bad_type
[18:19:48] [PASSED] pf_txn_reports_error
[18:19:48] [PASSED] pf_txn_sends_pf2guc
[18:19:48] [PASSED] pf_sends_pf2guc
[18:19:48] [SKIPPED] pf_loopback_nop
[18:19:48] [SKIPPED] pf_loopback_echo
[18:19:48] [SKIPPED] pf_loopback_fail
[18:19:48] [SKIPPED] pf_loopback_busy
[18:19:48] [SKIPPED] pf_loopback_retry
[18:19:48] ==================== [PASSED] pf_relay =====================
[18:19:48] ================== vf_relay (3 subtests) ===================
[18:19:48] [PASSED] vf_rejects_guc2vf_too_short
[18:19:48] [PASSED] vf_rejects_guc2vf_too_long
[18:19:48] [PASSED] vf_rejects_guc2vf_no_payload
[18:19:48] ==================== [PASSED] vf_relay =====================
[18:19:48] ===================== lmtt (1 subtest) =====================
[18:19:48] ======================== test_ops =========================
[18:19:48] [PASSED] 2-level
[18:19:48] [PASSED] multi-level
[18:19:48] ==================== [PASSED] test_ops =====================
[18:19:48] ====================== [PASSED] lmtt =======================
[18:19:48] ================= pf_service (11 subtests) =================
[18:19:48] [PASSED] pf_negotiate_any
[18:19:48] [PASSED] pf_negotiate_base_match
[18:19:48] [PASSED] pf_negotiate_base_newer
[18:19:48] [PASSED] pf_negotiate_base_next
[18:19:48] [SKIPPED] pf_negotiate_base_older
[18:19:48] [PASSED] pf_negotiate_base_prev
[18:19:48] [PASSED] pf_negotiate_latest_match
[18:19:48] [PASSED] pf_negotiate_latest_newer
[18:19:48] [PASSED] pf_negotiate_latest_next
[18:19:48] [SKIPPED] pf_negotiate_latest_older
[18:19:48] [SKIPPED] pf_negotiate_latest_prev
[18:19:48] =================== [PASSED] pf_service ====================
[18:19:48] ================= xe_guc_g2g (2 subtests) ==================
[18:19:48] ============== xe_live_guc_g2g_kunit_default ==============
[18:19:48] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[18:19:48] ============== xe_live_guc_g2g_kunit_allmem ===============
[18:19:48] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[18:19:48] =================== [SKIPPED] xe_guc_g2g ===================
[18:19:48] =================== xe_mocs (2 subtests) ===================
[18:19:48] ================ xe_live_mocs_kernel_kunit ================
[18:19:48] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:19:48] ================ xe_live_mocs_reset_kunit =================
[18:19:48] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:19:48] ==================== [SKIPPED] xe_mocs =====================
[18:19:48] ================= xe_migrate (2 subtests) ==================
[18:19:48] ================= xe_migrate_sanity_kunit =================
[18:19:48] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:19:48] ================== xe_validate_ccs_kunit ==================
[18:19:48] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:19:48] =================== [SKIPPED] xe_migrate ===================
[18:19:48] ================== xe_dma_buf (1 subtest) ==================
[18:19:48] ==================== xe_dma_buf_kunit =====================
[18:19:48] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:19:48] =================== [SKIPPED] xe_dma_buf ===================
[18:19:48] ================= xe_bo_shrink (1 subtest) =================
[18:19:48] =================== xe_bo_shrink_kunit ====================
[18:19:48] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:19:48] ================== [SKIPPED] xe_bo_shrink ==================
[18:19:48] ==================== xe_bo (2 subtests) ====================
[18:19:48] ================== xe_ccs_migrate_kunit ===================
[18:19:48] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:19:48] ==================== xe_bo_evict_kunit ====================
[18:19:48] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:19:48] ===================== [SKIPPED] xe_bo ======================
[18:19:48] ==================== args (11 subtests) ====================
[18:19:48] [PASSED] count_args_test
[18:19:48] [PASSED] call_args_example
[18:19:48] [PASSED] call_args_test
[18:19:48] [PASSED] drop_first_arg_example
[18:19:48] [PASSED] drop_first_arg_test
[18:19:48] [PASSED] first_arg_example
[18:19:48] [PASSED] first_arg_test
[18:19:48] [PASSED] last_arg_example
[18:19:48] [PASSED] last_arg_test
[18:19:48] [PASSED] pick_arg_example
[18:19:48] [PASSED] sep_comma_example
[18:19:48] ====================== [PASSED] args =======================
[18:19:48] =================== xe_pci (3 subtests) ====================
[18:19:48] ==================== check_graphics_ip ====================
[18:19:48] [PASSED] 12.00 Xe_LP
[18:19:48] [PASSED] 12.10 Xe_LP+
[18:19:48] [PASSED] 12.55 Xe_HPG
[18:19:48] [PASSED] 12.60 Xe_HPC
[18:19:48] [PASSED] 12.70 Xe_LPG
[18:19:48] [PASSED] 12.71 Xe_LPG
[18:19:48] [PASSED] 12.74 Xe_LPG+
[18:19:48] [PASSED] 20.01 Xe2_HPG
[18:19:48] [PASSED] 20.02 Xe2_HPG
[18:19:48] [PASSED] 20.04 Xe2_LPG
[18:19:48] [PASSED] 30.00 Xe3_LPG
[18:19:48] [PASSED] 30.01 Xe3_LPG
[18:19:48] [PASSED] 30.03 Xe3_LPG
[18:19:48] [PASSED] 30.04 Xe3_LPG
[18:19:48] [PASSED] 30.05 Xe3_LPG
[18:19:48] [PASSED] 35.11 Xe3p_XPC
[18:19:48] ================ [PASSED] check_graphics_ip ================
[18:19:48] ===================== check_media_ip ======================
[18:19:48] [PASSED] 12.00 Xe_M
[18:19:48] [PASSED] 12.55 Xe_HPM
[18:19:48] [PASSED] 13.00 Xe_LPM+
[18:19:48] [PASSED] 13.01 Xe2_HPM
[18:19:48] [PASSED] 20.00 Xe2_LPM
[18:19:48] [PASSED] 30.00 Xe3_LPM
[18:19:48] [PASSED] 30.02 Xe3_LPM
[18:19:48] [PASSED] 35.00 Xe3p_LPM
[18:19:48] [PASSED] 35.03 Xe3p_HPM
[18:19:48] ================= [PASSED] check_media_ip ==================
[18:19:48] =================== check_platform_desc ===================
[18:19:48] [PASSED] 0x9A60 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A68 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A70 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A40 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A49 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A59 (TIGERLAKE)
[18:19:48] [PASSED] 0x9A78 (TIGERLAKE)
[18:19:48] [PASSED] 0x9AC0 (TIGERLAKE)
[18:19:48] [PASSED] 0x9AC9 (TIGERLAKE)
[18:19:48] [PASSED] 0x9AD9 (TIGERLAKE)
[18:19:48] [PASSED] 0x9AF8 (TIGERLAKE)
[18:19:48] [PASSED] 0x4C80 (ROCKETLAKE)
[18:19:48] [PASSED] 0x4C8A (ROCKETLAKE)
[18:19:48] [PASSED] 0x4C8B (ROCKETLAKE)
[18:19:48] [PASSED] 0x4C8C (ROCKETLAKE)
[18:19:48] [PASSED] 0x4C90 (ROCKETLAKE)
[18:19:48] [PASSED] 0x4C9A (ROCKETLAKE)
[18:19:48] [PASSED] 0x4680 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4682 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4688 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x468A (ALDERLAKE_S)
[18:19:48] [PASSED] 0x468B (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4690 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4692 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4693 (ALDERLAKE_S)
[18:19:48] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46AA (ALDERLAKE_P)
[18:19:48] [PASSED] 0x462A (ALDERLAKE_P)
[18:19:48] [PASSED] 0x4626 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x4628 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:19:48] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:19:48] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:19:48] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:19:48] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:19:48] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:19:48] [PASSED] 0xA721 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA720 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:19:48] [PASSED] 0xA780 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA781 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA782 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA783 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA788 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA789 (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA78A (ALDERLAKE_S)
[18:19:48] [PASSED] 0xA78B (ALDERLAKE_S)
[18:19:48] [PASSED] 0x4905 (DG1)
[18:19:48] [PASSED] 0x4906 (DG1)
[18:19:48] [PASSED] 0x4907 (DG1)
[18:19:48] [PASSED] 0x4908 (DG1)
[18:19:48] [PASSED] 0x4909 (DG1)
[18:19:48] [PASSED] 0x56C0 (DG2)
[18:19:48] [PASSED] 0x56C2 (DG2)
[18:19:48] [PASSED] 0x56C1 (DG2)
[18:19:48] [PASSED] 0x7D51 (METEORLAKE)
[18:19:48] [PASSED] 0x7DD1 (METEORLAKE)
[18:19:48] [PASSED] 0x7D41 (METEORLAKE)
[18:19:48] [PASSED] 0x7D67 (METEORLAKE)
[18:19:48] [PASSED] 0xB640 (METEORLAKE)
[18:19:48] [PASSED] 0x56A0 (DG2)
[18:19:48] [PASSED] 0x56A1 (DG2)
[18:19:48] [PASSED] 0x56A2 (DG2)
[18:19:48] [PASSED] 0x56BE (DG2)
[18:19:48] [PASSED] 0x56BF (DG2)
[18:19:48] [PASSED] 0x5690 (DG2)
[18:19:48] [PASSED] 0x5691 (DG2)
[18:19:48] [PASSED] 0x5692 (DG2)
[18:19:48] [PASSED] 0x56A5 (DG2)
[18:19:48] [PASSED] 0x56A6 (DG2)
[18:19:48] [PASSED] 0x56B0 (DG2)
[18:19:48] [PASSED] 0x56B1 (DG2)
[18:19:48] [PASSED] 0x56BA (DG2)
[18:19:48] [PASSED] 0x56BB (DG2)
[18:19:48] [PASSED] 0x56BC (DG2)
[18:19:48] [PASSED] 0x56BD (DG2)
[18:19:48] [PASSED] 0x5693 (DG2)
[18:19:48] [PASSED] 0x5694 (DG2)
[18:19:48] [PASSED] 0x5695 (DG2)
[18:19:48] [PASSED] 0x56A3 (DG2)
[18:19:48] [PASSED] 0x56A4 (DG2)
[18:19:48] [PASSED] 0x56B2 (DG2)
[18:19:48] [PASSED] 0x56B3 (DG2)
[18:19:48] [PASSED] 0x5696 (DG2)
[18:19:48] [PASSED] 0x5697 (DG2)
[18:19:48] [PASSED] 0xB69 (PVC)
[18:19:48] [PASSED] 0xB6E (PVC)
[18:19:48] [PASSED] 0xBD4 (PVC)
[18:19:48] [PASSED] 0xBD5 (PVC)
[18:19:48] [PASSED] 0xBD6 (PVC)
[18:19:48] [PASSED] 0xBD7 (PVC)
[18:19:48] [PASSED] 0xBD8 (PVC)
[18:19:48] [PASSED] 0xBD9 (PVC)
[18:19:48] [PASSED] 0xBDA (PVC)
[18:19:48] [PASSED] 0xBDB (PVC)
[18:19:48] [PASSED] 0xBE0 (PVC)
[18:19:48] [PASSED] 0xBE1 (PVC)
[18:19:48] [PASSED] 0xBE5 (PVC)
[18:19:48] [PASSED] 0x7D40 (METEORLAKE)
[18:19:48] [PASSED] 0x7D45 (METEORLAKE)
[18:19:48] [PASSED] 0x7D55 (METEORLAKE)
[18:19:48] [PASSED] 0x7D60 (METEORLAKE)
[18:19:48] [PASSED] 0x7DD5 (METEORLAKE)
[18:19:48] [PASSED] 0x6420 (LUNARLAKE)
[18:19:48] [PASSED] 0x64A0 (LUNARLAKE)
[18:19:48] [PASSED] 0x64B0 (LUNARLAKE)
[18:19:48] [PASSED] 0xE202 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE209 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE20B (BATTLEMAGE)
[18:19:48] [PASSED] 0xE20C (BATTLEMAGE)
[18:19:48] [PASSED] 0xE20D (BATTLEMAGE)
[18:19:48] [PASSED] 0xE210 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE211 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE212 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE216 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE220 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE221 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE222 (BATTLEMAGE)
[18:19:48] [PASSED] 0xE223 (BATTLEMAGE)
[18:19:48] [PASSED] 0xB080 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB081 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB082 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB083 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB084 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB085 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB086 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB087 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB08F (PANTHERLAKE)
[18:19:48] [PASSED] 0xB090 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:19:48] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:19:48] [PASSED] 0xFD80 (PANTHERLAKE)
[18:19:48] [PASSED] 0xFD81 (PANTHERLAKE)
[18:19:48] [PASSED] 0xD740 (NOVALAKE_S)
[18:19:48] [PASSED] 0xD741 (NOVALAKE_S)
[18:19:48] [PASSED] 0xD742 (NOVALAKE_S)
[18:19:48] [PASSED] 0xD743 (NOVALAKE_S)
[18:19:48] [PASSED] 0xD744 (NOVALAKE_S)
[18:19:48] [PASSED] 0xD745 (NOVALAKE_S)
[18:19:48] [PASSED] 0x674C (CRESCENTISLAND)
[18:19:48] =============== [PASSED] check_platform_desc ===============
[18:19:48] ===================== [PASSED] xe_pci ======================
[18:19:48] =================== xe_rtp (2 subtests) ====================
[18:19:48] =============== xe_rtp_process_to_sr_tests ================
[18:19:48] [PASSED] coalesce-same-reg
[18:19:48] [PASSED] no-match-no-add
[18:19:48] [PASSED] match-or
[18:19:48] [PASSED] match-or-xfail
[18:19:48] [PASSED] no-match-no-add-multiple-rules
[18:19:48] [PASSED] two-regs-two-entries
[18:19:48] [PASSED] clr-one-set-other
[18:19:48] [PASSED] set-field
[18:19:48] [PASSED] conflict-duplicate
[18:19:48] [PASSED] conflict-not-disjoint
[18:19:48] [PASSED] conflict-reg-type
[18:19:48] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:19:48] ================== xe_rtp_process_tests ===================
[18:19:48] [PASSED] active1
[18:19:48] [PASSED] active2
[18:19:48] [PASSED] active-inactive
[18:19:48] [PASSED] inactive-active
[18:19:48] [PASSED] inactive-1st_or_active-inactive
[18:19:48] [PASSED] inactive-2nd_or_active-inactive
[18:19:48] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[18:19:48] [PASSED] inactive-no_or_active-inactive
[18:19:48] ============== [PASSED] xe_rtp_process_tests ===============
[18:19:48] ===================== [PASSED] xe_rtp ======================
[18:19:48] ==================== xe_wa (1 subtest) =====================
[18:19:48] ======================== xe_wa_gt =========================
[18:19:48] [PASSED] TIGERLAKE B0
[18:19:48] [PASSED] DG1 A0
[18:19:48] [PASSED] DG1 B0
[18:19:48] [PASSED] ALDERLAKE_S A0
[18:19:48] [PASSED] ALDERLAKE_S B0
[18:19:48] [PASSED] ALDERLAKE_S C0
[18:19:48] [PASSED] ALDERLAKE_S D0
[18:19:48] [PASSED] ALDERLAKE_P A0
[18:19:48] [PASSED] ALDERLAKE_P B0
[18:19:48] [PASSED] ALDERLAKE_P C0
[18:19:48] [PASSED] ALDERLAKE_S RPLS D0
[18:19:48] [PASSED] ALDERLAKE_P RPLU E0
[18:19:48] [PASSED] DG2 G10 C0
[18:19:48] [PASSED] DG2 G11 B1
[18:19:48] [PASSED] DG2 G12 A1
[18:19:48] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:19:48] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[18:19:48] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[18:19:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[18:19:48] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[18:19:48] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[18:19:48] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[18:19:48] ==================== [PASSED] xe_wa_gt =====================
[18:19:48] ====================== [PASSED] xe_wa ======================
[18:19:48] ============================================================
[18:19:48] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[18:19:48] Elapsed time: 35.323s total, 4.225s configuring, 30.732s building, 0.332s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:19:48] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:19:50] 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
[18:20:15] Starting KUnit Kernel (1/1)...
[18:20:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:20:15] ============ drm_test_pick_cmdline (2 subtests) ============
[18:20:15] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[18:20:15] =============== drm_test_pick_cmdline_named ===============
[18:20:15] [PASSED] NTSC
[18:20:15] [PASSED] NTSC-J
[18:20:15] [PASSED] PAL
[18:20:15] [PASSED] PAL-M
[18:20:15] =========== [PASSED] drm_test_pick_cmdline_named ===========
[18:20:15] ============== [PASSED] drm_test_pick_cmdline ==============
[18:20:15] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:20:15] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:20:15] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:20:15] =========== drm_validate_clone_mode (2 subtests) ===========
[18:20:15] ============== drm_test_check_in_clone_mode ===============
[18:20:15] [PASSED] in_clone_mode
[18:20:15] [PASSED] not_in_clone_mode
[18:20:15] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:20:15] =============== drm_test_check_valid_clones ===============
[18:20:15] [PASSED] not_in_clone_mode
[18:20:15] [PASSED] valid_clone
[18:20:15] [PASSED] invalid_clone
[18:20:15] =========== [PASSED] drm_test_check_valid_clones ===========
[18:20:15] ============= [PASSED] drm_validate_clone_mode =============
[18:20:15] ============= drm_validate_modeset (1 subtest) =============
[18:20:15] [PASSED] drm_test_check_connector_changed_modeset
[18:20:15] ============== [PASSED] drm_validate_modeset ===============
[18:20:15] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:20:15] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:20:15] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:20:15] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:20:15] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:20:15] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:20:15] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:20:15] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:20:15] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:20:15] ============== drm_bridge_alloc (2 subtests) ===============
[18:20:15] [PASSED] drm_test_drm_bridge_alloc_basic
[18:20:15] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:20:15] ================ [PASSED] drm_bridge_alloc =================
[18:20:15] ================== drm_buddy (8 subtests) ==================
[18:20:15] [PASSED] drm_test_buddy_alloc_limit
[18:20:15] [PASSED] drm_test_buddy_alloc_optimistic
[18:20:15] [PASSED] drm_test_buddy_alloc_pessimistic
[18:20:15] [PASSED] drm_test_buddy_alloc_pathological
[18:20:15] [PASSED] drm_test_buddy_alloc_contiguous
[18:20:15] [PASSED] drm_test_buddy_alloc_clear
[18:20:15] [PASSED] drm_test_buddy_alloc_range_bias
[18:20:15] [PASSED] drm_test_buddy_fragmentation_performance
[18:20:15] ==================== [PASSED] drm_buddy ====================
[18:20:15] ============= drm_cmdline_parser (40 subtests) =============
[18:20:15] [PASSED] drm_test_cmdline_force_d_only
[18:20:15] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:20:15] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:20:15] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:20:15] [PASSED] drm_test_cmdline_force_e_only
[18:20:15] [PASSED] drm_test_cmdline_res
[18:20:15] [PASSED] drm_test_cmdline_res_vesa
[18:20:15] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:20:15] [PASSED] drm_test_cmdline_res_rblank
[18:20:15] [PASSED] drm_test_cmdline_res_bpp
[18:20:15] [PASSED] drm_test_cmdline_res_refresh
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:20:15] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:20:15] [PASSED] drm_test_cmdline_res_margins_force_on
[18:20:15] [PASSED] drm_test_cmdline_res_vesa_margins
[18:20:15] [PASSED] drm_test_cmdline_name
[18:20:15] [PASSED] drm_test_cmdline_name_bpp
[18:20:15] [PASSED] drm_test_cmdline_name_option
[18:20:15] [PASSED] drm_test_cmdline_name_bpp_option
[18:20:15] [PASSED] drm_test_cmdline_rotate_0
[18:20:15] [PASSED] drm_test_cmdline_rotate_90
[18:20:15] [PASSED] drm_test_cmdline_rotate_180
[18:20:15] [PASSED] drm_test_cmdline_rotate_270
[18:20:15] [PASSED] drm_test_cmdline_hmirror
[18:20:15] [PASSED] drm_test_cmdline_vmirror
[18:20:15] [PASSED] drm_test_cmdline_margin_options
[18:20:15] [PASSED] drm_test_cmdline_multiple_options
[18:20:15] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:20:15] [PASSED] drm_test_cmdline_extra_and_option
[18:20:15] [PASSED] drm_test_cmdline_freestanding_options
[18:20:15] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:20:15] [PASSED] drm_test_cmdline_panel_orientation
[18:20:15] ================ drm_test_cmdline_invalid =================
[18:20:15] [PASSED] margin_only
[18:20:15] [PASSED] interlace_only
[18:20:15] [PASSED] res_missing_x
[18:20:15] [PASSED] res_missing_y
[18:20:15] [PASSED] res_bad_y
[18:20:15] [PASSED] res_missing_y_bpp
[18:20:15] [PASSED] res_bad_bpp
[18:20:15] [PASSED] res_bad_refresh
[18:20:15] [PASSED] res_bpp_refresh_force_on_off
[18:20:15] [PASSED] res_invalid_mode
[18:20:15] [PASSED] res_bpp_wrong_place_mode
[18:20:15] [PASSED] name_bpp_refresh
[18:20:15] [PASSED] name_refresh
[18:20:15] [PASSED] name_refresh_wrong_mode
[18:20:15] [PASSED] name_refresh_invalid_mode
[18:20:15] [PASSED] rotate_multiple
[18:20:15] [PASSED] rotate_invalid_val
[18:20:15] [PASSED] rotate_truncated
[18:20:15] [PASSED] invalid_option
[18:20:15] [PASSED] invalid_tv_option
[18:20:15] [PASSED] truncated_tv_option
[18:20:15] ============ [PASSED] drm_test_cmdline_invalid =============
[18:20:15] =============== drm_test_cmdline_tv_options ===============
[18:20:15] [PASSED] NTSC
[18:20:15] [PASSED] NTSC_443
[18:20:15] [PASSED] NTSC_J
[18:20:15] [PASSED] PAL
[18:20:15] [PASSED] PAL_M
[18:20:15] [PASSED] PAL_N
[18:20:15] [PASSED] SECAM
[18:20:15] [PASSED] MONO_525
[18:20:15] [PASSED] MONO_625
[18:20:15] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:20:15] =============== [PASSED] drm_cmdline_parser ================
[18:20:15] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:20:15] [PASSED] drm_test_connector_hdmi_init_valid
[18:20:15] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:20:15] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:20:15] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:20:15] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:20:15] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:20:15] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:20:15] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:20:15] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:20:15] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:20:15] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:20:15] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:20:15] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:20:15] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:20:15] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:20:15] [PASSED] drm_test_connector_hdmi_init_null_product
[18:20:15] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:20:15] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:20:15] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:20:15] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:20:15] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:20:15] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:20:15] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:20:15] ========= drm_test_connector_hdmi_init_type_valid =========
[18:20:15] [PASSED] HDMI-A
[18:20:15] [PASSED] HDMI-B
[18:20:15] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:20:15] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:20:15] [PASSED] Unknown
[18:20:15] [PASSED] VGA
[18:20:15] [PASSED] DVI-I
[18:20:15] [PASSED] DVI-D
[18:20:15] [PASSED] DVI-A
[18:20:15] [PASSED] Composite
[18:20:15] [PASSED] SVIDEO
[18:20:15] [PASSED] LVDS
[18:20:15] [PASSED] Component
[18:20:15] [PASSED] DIN
[18:20:15] [PASSED] DP
[18:20:15] [PASSED] TV
[18:20:15] [PASSED] eDP
[18:20:15] [PASSED] Virtual
[18:20:15] [PASSED] DSI
[18:20:15] [PASSED] DPI
[18:20:15] [PASSED] Writeback
[18:20:15] [PASSED] SPI
[18:20:15] [PASSED] USB
[18:20:15] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:20:15] ============ [PASSED] drmm_connector_hdmi_init =============
[18:20:15] ============= drmm_connector_init (3 subtests) =============
[18:20:15] [PASSED] drm_test_drmm_connector_init
[18:20:15] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:20:15] ========= drm_test_drmm_connector_init_type_valid =========
[18:20:15] [PASSED] Unknown
[18:20:15] [PASSED] VGA
[18:20:15] [PASSED] DVI-I
[18:20:15] [PASSED] DVI-D
[18:20:15] [PASSED] DVI-A
[18:20:15] [PASSED] Composite
[18:20:15] [PASSED] SVIDEO
[18:20:15] [PASSED] LVDS
[18:20:15] [PASSED] Component
[18:20:15] [PASSED] DIN
[18:20:15] [PASSED] DP
[18:20:15] [PASSED] HDMI-A
[18:20:15] [PASSED] HDMI-B
[18:20:15] [PASSED] TV
[18:20:15] [PASSED] eDP
[18:20:15] [PASSED] Virtual
[18:20:15] [PASSED] DSI
[18:20:15] [PASSED] DPI
[18:20:15] [PASSED] Writeback
[18:20:15] [PASSED] SPI
[18:20:15] [PASSED] USB
[18:20:15] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:20:15] =============== [PASSED] drmm_connector_init ===============
[18:20:15] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_init
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:20:15] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:20:15] [PASSED] Unknown
[18:20:15] [PASSED] VGA
[18:20:15] [PASSED] DVI-I
[18:20:15] [PASSED] DVI-D
[18:20:15] [PASSED] DVI-A
[18:20:15] [PASSED] Composite
[18:20:15] [PASSED] SVIDEO
[18:20:15] [PASSED] LVDS
[18:20:15] [PASSED] Component
[18:20:15] [PASSED] DIN
[18:20:15] [PASSED] DP
[18:20:15] [PASSED] HDMI-A
[18:20:15] [PASSED] HDMI-B
[18:20:15] [PASSED] TV
[18:20:15] [PASSED] eDP
[18:20:15] [PASSED] Virtual
[18:20:15] [PASSED] DSI
[18:20:15] [PASSED] DPI
[18:20:15] [PASSED] Writeback
[18:20:15] [PASSED] SPI
[18:20:15] [PASSED] USB
[18:20:15] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:20:15] ======== drm_test_drm_connector_dynamic_init_name =========
[18:20:15] [PASSED] Unknown
[18:20:15] [PASSED] VGA
[18:20:15] [PASSED] DVI-I
[18:20:15] [PASSED] DVI-D
[18:20:15] [PASSED] DVI-A
[18:20:15] [PASSED] Composite
[18:20:15] [PASSED] SVIDEO
[18:20:15] [PASSED] LVDS
[18:20:15] [PASSED] Component
[18:20:15] [PASSED] DIN
[18:20:15] [PASSED] DP
[18:20:15] [PASSED] HDMI-A
[18:20:15] [PASSED] HDMI-B
[18:20:15] [PASSED] TV
[18:20:15] [PASSED] eDP
[18:20:15] [PASSED] Virtual
[18:20:15] [PASSED] DSI
[18:20:15] [PASSED] DPI
[18:20:15] [PASSED] Writeback
[18:20:15] [PASSED] SPI
[18:20:15] [PASSED] USB
[18:20:15] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:20:15] =========== [PASSED] drm_connector_dynamic_init ============
[18:20:15] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:20:15] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:20:15] ======= drm_connector_dynamic_register (7 subtests) ========
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:20:15] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:20:15] ========= [PASSED] drm_connector_dynamic_register ==========
[18:20:15] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:20:15] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:20:15] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:20:15] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:20:15] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:20:15] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:20:15] [PASSED] NTSC
[18:20:15] [PASSED] NTSC-443
[18:20:15] [PASSED] NTSC-J
[18:20:15] [PASSED] PAL
[18:20:15] [PASSED] PAL-M
[18:20:15] [PASSED] PAL-N
[18:20:15] [PASSED] SECAM
[18:20:15] [PASSED] Mono
[18:20:15] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:20:15] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:20:15] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:20:15] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:20:15] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:20:15] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:20:15] [PASSED] VIC 96
[18:20:15] [PASSED] VIC 97
[18:20:15] [PASSED] VIC 101
[18:20:15] [PASSED] VIC 102
[18:20:15] [PASSED] VIC 106
[18:20:15] [PASSED] VIC 107
[18:20:15] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:20:15] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:20:15] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:20:15] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:20:15] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:20:15] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:20:15] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:20:15] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:20:15] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:20:15] [PASSED] Automatic
[18:20:15] [PASSED] Full
[18:20:15] [PASSED] Limited 16:235
[18:20:15] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:20:15] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:20:15] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:20:15] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:20:15] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:20:15] [PASSED] RGB
[18:20:15] [PASSED] YUV 4:2:0
[18:20:15] [PASSED] YUV 4:2:2
[18:20:15] [PASSED] YUV 4:4:4
[18:20:15] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:20:15] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:20:15] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:20:15] ============= drm_damage_helper (21 subtests) ==============
[18:20:15] [PASSED] drm_test_damage_iter_no_damage
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:20:15] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:20:15] [PASSED] drm_test_damage_iter_simple_damage
[18:20:15] [PASSED] drm_test_damage_iter_single_damage
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:20:15] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:20:15] [PASSED] drm_test_damage_iter_damage
[18:20:15] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:20:15] [PASSED] drm_test_damage_iter_damage_one_outside
[18:20:15] [PASSED] drm_test_damage_iter_damage_src_moved
[18:20:15] [PASSED] drm_test_damage_iter_damage_not_visible
[18:20:15] ================ [PASSED] drm_damage_helper ================
[18:20:15] ============== drm_dp_mst_helper (3 subtests) ==============
[18:20:15] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:20:15] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:20:15] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:20:15] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:20:15] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:20:15] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:20:15] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:20:15] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:20:15] [PASSED] Link rate 2000000 lane count 4
[18:20:15] [PASSED] Link rate 2000000 lane count 2
[18:20:15] [PASSED] Link rate 2000000 lane count 1
[18:20:15] [PASSED] Link rate 1350000 lane count 4
[18:20:15] [PASSED] Link rate 1350000 lane count 2
[18:20:15] [PASSED] Link rate 1350000 lane count 1
[18:20:15] [PASSED] Link rate 1000000 lane count 4
[18:20:15] [PASSED] Link rate 1000000 lane count 2
[18:20:15] [PASSED] Link rate 1000000 lane count 1
[18:20:15] [PASSED] Link rate 810000 lane count 4
[18:20:15] [PASSED] Link rate 810000 lane count 2
[18:20:15] [PASSED] Link rate 810000 lane count 1
[18:20:15] [PASSED] Link rate 540000 lane count 4
[18:20:15] [PASSED] Link rate 540000 lane count 2
[18:20:15] [PASSED] Link rate 540000 lane count 1
[18:20:15] [PASSED] Link rate 270000 lane count 4
[18:20:15] [PASSED] Link rate 270000 lane count 2
[18:20:15] [PASSED] Link rate 270000 lane count 1
[18:20:15] [PASSED] Link rate 162000 lane count 4
[18:20:15] [PASSED] Link rate 162000 lane count 2
[18:20:15] [PASSED] Link rate 162000 lane count 1
[18:20:15] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:20:15] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:20:15] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:20:15] [PASSED] DP_POWER_UP_PHY with port number
[18:20:15] [PASSED] DP_POWER_DOWN_PHY with port number
[18:20:15] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:20:15] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:20:15] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:20:15] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:20:15] [PASSED] DP_QUERY_PAYLOAD with port number
[18:20:15] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:20:15] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:20:15] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:20:15] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:20:15] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:20:15] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:20:15] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:20:15] [PASSED] DP_REMOTE_I2C_READ with port number
[18:20:15] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:20:15] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:20:15] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:20:15] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:20:15] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:20:15] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:20:15] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:20:15] ================ [PASSED] drm_dp_mst_helper ================
[18:20:15] ================== drm_exec (7 subtests) ===================
[18:20:15] [PASSED] sanitycheck
[18:20:15] [PASSED] test_lock
[18:20:15] [PASSED] test_lock_unlock
[18:20:15] [PASSED] test_duplicates
[18:20:15] [PASSED] test_prepare
[18:20:15] [PASSED] test_prepare_array
[18:20:15] [PASSED] test_multiple_loops
[18:20:15] ==================== [PASSED] drm_exec =====================
[18:20:15] =========== drm_format_helper_test (17 subtests) ===========
[18:20:15] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:20:15] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:20:15] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:20:15] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:20:15] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:20:15] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:20:15] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:20:15] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:20:15] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:20:15] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:20:15] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:20:15] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:20:15] ==================== drm_test_fb_swab =====================
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ================ [PASSED] drm_test_fb_swab =================
[18:20:15] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:20:15] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:20:15] [PASSED] single_pixel_source_buffer
[18:20:15] [PASSED] single_pixel_clip_rectangle
[18:20:15] [PASSED] well_known_colors
[18:20:15] [PASSED] destination_pitch
[18:20:15] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:20:15] ================= drm_test_fb_clip_offset =================
[18:20:15] [PASSED] pass through
[18:20:15] [PASSED] horizontal offset
[18:20:15] [PASSED] vertical offset
[18:20:15] [PASSED] horizontal and vertical offset
[18:20:15] [PASSED] horizontal offset (custom pitch)
[18:20:15] [PASSED] vertical offset (custom pitch)
[18:20:15] [PASSED] horizontal and vertical offset (custom pitch)
[18:20:15] ============= [PASSED] drm_test_fb_clip_offset =============
[18:20:15] =================== drm_test_fb_memcpy ====================
[18:20:15] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:20:15] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:20:15] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:20:15] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:20:15] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:20:15] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:20:15] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:20:15] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:20:15] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:20:15] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:20:15] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:20:15] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:20:15] =============== [PASSED] drm_test_fb_memcpy ================
[18:20:15] ============= [PASSED] drm_format_helper_test ==============
[18:20:15] ================= drm_format (18 subtests) =================
[18:20:15] [PASSED] drm_test_format_block_width_invalid
[18:20:15] [PASSED] drm_test_format_block_width_one_plane
[18:20:15] [PASSED] drm_test_format_block_width_two_plane
[18:20:15] [PASSED] drm_test_format_block_width_three_plane
[18:20:15] [PASSED] drm_test_format_block_width_tiled
[18:20:15] [PASSED] drm_test_format_block_height_invalid
[18:20:15] [PASSED] drm_test_format_block_height_one_plane
[18:20:15] [PASSED] drm_test_format_block_height_two_plane
[18:20:15] [PASSED] drm_test_format_block_height_three_plane
[18:20:15] [PASSED] drm_test_format_block_height_tiled
[18:20:15] [PASSED] drm_test_format_min_pitch_invalid
[18:20:15] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:20:15] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:20:15] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:20:15] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:20:15] [PASSED] drm_test_format_min_pitch_two_plane
[18:20:15] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:20:15] [PASSED] drm_test_format_min_pitch_tiled
[18:20:15] =================== [PASSED] drm_format ====================
[18:20:15] ============== drm_framebuffer (10 subtests) ===============
[18:20:15] ========== drm_test_framebuffer_check_src_coords ==========
[18:20:15] [PASSED] Success: source fits into fb
[18:20:15] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:20:15] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:20:15] [PASSED] Fail: overflowing fb with source width
[18:20:15] [PASSED] Fail: overflowing fb with source height
[18:20:15] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:20:15] [PASSED] drm_test_framebuffer_cleanup
[18:20:15] =============== drm_test_framebuffer_create ===============
[18:20:15] [PASSED] ABGR8888 normal sizes
[18:20:15] [PASSED] ABGR8888 max sizes
[18:20:15] [PASSED] ABGR8888 pitch greater than min required
[18:20:15] [PASSED] ABGR8888 pitch less than min required
[18:20:15] [PASSED] ABGR8888 Invalid width
[18:20:15] [PASSED] ABGR8888 Invalid buffer handle
[18:20:15] [PASSED] No pixel format
[18:20:15] [PASSED] ABGR8888 Width 0
[18:20:15] [PASSED] ABGR8888 Height 0
[18:20:15] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:20:15] [PASSED] ABGR8888 Large buffer offset
[18:20:15] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:20:15] [PASSED] ABGR8888 Invalid flag
[18:20:15] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:20:15] [PASSED] ABGR8888 Valid buffer modifier
[18:20:15] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:20:15] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] NV12 Normal sizes
[18:20:15] [PASSED] NV12 Max sizes
[18:20:15] [PASSED] NV12 Invalid pitch
[18:20:15] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:20:15] [PASSED] NV12 different modifier per-plane
[18:20:15] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:20:15] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] NV12 Modifier for inexistent plane
[18:20:15] [PASSED] NV12 Handle for inexistent plane
[18:20:15] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:20:15] [PASSED] YVU420 Normal sizes
[18:20:15] [PASSED] YVU420 Max sizes
[18:20:15] [PASSED] YVU420 Invalid pitch
[18:20:15] [PASSED] YVU420 Different pitches
[18:20:15] [PASSED] YVU420 Different buffer offsets/pitches
[18:20:15] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:20:15] [PASSED] YVU420 Valid modifier
[18:20:15] [PASSED] YVU420 Different modifiers per plane
[18:20:15] [PASSED] YVU420 Modifier for inexistent plane
[18:20:15] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:20:15] [PASSED] X0L2 Normal sizes
[18:20:15] [PASSED] X0L2 Max sizes
[18:20:15] [PASSED] X0L2 Invalid pitch
[18:20:15] [PASSED] X0L2 Pitch greater than minimum required
[18:20:15] [PASSED] X0L2 Handle for inexistent plane
[18:20:15] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:20:15] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:20:15] [PASSED] X0L2 Valid modifier
[18:20:15] [PASSED] X0L2 Modifier for inexistent plane
[18:20:15] =========== [PASSED] drm_test_framebuffer_create ===========
[18:20:15] [PASSED] drm_test_framebuffer_free
[18:20:15] [PASSED] drm_test_framebuffer_init
[18:20:15] [PASSED] drm_test_framebuffer_init_bad_format
[18:20:15] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:20:15] [PASSED] drm_test_framebuffer_lookup
[18:20:15] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:20:15] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:20:15] ================= [PASSED] drm_framebuffer =================
[18:20:15] ================ drm_gem_shmem (8 subtests) ================
[18:20:15] [PASSED] drm_gem_shmem_test_obj_create
[18:20:15] [PASSED] drm_gem_shmem_test_obj_create_private
[18:20:15] [PASSED] drm_gem_shmem_test_pin_pages
[18:20:15] [PASSED] drm_gem_shmem_test_vmap
[18:20:15] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:20:15] [PASSED] drm_gem_shmem_test_get_sg_table
[18:20:15] [PASSED] drm_gem_shmem_test_madvise
[18:20:15] [PASSED] drm_gem_shmem_test_purge
[18:20:15] ================== [PASSED] drm_gem_shmem ==================
[18:20:15] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:20:15] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:20:15] [PASSED] Automatic
[18:20:15] [PASSED] Full
[18:20:15] [PASSED] Limited 16:235
[18:20:15] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:20:15] [PASSED] drm_test_check_disable_connector
[18:20:15] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:20:15] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:20:15] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:20:15] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:20:15] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:20:15] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:20:15] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:20:15] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:20:15] [PASSED] drm_test_check_output_bpc_dvi
[18:20:15] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:20:15] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:20:15] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:20:15] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:20:15] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:20:15] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:20:15] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:20:15] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:20:15] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:20:15] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:20:15] [PASSED] drm_test_check_broadcast_rgb_value
[18:20:15] [PASSED] drm_test_check_bpc_8_value
[18:20:15] [PASSED] drm_test_check_bpc_10_value
[18:20:15] [PASSED] drm_test_check_bpc_12_value
[18:20:15] [PASSED] drm_test_check_format_value
[18:20:15] [PASSED] drm_test_check_tmds_char_value
[18:20:15] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:20:15] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:20:15] [PASSED] drm_test_check_mode_valid
[18:20:15] [PASSED] drm_test_check_mode_valid_reject
[18:20:15] [PASSED] drm_test_check_mode_valid_reject_rate
[18:20:15] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:20:15] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:20:15] ================= drm_managed (2 subtests) =================
[18:20:15] [PASSED] drm_test_managed_release_action
[18:20:15] [PASSED] drm_test_managed_run_action
[18:20:15] =================== [PASSED] drm_managed ===================
[18:20:15] =================== drm_mm (6 subtests) ====================
[18:20:15] [PASSED] drm_test_mm_init
[18:20:15] [PASSED] drm_test_mm_debug
[18:20:15] [PASSED] drm_test_mm_align32
[18:20:15] [PASSED] drm_test_mm_align64
[18:20:15] [PASSED] drm_test_mm_lowest
[18:20:15] [PASSED] drm_test_mm_highest
[18:20:15] ===================== [PASSED] drm_mm ======================
[18:20:15] ============= drm_modes_analog_tv (5 subtests) =============
[18:20:15] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:20:15] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:20:15] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:20:15] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:20:15] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:20:15] =============== [PASSED] drm_modes_analog_tv ===============
[18:20:15] ============== drm_plane_helper (2 subtests) ===============
[18:20:15] =============== drm_test_check_plane_state ================
[18:20:15] [PASSED] clipping_simple
[18:20:15] [PASSED] clipping_rotate_reflect
[18:20:15] [PASSED] positioning_simple
[18:20:15] [PASSED] upscaling
[18:20:15] [PASSED] downscaling
[18:20:15] [PASSED] rounding1
[18:20:15] [PASSED] rounding2
[18:20:15] [PASSED] rounding3
[18:20:15] [PASSED] rounding4
[18:20:15] =========== [PASSED] drm_test_check_plane_state ============
[18:20:15] =========== drm_test_check_invalid_plane_state ============
[18:20:15] [PASSED] positioning_invalid
[18:20:15] [PASSED] upscaling_invalid
[18:20:15] [PASSED] downscaling_invalid
[18:20:15] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:20:15] ================ [PASSED] drm_plane_helper =================
[18:20:15] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:20:15] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:20:15] [PASSED] None
[18:20:15] [PASSED] PAL
[18:20:15] [PASSED] NTSC
[18:20:15] [PASSED] Both, NTSC Default
[18:20:15] [PASSED] Both, PAL Default
[18:20:15] [PASSED] Both, NTSC Default, with PAL on command-line
[18:20:15] [PASSED] Both, PAL Default, with NTSC on command-line
[18:20:15] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:20:15] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:20:15] ================== drm_rect (9 subtests) ===================
[18:20:15] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:20:15] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:20:15] [PASSED] drm_test_rect_clip_scaled_clipped
[18:20:15] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:20:15] ================= drm_test_rect_intersect =================
[18:20:15] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:20:15] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:20:15] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:20:15] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:20:15] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:20:15] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:20:15] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:20:15] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:20:15] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:20:15] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:20:15] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:20:15] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:20:15] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:20:15] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:20:15] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:20:15] ============= [PASSED] drm_test_rect_intersect =============
[18:20:15] ================ drm_test_rect_calc_hscale ================
[18:20:15] [PASSED] normal use
[18:20:15] [PASSED] out of max range
[18:20:15] [PASSED] out of min range
[18:20:15] [PASSED] zero dst
[18:20:15] [PASSED] negative src
[18:20:15] [PASSED] negative dst
[18:20:15] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:20:15] ================ drm_test_rect_calc_vscale ================
[18:20:15] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[18:20:15] [PASSED] out of max range
[18:20:15] [PASSED] out of min range
[18:20:15] [PASSED] zero dst
[18:20:15] [PASSED] negative src
[18:20:15] [PASSED] negative dst
[18:20:15] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:20:15] ================== drm_test_rect_rotate ===================
[18:20:15] [PASSED] reflect-x
[18:20:15] [PASSED] reflect-y
[18:20:15] [PASSED] rotate-0
[18:20:15] [PASSED] rotate-90
[18:20:15] [PASSED] rotate-180
[18:20:15] [PASSED] rotate-270
[18:20:15] ============== [PASSED] drm_test_rect_rotate ===============
[18:20:15] ================ drm_test_rect_rotate_inv =================
[18:20:15] [PASSED] reflect-x
[18:20:15] [PASSED] reflect-y
[18:20:15] [PASSED] rotate-0
[18:20:15] [PASSED] rotate-90
[18:20:15] [PASSED] rotate-180
[18:20:15] [PASSED] rotate-270
[18:20:15] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:20:15] ==================== [PASSED] drm_rect =====================
[18:20:15] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:20:15] ============ drm_test_sysfb_build_fourcc_list =============
[18:20:15] [PASSED] no native formats
[18:20:15] [PASSED] XRGB8888 as native format
[18:20:15] [PASSED] remove duplicates
[18:20:15] [PASSED] convert alpha formats
[18:20:15] [PASSED] random formats
[18:20:15] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:20:15] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:20:15] ============================================================
[18:20:15] Testing complete. Ran 622 tests: passed: 622
[18:20:15] Elapsed time: 27.108s total, 1.703s configuring, 24.984s building, 0.390s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:20:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:20:17] 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
[18:20:27] Starting KUnit Kernel (1/1)...
[18:20:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:20:27] ================= ttm_device (5 subtests) ==================
[18:20:27] [PASSED] ttm_device_init_basic
[18:20:27] [PASSED] ttm_device_init_multiple
[18:20:27] [PASSED] ttm_device_fini_basic
[18:20:27] [PASSED] ttm_device_init_no_vma_man
[18:20:27] ================== ttm_device_init_pools ==================
[18:20:27] [PASSED] No DMA allocations, no DMA32 required
[18:20:27] [PASSED] DMA allocations, DMA32 required
[18:20:27] [PASSED] No DMA allocations, DMA32 required
[18:20:27] [PASSED] DMA allocations, no DMA32 required
[18:20:27] ============== [PASSED] ttm_device_init_pools ==============
[18:20:27] =================== [PASSED] ttm_device ====================
[18:20:27] ================== ttm_pool (8 subtests) ===================
[18:20:27] ================== ttm_pool_alloc_basic ===================
[18:20:27] [PASSED] One page
[18:20:27] [PASSED] More than one page
[18:20:27] [PASSED] Above the allocation limit
[18:20:27] [PASSED] One page, with coherent DMA mappings enabled
[18:20:27] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:20:27] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:20:27] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:20:27] [PASSED] One page
[18:20:27] [PASSED] More than one page
[18:20:27] [PASSED] Above the allocation limit
[18:20:27] [PASSED] One page, with coherent DMA mappings enabled
[18:20:27] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:20:27] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:20:27] [PASSED] ttm_pool_alloc_order_caching_match
[18:20:27] [PASSED] ttm_pool_alloc_caching_mismatch
[18:20:27] [PASSED] ttm_pool_alloc_order_mismatch
[18:20:27] [PASSED] ttm_pool_free_dma_alloc
[18:20:27] [PASSED] ttm_pool_free_no_dma_alloc
[18:20:27] [PASSED] ttm_pool_fini_basic
[18:20:27] ==================== [PASSED] ttm_pool =====================
[18:20:27] ================ ttm_resource (8 subtests) =================
[18:20:27] ================= ttm_resource_init_basic =================
[18:20:27] [PASSED] Init resource in TTM_PL_SYSTEM
[18:20:27] [PASSED] Init resource in TTM_PL_VRAM
[18:20:27] [PASSED] Init resource in a private placement
[18:20:27] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:20:27] ============= [PASSED] ttm_resource_init_basic =============
[18:20:27] [PASSED] ttm_resource_init_pinned
[18:20:27] [PASSED] ttm_resource_fini_basic
[18:20:27] [PASSED] ttm_resource_manager_init_basic
[18:20:27] [PASSED] ttm_resource_manager_usage_basic
[18:20:27] [PASSED] ttm_resource_manager_set_used_basic
[18:20:27] [PASSED] ttm_sys_man_alloc_basic
[18:20:27] [PASSED] ttm_sys_man_free_basic
[18:20:27] ================== [PASSED] ttm_resource ===================
[18:20:27] =================== ttm_tt (15 subtests) ===================
[18:20:27] ==================== ttm_tt_init_basic ====================
[18:20:27] [PASSED] Page-aligned size
[18:20:27] [PASSED] Extra pages requested
[18:20:27] ================ [PASSED] ttm_tt_init_basic ================
[18:20:27] [PASSED] ttm_tt_init_misaligned
[18:20:27] [PASSED] ttm_tt_fini_basic
[18:20:27] [PASSED] ttm_tt_fini_sg
[18:20:27] [PASSED] ttm_tt_fini_shmem
[18:20:27] [PASSED] ttm_tt_create_basic
[18:20:27] [PASSED] ttm_tt_create_invalid_bo_type
[18:20:27] [PASSED] ttm_tt_create_ttm_exists
[18:20:27] [PASSED] ttm_tt_create_failed
[18:20:27] [PASSED] ttm_tt_destroy_basic
[18:20:27] [PASSED] ttm_tt_populate_null_ttm
[18:20:27] [PASSED] ttm_tt_populate_populated_ttm
[18:20:27] [PASSED] ttm_tt_unpopulate_basic
[18:20:27] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:20:27] [PASSED] ttm_tt_swapin_basic
[18:20:27] ===================== [PASSED] ttm_tt ======================
[18:20:27] =================== ttm_bo (14 subtests) ===================
[18:20:27] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:20:27] [PASSED] Cannot be interrupted and sleeps
[18:20:27] [PASSED] Cannot be interrupted, locks straight away
[18:20:27] [PASSED] Can be interrupted, sleeps
[18:20:27] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:20:27] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:20:27] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:20:27] [PASSED] ttm_bo_reserve_double_resv
[18:20:27] [PASSED] ttm_bo_reserve_interrupted
[18:20:27] [PASSED] ttm_bo_reserve_deadlock
[18:20:27] [PASSED] ttm_bo_unreserve_basic
[18:20:27] [PASSED] ttm_bo_unreserve_pinned
[18:20:27] [PASSED] ttm_bo_unreserve_bulk
[18:20:27] [PASSED] ttm_bo_fini_basic
[18:20:27] [PASSED] ttm_bo_fini_shared_resv
[18:20:27] [PASSED] ttm_bo_pin_basic
[18:20:27] [PASSED] ttm_bo_pin_unpin_resource
[18:20:27] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:20:27] ===================== [PASSED] ttm_bo ======================
[18:20:27] ============== ttm_bo_validate (21 subtests) ===============
[18:20:27] ============== ttm_bo_init_reserved_sys_man ===============
[18:20:27] [PASSED] Buffer object for userspace
[18:20:27] [PASSED] Kernel buffer object
[18:20:27] [PASSED] Shared buffer object
[18:20:27] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:20:27] ============== ttm_bo_init_reserved_mock_man ==============
[18:20:27] [PASSED] Buffer object for userspace
[18:20:27] [PASSED] Kernel buffer object
[18:20:27] [PASSED] Shared buffer object
[18:20:27] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:20:27] [PASSED] ttm_bo_init_reserved_resv
[18:20:27] ================== ttm_bo_validate_basic ==================
[18:20:27] [PASSED] Buffer object for userspace
[18:20:27] [PASSED] Kernel buffer object
[18:20:27] [PASSED] Shared buffer object
[18:20:27] ============== [PASSED] ttm_bo_validate_basic ==============
[18:20:27] [PASSED] ttm_bo_validate_invalid_placement
[18:20:27] ============= ttm_bo_validate_same_placement ==============
[18:20:27] [PASSED] System manager
[18:20:27] [PASSED] VRAM manager
[18:20:27] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:20:27] [PASSED] ttm_bo_validate_failed_alloc
[18:20:27] [PASSED] ttm_bo_validate_pinned
[18:20:27] [PASSED] ttm_bo_validate_busy_placement
[18:20:27] ================ ttm_bo_validate_multihop =================
[18:20:27] [PASSED] Buffer object for userspace
[18:20:27] [PASSED] Kernel buffer object
[18:20:27] [PASSED] Shared buffer object
[18:20:27] ============ [PASSED] ttm_bo_validate_multihop =============
[18:20:27] ========== ttm_bo_validate_no_placement_signaled ==========
[18:20:27] [PASSED] Buffer object in system domain, no page vector
[18:20:27] [PASSED] Buffer object in system domain with an existing page vector
[18:20:27] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:20:27] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:20:27] [PASSED] Buffer object for userspace
[18:20:27] [PASSED] Kernel buffer object
[18:20:27] [PASSED] Shared buffer object
[18:20:27] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:20:27] [PASSED] ttm_bo_validate_move_fence_signaled
[18:20:27] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:20:27] [PASSED] Waits for GPU
[18:20:27] [PASSED] Tries to lock straight away
[18:20:27] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:20:27] [PASSED] ttm_bo_validate_happy_evict
[18:20:27] [PASSED] ttm_bo_validate_all_pinned_evict
[18:20:27] [PASSED] ttm_bo_validate_allowed_only_evict
[18:20:27] [PASSED] ttm_bo_validate_deleted_evict
[18:20:27] [PASSED] ttm_bo_validate_busy_domain_evict
[18:20:27] [PASSED] ttm_bo_validate_evict_gutting
[18:20:27] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:20:27] ================= [PASSED] ttm_bo_validate =================
[18:20:27] ============================================================
[18:20:27] Testing complete. Ran 101 tests: passed: 101
[18:20:27] Elapsed time: 11.339s total, 1.722s configuring, 9.401s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Limit number of jobs per exec queue (rev2)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (5 preceding siblings ...)
2025-10-25 18:20 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev2) Patchwork
@ 2025-10-25 18:59 ` Patchwork
2025-10-25 20:09 ` ✗ Xe.CI.Full: failure " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-25 18:59 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1477 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev2)
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
CI Bug Log - changes from xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a_BAT -> xe-pw-156371v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156371v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@a-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a -> xe-pw-156371v2
IGT_8596: 8596
xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a: d827507f9c3c65785556819d50eb5131b2bf6a3a
xe-pw-156371v2: 156371v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/index.html
[-- Attachment #2: Type: text/html, Size: 2042 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe: Limit number of jobs per exec queue (rev2)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (6 preceding siblings ...)
2025-10-25 18:59 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-25 20:09 ` Patchwork
2025-10-27 16:33 ` [PATCH] drm/xe: Limit number of jobs per exec queue Matthew Brost
` (4 subsequent siblings)
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-25 20:09 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 50121 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev2)
URL : https://patchwork.freedesktop.org/series/156371/
State : failure
== Summary ==
CI Bug Log - changes from xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a_FULL -> xe-pw-156371v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156371v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156371v2_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-156371v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
Known issues
------------
Here are the changes found in xe-pw-156371v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#455]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#316])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [PASS][6] -> [DMESG-FAIL][7] ([Intel XE#4543]) +3 other tests dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][8] ([Intel XE#4543])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#367])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#367]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#787]) +14 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#3442])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- 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-156371v2/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) +1 other test incomplete
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/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-c-hdmi-a-6:
- shard-dg2-set2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#306]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#373]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-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-156371v2/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#308])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#309])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2291])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#323])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#3009])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_dp_aux_dev.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#4356])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#310]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
- shard-adlp: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#4543]) +2 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-2/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
- shard-adlp: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#455]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#6312])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#651]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-adlp: NOTRUN -> [DMESG-WARN][48] ([Intel XE#2953] / [Intel XE#4173])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#651]) +10 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#656]) +11 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#653]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#653]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#6312]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#2925])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#5020])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#5020])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#870])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#3414])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#1435])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1091] / [Intel XE#2849])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#5300])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1126])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#5626])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#4837]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_evict@evict-beng-small:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_evict@evict-beng-small.html
* igt@xe_evict@evict-beng-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#261])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_evict@evict-beng-small-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#6321])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_exec_fault_mode@many-execqueues-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#288]) +9 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][78] ([Intel XE#3868])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_system_allocator@madvise-multi-vma:
- shard-adlp: NOTRUN -> [SKIP][79] ([Intel XE#4915]) +95 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_exec_system_allocator@madvise-multi-vma.html
* igt@xe_exec_system_allocator@twice-mmap-new-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#4915]) +114 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [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], [SKIP][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131]) ([Intel XE#378])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-433/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-433/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-433/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-466/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-466/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-432/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-464/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-464/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-464/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-434/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-434/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-434/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-432/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-435/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-466/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-435/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-435/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-432/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-463/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-432/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-466/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-466/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-433/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-432/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-463/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-466/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-433/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-433/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-432/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-432/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-463/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_module_load@load.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#3573]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_oa@non-privileged-access-vaddr.html
* igt@xe_oa@oa-exponents:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#3573]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_oa@oa-exponents.html
* igt@xe_pm@d3cold-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#5694])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-adlp: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-4/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#5611] / [Intel XE#579])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][139] -> [FAIL][140] ([Intel XE#4819]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@xe_pmu@gt-frequency.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-optout:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#4733])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-oa-units:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#944])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#944])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#4273])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-435/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][145] ([Intel XE#3908]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][147] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][149] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][151] ([Intel XE#2291]) -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][153] ([Intel XE#4354]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [SKIP][155] ([Intel XE#2316]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][157] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-rmfb@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][159] ([Intel XE#4543]) -> [PASS][160] +1 other test pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-2/igt@kms_flip@flip-vs-rmfb@b-hdmi-a1.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_flip@flip-vs-rmfb@b-hdmi-a1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][161] ([Intel XE#4596]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [DMESG-WARN][163] ([Intel XE#3868]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-4/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][165] ([Intel XE#5786]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-dg2-set2: [DMESG-WARN][167] ([Intel XE#5893]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_pm@s2idle-mocs:
- shard-dg2-set2: [TIMEOUT][169] ([Intel XE#6227]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-436/igt@xe_pm@s2idle-mocs.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-436/igt@xe_pm@s2idle-mocs.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [ABORT][171] ([Intel XE#4917]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][173] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][175] ([Intel XE#4543] / [Intel XE#5208]) -> [DMESG-WARN][176] ([Intel XE#5208])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-adlp-2/igt@kms_flip@flip-vs-rmfb.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-adlp-8/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][177] ([Intel XE#2311]) -> [SKIP][178] ([Intel XE#2312]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][179] ([Intel XE#2312]) -> [SKIP][180] ([Intel XE#2311]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][181] ([Intel XE#5390]) -> [SKIP][182] ([Intel XE#2312]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][183] ([Intel XE#2312]) -> [SKIP][184] ([Intel XE#5390])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][185] ([Intel XE#2312]) -> [SKIP][186] ([Intel XE#2313]) +3 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2313]) -> [SKIP][188] ([Intel XE#2312]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][189] ([Intel XE#362]) -> [FAIL][190] ([Intel XE#1729])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][191] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) -> [ABORT][192] ([Intel XE#5466] / [Intel XE#5530])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[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#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[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#5611]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5611
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6227
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#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-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a -> xe-pw-156371v2
IGT_8596: 8596
xe-3986-d827507f9c3c65785556819d50eb5131b2bf6a3a: d827507f9c3c65785556819d50eb5131b2bf6a3a
xe-pw-156371v2: 156371v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v2/index.html
[-- Attachment #2: Type: text/html, Size: 58308 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (7 preceding siblings ...)
2025-10-25 20:09 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-27 16:33 ` Matthew Brost
2025-10-27 19:53 ` Matthew Brost
2025-10-27 20:21 ` [PATCH v3] " Shuicheng Lin
` (3 subsequent siblings)
12 siblings, 1 reply; 19+ messages in thread
From: Matthew Brost @ 2025-10-27 16:33 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe, stuart.summers
On Wed, Oct 22, 2025 at 06:10:37PM +0000, Shuicheng Lin wrote:
> Add a limit to the number of jobs that can be queued in a single
> exec queue to avoid potential resource exhaustion.
>
> A new field `job_cnt` is introduced in `struct xe_exec_queue` to
> track the number of active DRM jobs, along with a maximum limit
> `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
>
> If the job count exceeds this threshold, `xe_exec_ioctl()` now
> returns `-EAGAIN` to signal that the caller should retry later.
>
This patch looks correct. One extra suggestion - can we get an assert in
xe_exec_queue_destroy that q->job_cnt is zero?
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
> drivers/gpu/drm/xe/xe_exec.c | 5 +++++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> 3 files changed, 12 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 0dc27476832b..722a5ac0200a 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> goto err_exec_queue;
> }
>
> + if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> + err = -EAGAIN;
> + goto err_exec_queue;
> + }
> +
> if (args->num_syncs) {
> syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
> if (!syncs) {
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> index 282505fa1377..5f3219acec3c 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> @@ -162,6 +162,11 @@ struct xe_exec_queue {
> const struct xe_ring_ops *ring_ops;
> /** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
> struct drm_sched_entity *entity;
> +
> +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
> +
I'd lose newline here
> + /** @job_cnt: number of drm jobs in this exec queue */
> + u32 job_cnt;
And add one here.
Matt
> /**
> * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> * Protected by @vm's resv. Unused if @vm == NULL.
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
> index d21bf8f26964..37f58be7cbcc 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.c
> +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
> for (i = 0; i < width; ++i)
> job->ptrs[i].batch_addr = batch_addr[i];
>
> + q->job_cnt++;
> xe_pm_runtime_get_noresume(job_to_xe(job));
> trace_xe_sched_job_create(job);
> return job;
> @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> dma_fence_put(job->fence);
> drm_sched_job_cleanup(&job->drm);
> job_free(job);
> + q->job_cnt--;
> xe_exec_queue_put(q);
> xe_pm_runtime_put(xe);
> }
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] drm/xe: Limit number of jobs per exec queue
2025-10-27 16:33 ` [PATCH] drm/xe: Limit number of jobs per exec queue Matthew Brost
@ 2025-10-27 19:53 ` Matthew Brost
0 siblings, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-10-27 19:53 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe, stuart.summers
On Mon, Oct 27, 2025 at 09:33:03AM -0700, Matthew Brost wrote:
> On Wed, Oct 22, 2025 at 06:10:37PM +0000, Shuicheng Lin wrote:
> > Add a limit to the number of jobs that can be queued in a single
> > exec queue to avoid potential resource exhaustion.
> >
> > A new field `job_cnt` is introduced in `struct xe_exec_queue` to
> > track the number of active DRM jobs, along with a maximum limit
> > `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 0x1000.
> >
> > If the job count exceeds this threshold, `xe_exec_ioctl()` now
> > returns `-EAGAIN` to signal that the caller should retry later.
> >
>
> This patch looks correct. One extra suggestion - can we get an assert in
> xe_exec_queue_destroy that q->job_cnt is zero?
>
This was sent to wrong version.
Matt
> > Suggested-by: Matthew Brost <matthew.brost@intel.com>
> > Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_exec.c | 5 +++++
> > drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> > drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> > 3 files changed, 12 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> > index 0dc27476832b..722a5ac0200a 100644
> > --- a/drivers/gpu/drm/xe/xe_exec.c
> > +++ b/drivers/gpu/drm/xe/xe_exec.c
> > @@ -154,6 +154,11 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> > goto err_exec_queue;
> > }
> >
> > + if (q->job_cnt >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> > + err = -EAGAIN;
> > + goto err_exec_queue;
> > + }
> > +
> > if (args->num_syncs) {
> > syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
> > if (!syncs) {
> > diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > index 282505fa1377..5f3219acec3c 100644
> > --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> > @@ -162,6 +162,11 @@ struct xe_exec_queue {
> > const struct xe_ring_ops *ring_ops;
> > /** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
> > struct drm_sched_entity *entity;
> > +
> > +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 0x1000
> > +
>
> I'd lose newline here
>
> > + /** @job_cnt: number of drm jobs in this exec queue */
> > + u32 job_cnt;
>
> And add one here.
>
> Matt
>
> > /**
> > * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> > * Protected by @vm's resv. Unused if @vm == NULL.
> > diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
> > index d21bf8f26964..37f58be7cbcc 100644
> > --- a/drivers/gpu/drm/xe/xe_sched_job.c
> > +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> > @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
> > for (i = 0; i < width; ++i)
> > job->ptrs[i].batch_addr = batch_addr[i];
> >
> > + q->job_cnt++;
> > xe_pm_runtime_get_noresume(job_to_xe(job));
> > trace_xe_sched_job_create(job);
> > return job;
> > @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> > dma_fence_put(job->fence);
> > drm_sched_job_cleanup(&job->drm);
> > job_free(job);
> > + q->job_cnt--;
> > xe_exec_queue_put(q);
> > xe_pm_runtime_put(xe);
> > }
> > --
> > 2.49.0
> >
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v3] drm/xe: Limit number of jobs per exec queue
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (8 preceding siblings ...)
2025-10-27 16:33 ` [PATCH] drm/xe: Limit number of jobs per exec queue Matthew Brost
@ 2025-10-27 20:21 ` Shuicheng Lin
2025-10-27 21:47 ` Matthew Brost
2025-10-29 1:48 ` Matthew Brost
2025-10-27 21:14 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev3) Patchwork
` (2 subsequent siblings)
12 siblings, 2 replies; 19+ messages in thread
From: Shuicheng Lin @ 2025-10-27 20:21 UTC (permalink / raw)
To: intel-xe; +Cc: stuart.summers, Shuicheng Lin, Matthew Brost
Add a limit to the number of jobs that can be queued in a single
exec queue to avoid potential resource exhaustion.
A new field `job_cnt` is introduced in `struct xe_exec_queue` to
track the number of active DRM jobs, along with a maximum limit
`XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 1000.
If the job count exceeds this threshold, `xe_exec_ioctl()` now
returns `-EAGAIN` to signal that the caller should retry later.
A trace event is added to track when the limit is reached:
"xe_exec_queue_reach_max_job_count: dev=0000:03:00.0, job count
exceeded the maximum limit (1000) per exec queue. engine_class=0x3,
logical_mask=0x1, guc_id=2"
v3: add assert in xe_exec_queue_destroy that q->job_cnt is zero. (Matt)
v2 (Matt):
- add log to trace the limit is hit.
- Change max count from 0x1000 to 1000.
- Use atomic_t for job_cnt.
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
---
drivers/gpu/drm/xe/xe_exec.c | 7 +++++++
drivers/gpu/drm/xe/xe_exec_queue.c | 2 ++
drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
drivers/gpu/drm/xe/xe_trace.h | 23 +++++++++++++++++++++++
5 files changed, 39 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index 521467d976f7..f4d79b4b9396 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -21,6 +21,7 @@
#include "xe_sched_job.h"
#include "xe_sync.h"
#include "xe_svm.h"
+#include "xe_trace.h"
#include "xe_vm.h"
/**
@@ -154,6 +155,12 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
goto err_exec_queue;
}
+ if (atomic_read(&q->job_cnt) >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
+ trace_xe_exec_queue_reach_max_job_count(q, XE_MAX_JOB_COUNT_PER_EXEC_QUEUE);
+ err = -EAGAIN;
+ goto err_exec_queue;
+ }
+
if (args->num_syncs) {
syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
if (!syncs) {
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 90cbc95f8e2e..1b57d7c2cc94 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -377,6 +377,8 @@ void xe_exec_queue_destroy(struct kref *ref)
struct xe_exec_queue *q = container_of(ref, struct xe_exec_queue, refcount);
struct xe_exec_queue *eq, *next;
+ xe_assert(gt_to_xe(q->gt), atomic_read(&q->job_cnt) == 0);
+
if (xe_exec_queue_uses_pxp(q))
xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 282505fa1377..c8807268ec6c 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -162,6 +162,11 @@ struct xe_exec_queue {
const struct xe_ring_ops *ring_ops;
/** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
struct drm_sched_entity *entity;
+
+#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 1000
+ /** @job_cnt: number of drm jobs in this exec queue */
+ atomic_t job_cnt;
+
/**
* @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
* Protected by @vm's resv. Unused if @vm == NULL.
diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
index 6ae4cc6a3802..f1ba9c19e218 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.c
+++ b/drivers/gpu/drm/xe/xe_sched_job.c
@@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
for (i = 0; i < width; ++i)
job->ptrs[i].batch_addr = batch_addr[i];
+ atomic_inc(&q->job_cnt);
xe_pm_runtime_get_noresume(job_to_xe(job));
trace_xe_sched_job_create(job);
return job;
@@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
dma_fence_put(job->fence);
drm_sched_job_cleanup(&job->drm);
job_free(job);
+ atomic_dec(&q->job_cnt);
xe_exec_queue_put(q);
xe_pm_runtime_put(xe);
}
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 314f42fcbcbd..79a97b086cb2 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -441,6 +441,29 @@ TRACE_EVENT(xe_eu_stall_data_read,
__entry->read_size, __entry->total_size)
);
+TRACE_EVENT(xe_exec_queue_reach_max_job_count,
+ TP_PROTO(struct xe_exec_queue *q, int max_cnt),
+ TP_ARGS(q, max_cnt),
+
+ TP_STRUCT__entry(__string(dev, __dev_name_eq(q))
+ __field(enum xe_engine_class, class)
+ __field(u32, logical_mask)
+ __field(u16, guc_id)
+ __field(int, max_cnt)
+ ),
+
+ TP_fast_assign(__assign_str(dev);
+ __entry->class = q->class;
+ __entry->logical_mask = q->logical_mask;
+ __entry->guc_id = q->guc->id;
+ __entry->max_cnt = max_cnt;
+ ),
+
+ TP_printk("dev=%s, job count exceeded the maximum limit (%d) per exec queue. engine_class=0x%x, logical_mask=0x%x, guc_id=%d",
+ __get_str(dev), __entry->max_cnt,
+ __entry->class, __entry->logical_mask, __entry->guc_id)
+);
+
#endif
/* This part must be outside protection */
--
2.49.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev3)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (9 preceding siblings ...)
2025-10-27 20:21 ` [PATCH v3] " Shuicheng Lin
@ 2025-10-27 21:14 ` Patchwork
2025-10-27 21:52 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-28 4:39 ` ✓ Xe.CI.Full: " Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-27 21:14 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev3)
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:13:17] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:13:21] 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
[21:13:52] Starting KUnit Kernel (1/1)...
[21:13:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:13:52] ================== guc_buf (11 subtests) ===================
[21:13:52] [PASSED] test_smallest
[21:13:52] [PASSED] test_largest
[21:13:52] [PASSED] test_granular
[21:13:52] [PASSED] test_unique
[21:13:52] [PASSED] test_overlap
[21:13:52] [PASSED] test_reusable
[21:13:52] [PASSED] test_too_big
[21:13:52] [PASSED] test_flush
[21:13:52] [PASSED] test_lookup
[21:13:52] [PASSED] test_data
[21:13:52] [PASSED] test_class
[21:13:52] ===================== [PASSED] guc_buf =====================
[21:13:52] =================== guc_dbm (7 subtests) ===================
[21:13:52] [PASSED] test_empty
[21:13:52] [PASSED] test_default
[21:13:52] ======================== test_size ========================
[21:13:52] [PASSED] 4
[21:13:52] [PASSED] 8
[21:13:52] [PASSED] 32
[21:13:52] [PASSED] 256
[21:13:52] ==================== [PASSED] test_size ====================
[21:13:52] ======================= test_reuse ========================
[21:13:52] [PASSED] 4
[21:13:52] [PASSED] 8
[21:13:52] [PASSED] 32
[21:13:52] [PASSED] 256
[21:13:52] =================== [PASSED] test_reuse ====================
[21:13:52] =================== test_range_overlap ====================
[21:13:52] [PASSED] 4
[21:13:52] [PASSED] 8
[21:13:52] [PASSED] 32
[21:13:52] [PASSED] 256
[21:13:52] =============== [PASSED] test_range_overlap ================
[21:13:52] =================== test_range_compact ====================
[21:13:52] [PASSED] 4
[21:13:52] [PASSED] 8
[21:13:52] [PASSED] 32
[21:13:52] [PASSED] 256
[21:13:52] =============== [PASSED] test_range_compact ================
[21:13:52] ==================== test_range_spare =====================
[21:13:52] [PASSED] 4
[21:13:52] [PASSED] 8
[21:13:52] [PASSED] 32
[21:13:52] [PASSED] 256
[21:13:52] ================ [PASSED] test_range_spare =================
[21:13:52] ===================== [PASSED] guc_dbm =====================
[21:13:52] =================== guc_idm (6 subtests) ===================
[21:13:52] [PASSED] bad_init
[21:13:52] [PASSED] no_init
[21:13:52] [PASSED] init_fini
[21:13:52] [PASSED] check_used
[21:13:52] [PASSED] check_quota
[21:13:52] [PASSED] check_all
[21:13:52] ===================== [PASSED] guc_idm =====================
[21:13:52] ================== no_relay (3 subtests) ===================
[21:13:52] [PASSED] xe_drops_guc2pf_if_not_ready
[21:13:52] [PASSED] xe_drops_guc2vf_if_not_ready
[21:13:52] [PASSED] xe_rejects_send_if_not_ready
[21:13:52] ==================== [PASSED] no_relay =====================
[21:13:52] ================== pf_relay (14 subtests) ==================
[21:13:52] [PASSED] pf_rejects_guc2pf_too_short
[21:13:52] [PASSED] pf_rejects_guc2pf_too_long
[21:13:52] [PASSED] pf_rejects_guc2pf_no_payload
[21:13:52] [PASSED] pf_fails_no_payload
[21:13:52] [PASSED] pf_fails_bad_origin
[21:13:52] [PASSED] pf_fails_bad_type
[21:13:52] [PASSED] pf_txn_reports_error
[21:13:52] [PASSED] pf_txn_sends_pf2guc
[21:13:52] [PASSED] pf_sends_pf2guc
[21:13:52] [SKIPPED] pf_loopback_nop
[21:13:52] [SKIPPED] pf_loopback_echo
[21:13:52] [SKIPPED] pf_loopback_fail
[21:13:52] [SKIPPED] pf_loopback_busy
[21:13:52] [SKIPPED] pf_loopback_retry
[21:13:52] ==================== [PASSED] pf_relay =====================
[21:13:52] ================== vf_relay (3 subtests) ===================
[21:13:52] [PASSED] vf_rejects_guc2vf_too_short
[21:13:52] [PASSED] vf_rejects_guc2vf_too_long
[21:13:52] [PASSED] vf_rejects_guc2vf_no_payload
[21:13:52] ==================== [PASSED] vf_relay =====================
[21:13:52] ===================== lmtt (1 subtest) =====================
[21:13:52] ======================== test_ops =========================
[21:13:52] [PASSED] 2-level
[21:13:52] [PASSED] multi-level
[21:13:52] ==================== [PASSED] test_ops =====================
[21:13:52] ====================== [PASSED] lmtt =======================
[21:13:52] ================= pf_service (11 subtests) =================
[21:13:52] [PASSED] pf_negotiate_any
[21:13:52] [PASSED] pf_negotiate_base_match
[21:13:52] [PASSED] pf_negotiate_base_newer
[21:13:52] [PASSED] pf_negotiate_base_next
[21:13:52] [SKIPPED] pf_negotiate_base_older
[21:13:52] [PASSED] pf_negotiate_base_prev
[21:13:52] [PASSED] pf_negotiate_latest_match
[21:13:52] [PASSED] pf_negotiate_latest_newer
[21:13:52] [PASSED] pf_negotiate_latest_next
[21:13:52] [SKIPPED] pf_negotiate_latest_older
[21:13:52] [SKIPPED] pf_negotiate_latest_prev
[21:13:52] =================== [PASSED] pf_service ====================
[21:13:52] ================= xe_guc_g2g (2 subtests) ==================
[21:13:52] ============== xe_live_guc_g2g_kunit_default ==============
[21:13:52] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[21:13:52] ============== xe_live_guc_g2g_kunit_allmem ===============
[21:13:52] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[21:13:52] =================== [SKIPPED] xe_guc_g2g ===================
[21:13:52] =================== xe_mocs (2 subtests) ===================
[21:13:52] ================ xe_live_mocs_kernel_kunit ================
[21:13:52] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:13:52] ================ xe_live_mocs_reset_kunit =================
[21:13:52] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:13:52] ==================== [SKIPPED] xe_mocs =====================
[21:13:52] ================= xe_migrate (2 subtests) ==================
[21:13:52] ================= xe_migrate_sanity_kunit =================
[21:13:52] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:13:52] ================== xe_validate_ccs_kunit ==================
[21:13:52] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:13:52] =================== [SKIPPED] xe_migrate ===================
[21:13:52] ================== xe_dma_buf (1 subtest) ==================
[21:13:52] ==================== xe_dma_buf_kunit =====================
[21:13:52] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:13:52] =================== [SKIPPED] xe_dma_buf ===================
[21:13:52] ================= xe_bo_shrink (1 subtest) =================
[21:13:52] =================== xe_bo_shrink_kunit ====================
[21:13:52] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:13:52] ================== [SKIPPED] xe_bo_shrink ==================
[21:13:52] ==================== xe_bo (2 subtests) ====================
[21:13:52] ================== xe_ccs_migrate_kunit ===================
[21:13:52] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:13:52] ==================== xe_bo_evict_kunit ====================
[21:13:52] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:13:52] ===================== [SKIPPED] xe_bo ======================
[21:13:52] ==================== args (11 subtests) ====================
[21:13:52] [PASSED] count_args_test
[21:13:52] [PASSED] call_args_example
[21:13:52] [PASSED] call_args_test
[21:13:52] [PASSED] drop_first_arg_example
[21:13:52] [PASSED] drop_first_arg_test
[21:13:52] [PASSED] first_arg_example
[21:13:52] [PASSED] first_arg_test
[21:13:52] [PASSED] last_arg_example
[21:13:52] [PASSED] last_arg_test
[21:13:52] [PASSED] pick_arg_example
[21:13:52] [PASSED] sep_comma_example
[21:13:52] ====================== [PASSED] args =======================
[21:13:52] =================== xe_pci (3 subtests) ====================
[21:13:52] ==================== check_graphics_ip ====================
[21:13:52] [PASSED] 12.00 Xe_LP
[21:13:52] [PASSED] 12.10 Xe_LP+
[21:13:52] [PASSED] 12.55 Xe_HPG
[21:13:52] [PASSED] 12.60 Xe_HPC
[21:13:52] [PASSED] 12.70 Xe_LPG
[21:13:52] [PASSED] 12.71 Xe_LPG
[21:13:52] [PASSED] 12.74 Xe_LPG+
[21:13:52] [PASSED] 20.01 Xe2_HPG
[21:13:52] [PASSED] 20.02 Xe2_HPG
[21:13:52] [PASSED] 20.04 Xe2_LPG
[21:13:52] [PASSED] 30.00 Xe3_LPG
[21:13:52] [PASSED] 30.01 Xe3_LPG
[21:13:52] [PASSED] 30.03 Xe3_LPG
[21:13:52] [PASSED] 30.04 Xe3_LPG
[21:13:52] [PASSED] 30.05 Xe3_LPG
[21:13:52] [PASSED] 35.11 Xe3p_XPC
[21:13:52] ================ [PASSED] check_graphics_ip ================
[21:13:52] ===================== check_media_ip ======================
[21:13:52] [PASSED] 12.00 Xe_M
[21:13:52] [PASSED] 12.55 Xe_HPM
[21:13:52] [PASSED] 13.00 Xe_LPM+
[21:13:52] [PASSED] 13.01 Xe2_HPM
[21:13:52] [PASSED] 20.00 Xe2_LPM
[21:13:52] [PASSED] 30.00 Xe3_LPM
[21:13:52] [PASSED] 30.02 Xe3_LPM
[21:13:52] [PASSED] 35.00 Xe3p_LPM
[21:13:52] [PASSED] 35.03 Xe3p_HPM
[21:13:52] ================= [PASSED] check_media_ip ==================
[21:13:52] =================== check_platform_desc ===================
[21:13:52] [PASSED] 0x9A60 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A68 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A70 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A40 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A49 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A59 (TIGERLAKE)
[21:13:52] [PASSED] 0x9A78 (TIGERLAKE)
[21:13:52] [PASSED] 0x9AC0 (TIGERLAKE)
[21:13:52] [PASSED] 0x9AC9 (TIGERLAKE)
[21:13:52] [PASSED] 0x9AD9 (TIGERLAKE)
[21:13:52] [PASSED] 0x9AF8 (TIGERLAKE)
[21:13:52] [PASSED] 0x4C80 (ROCKETLAKE)
[21:13:52] [PASSED] 0x4C8A (ROCKETLAKE)
[21:13:52] [PASSED] 0x4C8B (ROCKETLAKE)
[21:13:52] [PASSED] 0x4C8C (ROCKETLAKE)
[21:13:52] [PASSED] 0x4C90 (ROCKETLAKE)
[21:13:52] [PASSED] 0x4C9A (ROCKETLAKE)
[21:13:52] [PASSED] 0x4680 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4682 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4688 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x468A (ALDERLAKE_S)
[21:13:52] [PASSED] 0x468B (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4690 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4692 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4693 (ALDERLAKE_S)
[21:13:52] [PASSED] 0x46A0 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46A1 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46A2 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46A3 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46A6 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46A8 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46AA (ALDERLAKE_P)
[21:13:52] [PASSED] 0x462A (ALDERLAKE_P)
[21:13:52] [PASSED] 0x4626 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x4628 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46B0 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46B1 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46B2 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46B3 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46C0 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46C1 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46C2 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46C3 (ALDERLAKE_P)
[21:13:52] [PASSED] 0x46D0 (ALDERLAKE_N)
[21:13:52] [PASSED] 0x46D1 (ALDERLAKE_N)
[21:13:52] [PASSED] 0x46D2 (ALDERLAKE_N)
[21:13:52] [PASSED] 0x46D3 (ALDERLAKE_N)
[21:13:52] [PASSED] 0x46D4 (ALDERLAKE_N)
[21:13:52] [PASSED] 0xA721 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7A1 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7A9 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7AC (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7AD (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA720 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7A0 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7A8 (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7AA (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA7AB (ALDERLAKE_P)
[21:13:52] [PASSED] 0xA780 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA781 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA782 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA783 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA788 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA789 (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA78A (ALDERLAKE_S)
[21:13:52] [PASSED] 0xA78B (ALDERLAKE_S)
[21:13:52] [PASSED] 0x4905 (DG1)
[21:13:52] [PASSED] 0x4906 (DG1)
[21:13:52] [PASSED] 0x4907 (DG1)
[21:13:52] [PASSED] 0x4908 (DG1)
[21:13:52] [PASSED] 0x4909 (DG1)
[21:13:52] [PASSED] 0x56C0 (DG2)
[21:13:52] [PASSED] 0x56C2 (DG2)
[21:13:52] [PASSED] 0x56C1 (DG2)
[21:13:52] [PASSED] 0x7D51 (METEORLAKE)
[21:13:52] [PASSED] 0x7DD1 (METEORLAKE)
[21:13:52] [PASSED] 0x7D41 (METEORLAKE)
[21:13:52] [PASSED] 0x7D67 (METEORLAKE)
[21:13:52] [PASSED] 0xB640 (METEORLAKE)
[21:13:52] [PASSED] 0x56A0 (DG2)
[21:13:52] [PASSED] 0x56A1 (DG2)
[21:13:52] [PASSED] 0x56A2 (DG2)
[21:13:52] [PASSED] 0x56BE (DG2)
[21:13:52] [PASSED] 0x56BF (DG2)
[21:13:52] [PASSED] 0x5690 (DG2)
[21:13:52] [PASSED] 0x5691 (DG2)
[21:13:52] [PASSED] 0x5692 (DG2)
[21:13:52] [PASSED] 0x56A5 (DG2)
[21:13:52] [PASSED] 0x56A6 (DG2)
[21:13:52] [PASSED] 0x56B0 (DG2)
[21:13:52] [PASSED] 0x56B1 (DG2)
[21:13:52] [PASSED] 0x56BA (DG2)
[21:13:52] [PASSED] 0x56BB (DG2)
[21:13:52] [PASSED] 0x56BC (DG2)
[21:13:52] [PASSED] 0x56BD (DG2)
[21:13:52] [PASSED] 0x5693 (DG2)
[21:13:52] [PASSED] 0x5694 (DG2)
[21:13:52] [PASSED] 0x5695 (DG2)
[21:13:52] [PASSED] 0x56A3 (DG2)
[21:13:52] [PASSED] 0x56A4 (DG2)
[21:13:52] [PASSED] 0x56B2 (DG2)
[21:13:52] [PASSED] 0x56B3 (DG2)
[21:13:52] [PASSED] 0x5696 (DG2)
[21:13:52] [PASSED] 0x5697 (DG2)
[21:13:52] [PASSED] 0xB69 (PVC)
[21:13:52] [PASSED] 0xB6E (PVC)
[21:13:52] [PASSED] 0xBD4 (PVC)
[21:13:52] [PASSED] 0xBD5 (PVC)
[21:13:52] [PASSED] 0xBD6 (PVC)
[21:13:52] [PASSED] 0xBD7 (PVC)
[21:13:52] [PASSED] 0xBD8 (PVC)
[21:13:52] [PASSED] 0xBD9 (PVC)
[21:13:52] [PASSED] 0xBDA (PVC)
[21:13:52] [PASSED] 0xBDB (PVC)
[21:13:52] [PASSED] 0xBE0 (PVC)
[21:13:52] [PASSED] 0xBE1 (PVC)
[21:13:52] [PASSED] 0xBE5 (PVC)
[21:13:52] [PASSED] 0x7D40 (METEORLAKE)
[21:13:52] [PASSED] 0x7D45 (METEORLAKE)
[21:13:52] [PASSED] 0x7D55 (METEORLAKE)
[21:13:52] [PASSED] 0x7D60 (METEORLAKE)
[21:13:52] [PASSED] 0x7DD5 (METEORLAKE)
[21:13:52] [PASSED] 0x6420 (LUNARLAKE)
[21:13:52] [PASSED] 0x64A0 (LUNARLAKE)
[21:13:52] [PASSED] 0x64B0 (LUNARLAKE)
[21:13:52] [PASSED] 0xE202 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE209 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE20B (BATTLEMAGE)
[21:13:52] [PASSED] 0xE20C (BATTLEMAGE)
[21:13:52] [PASSED] 0xE20D (BATTLEMAGE)
[21:13:52] [PASSED] 0xE210 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE211 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE212 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE216 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE220 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE221 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE222 (BATTLEMAGE)
[21:13:52] [PASSED] 0xE223 (BATTLEMAGE)
[21:13:52] [PASSED] 0xB080 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB081 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB082 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB083 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB084 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB085 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB086 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB087 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB08F (PANTHERLAKE)
[21:13:52] [PASSED] 0xB090 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB0A0 (PANTHERLAKE)
[21:13:52] [PASSED] 0xB0B0 (PANTHERLAKE)
[21:13:52] [PASSED] 0xFD80 (PANTHERLAKE)
[21:13:52] [PASSED] 0xFD81 (PANTHERLAKE)
[21:13:52] [PASSED] 0xD740 (NOVALAKE_S)
[21:13:52] [PASSED] 0xD741 (NOVALAKE_S)
[21:13:52] [PASSED] 0xD742 (NOVALAKE_S)
[21:13:52] [PASSED] 0xD743 (NOVALAKE_S)
[21:13:52] [PASSED] 0xD744 (NOVALAKE_S)
[21:13:52] [PASSED] 0xD745 (NOVALAKE_S)
[21:13:52] [PASSED] 0x674C (CRESCENTISLAND)
[21:13:52] =============== [PASSED] check_platform_desc ===============
[21:13:52] ===================== [PASSED] xe_pci ======================
[21:13:52] =================== xe_rtp (2 subtests) ====================
[21:13:52] =============== xe_rtp_process_to_sr_tests ================
[21:13:52] [PASSED] coalesce-same-reg
[21:13:52] [PASSED] no-match-no-add
[21:13:52] [PASSED] match-or
[21:13:52] [PASSED] match-or-xfail
[21:13:52] [PASSED] no-match-no-add-multiple-rules
[21:13:52] [PASSED] two-regs-two-entries
[21:13:52] [PASSED] clr-one-set-other
[21:13:52] [PASSED] set-field
[21:13:52] [PASSED] conflict-duplicate
[21:13:52] [PASSED] conflict-not-disjoint
[21:13:52] [PASSED] conflict-reg-type
[21:13:52] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:13:52] ================== xe_rtp_process_tests ===================
[21:13:52] [PASSED] active1
[21:13:52] [PASSED] active2
[21:13:52] [PASSED] active-inactive
[21:13:52] [PASSED] inactive-active
[21:13:52] [PASSED] inactive-1st_or_active-inactive
[21:13:52] [PASSED] inactive-2nd_or_active-inactive
[21:13:52] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[21:13:52] [PASSED] inactive-no_or_active-inactive
[21:13:52] ============== [PASSED] xe_rtp_process_tests ===============
[21:13:52] ===================== [PASSED] xe_rtp ======================
[21:13:52] ==================== xe_wa (1 subtest) =====================
[21:13:52] ======================== xe_wa_gt =========================
[21:13:52] [PASSED] TIGERLAKE B0
[21:13:52] [PASSED] DG1 A0
[21:13:52] [PASSED] DG1 B0
[21:13:52] [PASSED] ALDERLAKE_S A0
[21:13:52] [PASSED] ALDERLAKE_S B0
[21:13:52] [PASSED] ALDERLAKE_S C0
[21:13:52] [PASSED] ALDERLAKE_S D0
[21:13:52] [PASSED] ALDERLAKE_P A0
[21:13:52] [PASSED] ALDERLAKE_P B0
[21:13:52] [PASSED] ALDERLAKE_P C0
[21:13:52] [PASSED] ALDERLAKE_S RPLS D0
[21:13:52] [PASSED] ALDERLAKE_P RPLU E0
[21:13:52] [PASSED] DG2 G10 C0
[21:13:52] [PASSED] DG2 G11 B1
[21:13:52] [PASSED] DG2 G12 A1
[21:13:52] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:13:52] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[21:13:52] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[21:13:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[21:13:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[21:13:52] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[21:13:52] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[21:13:52] ==================== [PASSED] xe_wa_gt =====================
[21:13:52] ====================== [PASSED] xe_wa ======================
[21:13:52] ============================================================
[21:13:52] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[21:13:52] Elapsed time: 35.487s total, 4.240s configuring, 30.881s building, 0.339s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:13:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:13:54] 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
[21:14:19] Starting KUnit Kernel (1/1)...
[21:14:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:14:19] ============ drm_test_pick_cmdline (2 subtests) ============
[21:14:19] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:14:19] =============== drm_test_pick_cmdline_named ===============
[21:14:19] [PASSED] NTSC
[21:14:19] [PASSED] NTSC-J
[21:14:19] [PASSED] PAL
[21:14:19] [PASSED] PAL-M
[21:14:19] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:14:19] ============== [PASSED] drm_test_pick_cmdline ==============
[21:14:19] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:14:19] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:14:19] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:14:19] =========== drm_validate_clone_mode (2 subtests) ===========
[21:14:19] ============== drm_test_check_in_clone_mode ===============
[21:14:19] [PASSED] in_clone_mode
[21:14:19] [PASSED] not_in_clone_mode
[21:14:19] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:14:19] =============== drm_test_check_valid_clones ===============
[21:14:19] [PASSED] not_in_clone_mode
[21:14:19] [PASSED] valid_clone
[21:14:19] [PASSED] invalid_clone
[21:14:19] =========== [PASSED] drm_test_check_valid_clones ===========
[21:14:19] ============= [PASSED] drm_validate_clone_mode =============
[21:14:19] ============= drm_validate_modeset (1 subtest) =============
[21:14:19] [PASSED] drm_test_check_connector_changed_modeset
[21:14:19] ============== [PASSED] drm_validate_modeset ===============
[21:14:19] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:14:19] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:14:19] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:14:19] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:14:19] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:14:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:14:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:14:19] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:14:19] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:14:19] ============== drm_bridge_alloc (2 subtests) ===============
[21:14:19] [PASSED] drm_test_drm_bridge_alloc_basic
[21:14:19] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:14:19] ================ [PASSED] drm_bridge_alloc =================
[21:14:19] ================== drm_buddy (8 subtests) ==================
[21:14:19] [PASSED] drm_test_buddy_alloc_limit
[21:14:19] [PASSED] drm_test_buddy_alloc_optimistic
[21:14:19] [PASSED] drm_test_buddy_alloc_pessimistic
[21:14:19] [PASSED] drm_test_buddy_alloc_pathological
[21:14:19] [PASSED] drm_test_buddy_alloc_contiguous
[21:14:19] [PASSED] drm_test_buddy_alloc_clear
[21:14:19] [PASSED] drm_test_buddy_alloc_range_bias
[21:14:20] [PASSED] drm_test_buddy_fragmentation_performance
[21:14:20] ==================== [PASSED] drm_buddy ====================
[21:14:20] ============= drm_cmdline_parser (40 subtests) =============
[21:14:20] [PASSED] drm_test_cmdline_force_d_only
[21:14:20] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:14:20] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:14:20] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:14:20] [PASSED] drm_test_cmdline_force_e_only
[21:14:20] [PASSED] drm_test_cmdline_res
[21:14:20] [PASSED] drm_test_cmdline_res_vesa
[21:14:20] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:14:20] [PASSED] drm_test_cmdline_res_rblank
[21:14:20] [PASSED] drm_test_cmdline_res_bpp
[21:14:20] [PASSED] drm_test_cmdline_res_refresh
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:14:20] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:14:20] [PASSED] drm_test_cmdline_res_margins_force_on
[21:14:20] [PASSED] drm_test_cmdline_res_vesa_margins
[21:14:20] [PASSED] drm_test_cmdline_name
[21:14:20] [PASSED] drm_test_cmdline_name_bpp
[21:14:20] [PASSED] drm_test_cmdline_name_option
[21:14:20] [PASSED] drm_test_cmdline_name_bpp_option
[21:14:20] [PASSED] drm_test_cmdline_rotate_0
[21:14:20] [PASSED] drm_test_cmdline_rotate_90
[21:14:20] [PASSED] drm_test_cmdline_rotate_180
[21:14:20] [PASSED] drm_test_cmdline_rotate_270
[21:14:20] [PASSED] drm_test_cmdline_hmirror
[21:14:20] [PASSED] drm_test_cmdline_vmirror
[21:14:20] [PASSED] drm_test_cmdline_margin_options
[21:14:20] [PASSED] drm_test_cmdline_multiple_options
[21:14:20] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:14:20] [PASSED] drm_test_cmdline_extra_and_option
[21:14:20] [PASSED] drm_test_cmdline_freestanding_options
[21:14:20] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:14:20] [PASSED] drm_test_cmdline_panel_orientation
[21:14:20] ================ drm_test_cmdline_invalid =================
[21:14:20] [PASSED] margin_only
[21:14:20] [PASSED] interlace_only
[21:14:20] [PASSED] res_missing_x
[21:14:20] [PASSED] res_missing_y
[21:14:20] [PASSED] res_bad_y
[21:14:20] [PASSED] res_missing_y_bpp
[21:14:20] [PASSED] res_bad_bpp
[21:14:20] [PASSED] res_bad_refresh
[21:14:20] [PASSED] res_bpp_refresh_force_on_off
[21:14:20] [PASSED] res_invalid_mode
[21:14:20] [PASSED] res_bpp_wrong_place_mode
[21:14:20] [PASSED] name_bpp_refresh
[21:14:20] [PASSED] name_refresh
[21:14:20] [PASSED] name_refresh_wrong_mode
[21:14:20] [PASSED] name_refresh_invalid_mode
[21:14:20] [PASSED] rotate_multiple
[21:14:20] [PASSED] rotate_invalid_val
[21:14:20] [PASSED] rotate_truncated
[21:14:20] [PASSED] invalid_option
[21:14:20] [PASSED] invalid_tv_option
[21:14:20] [PASSED] truncated_tv_option
[21:14:20] ============ [PASSED] drm_test_cmdline_invalid =============
[21:14:20] =============== drm_test_cmdline_tv_options ===============
[21:14:20] [PASSED] NTSC
[21:14:20] [PASSED] NTSC_443
[21:14:20] [PASSED] NTSC_J
[21:14:20] [PASSED] PAL
[21:14:20] [PASSED] PAL_M
[21:14:20] [PASSED] PAL_N
[21:14:20] [PASSED] SECAM
[21:14:20] [PASSED] MONO_525
[21:14:20] [PASSED] MONO_625
[21:14:20] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:14:20] =============== [PASSED] drm_cmdline_parser ================
[21:14:20] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:14:20] [PASSED] drm_test_connector_hdmi_init_valid
[21:14:20] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:14:20] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:14:20] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:14:20] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:14:20] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:14:20] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:14:20] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:14:20] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:14:20] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:14:20] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:14:20] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:14:20] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:14:20] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:14:20] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:14:20] [PASSED] drm_test_connector_hdmi_init_null_product
[21:14:20] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:14:20] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:14:20] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:14:20] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:14:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:14:20] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:14:20] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:14:20] ========= drm_test_connector_hdmi_init_type_valid =========
[21:14:20] [PASSED] HDMI-A
[21:14:20] [PASSED] HDMI-B
[21:14:20] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:14:20] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:14:20] [PASSED] Unknown
[21:14:20] [PASSED] VGA
[21:14:20] [PASSED] DVI-I
[21:14:20] [PASSED] DVI-D
[21:14:20] [PASSED] DVI-A
[21:14:20] [PASSED] Composite
[21:14:20] [PASSED] SVIDEO
[21:14:20] [PASSED] LVDS
[21:14:20] [PASSED] Component
[21:14:20] [PASSED] DIN
[21:14:20] [PASSED] DP
[21:14:20] [PASSED] TV
[21:14:20] [PASSED] eDP
[21:14:20] [PASSED] Virtual
[21:14:20] [PASSED] DSI
[21:14:20] [PASSED] DPI
[21:14:20] [PASSED] Writeback
[21:14:20] [PASSED] SPI
[21:14:20] [PASSED] USB
[21:14:20] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:14:20] ============ [PASSED] drmm_connector_hdmi_init =============
[21:14:20] ============= drmm_connector_init (3 subtests) =============
[21:14:20] [PASSED] drm_test_drmm_connector_init
[21:14:20] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:14:20] ========= drm_test_drmm_connector_init_type_valid =========
[21:14:20] [PASSED] Unknown
[21:14:20] [PASSED] VGA
[21:14:20] [PASSED] DVI-I
[21:14:20] [PASSED] DVI-D
[21:14:20] [PASSED] DVI-A
[21:14:20] [PASSED] Composite
[21:14:20] [PASSED] SVIDEO
[21:14:20] [PASSED] LVDS
[21:14:20] [PASSED] Component
[21:14:20] [PASSED] DIN
[21:14:20] [PASSED] DP
[21:14:20] [PASSED] HDMI-A
[21:14:20] [PASSED] HDMI-B
[21:14:20] [PASSED] TV
[21:14:20] [PASSED] eDP
[21:14:20] [PASSED] Virtual
[21:14:20] [PASSED] DSI
[21:14:20] [PASSED] DPI
[21:14:20] [PASSED] Writeback
[21:14:20] [PASSED] SPI
[21:14:20] [PASSED] USB
[21:14:20] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:14:20] =============== [PASSED] drmm_connector_init ===============
[21:14:20] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_init
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:14:20] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:14:20] [PASSED] Unknown
[21:14:20] [PASSED] VGA
[21:14:20] [PASSED] DVI-I
[21:14:20] [PASSED] DVI-D
[21:14:20] [PASSED] DVI-A
[21:14:20] [PASSED] Composite
[21:14:20] [PASSED] SVIDEO
[21:14:20] [PASSED] LVDS
[21:14:20] [PASSED] Component
[21:14:20] [PASSED] DIN
[21:14:20] [PASSED] DP
[21:14:20] [PASSED] HDMI-A
[21:14:20] [PASSED] HDMI-B
[21:14:20] [PASSED] TV
[21:14:20] [PASSED] eDP
[21:14:20] [PASSED] Virtual
[21:14:20] [PASSED] DSI
[21:14:20] [PASSED] DPI
[21:14:20] [PASSED] Writeback
[21:14:20] [PASSED] SPI
[21:14:20] [PASSED] USB
[21:14:20] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:14:20] ======== drm_test_drm_connector_dynamic_init_name =========
[21:14:20] [PASSED] Unknown
[21:14:20] [PASSED] VGA
[21:14:20] [PASSED] DVI-I
[21:14:20] [PASSED] DVI-D
[21:14:20] [PASSED] DVI-A
[21:14:20] [PASSED] Composite
[21:14:20] [PASSED] SVIDEO
[21:14:20] [PASSED] LVDS
[21:14:20] [PASSED] Component
[21:14:20] [PASSED] DIN
[21:14:20] [PASSED] DP
[21:14:20] [PASSED] HDMI-A
[21:14:20] [PASSED] HDMI-B
[21:14:20] [PASSED] TV
[21:14:20] [PASSED] eDP
[21:14:20] [PASSED] Virtual
[21:14:20] [PASSED] DSI
[21:14:20] [PASSED] DPI
[21:14:20] [PASSED] Writeback
[21:14:20] [PASSED] SPI
[21:14:20] [PASSED] USB
[21:14:20] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:14:20] =========== [PASSED] drm_connector_dynamic_init ============
[21:14:20] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:14:20] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:14:20] ======= drm_connector_dynamic_register (7 subtests) ========
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:14:20] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:14:20] ========= [PASSED] drm_connector_dynamic_register ==========
[21:14:20] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:14:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:14:20] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:14:20] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:14:20] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:14:20] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:14:20] [PASSED] NTSC
[21:14:20] [PASSED] NTSC-443
[21:14:20] [PASSED] NTSC-J
[21:14:20] [PASSED] PAL
[21:14:20] [PASSED] PAL-M
[21:14:20] [PASSED] PAL-N
[21:14:20] [PASSED] SECAM
[21:14:20] [PASSED] Mono
[21:14:20] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:14:20] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:14:20] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:14:20] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:14:20] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:14:20] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:14:20] [PASSED] VIC 96
[21:14:20] [PASSED] VIC 97
[21:14:20] [PASSED] VIC 101
[21:14:20] [PASSED] VIC 102
[21:14:20] [PASSED] VIC 106
[21:14:20] [PASSED] VIC 107
[21:14:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:14:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:14:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:14:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:14:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:14:20] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:14:20] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:14:20] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:14:20] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:14:20] [PASSED] Automatic
[21:14:20] [PASSED] Full
[21:14:20] [PASSED] Limited 16:235
[21:14:20] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:14:20] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:14:20] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:14:20] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:14:20] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:14:20] [PASSED] RGB
[21:14:20] [PASSED] YUV 4:2:0
[21:14:20] [PASSED] YUV 4:2:2
[21:14:20] [PASSED] YUV 4:4:4
[21:14:20] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:14:20] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:14:20] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:14:20] ============= drm_damage_helper (21 subtests) ==============
[21:14:20] [PASSED] drm_test_damage_iter_no_damage
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:14:20] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:14:20] [PASSED] drm_test_damage_iter_simple_damage
[21:14:20] [PASSED] drm_test_damage_iter_single_damage
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:14:20] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:14:20] [PASSED] drm_test_damage_iter_damage
[21:14:20] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:14:20] [PASSED] drm_test_damage_iter_damage_one_outside
[21:14:20] [PASSED] drm_test_damage_iter_damage_src_moved
[21:14:20] [PASSED] drm_test_damage_iter_damage_not_visible
[21:14:20] ================ [PASSED] drm_damage_helper ================
[21:14:20] ============== drm_dp_mst_helper (3 subtests) ==============
[21:14:20] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:14:20] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:14:20] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:14:20] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:14:20] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:14:20] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:14:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:14:20] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:14:20] [PASSED] Link rate 2000000 lane count 4
[21:14:20] [PASSED] Link rate 2000000 lane count 2
[21:14:20] [PASSED] Link rate 2000000 lane count 1
[21:14:20] [PASSED] Link rate 1350000 lane count 4
[21:14:20] [PASSED] Link rate 1350000 lane count 2
[21:14:20] [PASSED] Link rate 1350000 lane count 1
[21:14:20] [PASSED] Link rate 1000000 lane count 4
[21:14:20] [PASSED] Link rate 1000000 lane count 2
[21:14:20] [PASSED] Link rate 1000000 lane count 1
[21:14:20] [PASSED] Link rate 810000 lane count 4
[21:14:20] [PASSED] Link rate 810000 lane count 2
[21:14:20] [PASSED] Link rate 810000 lane count 1
[21:14:20] [PASSED] Link rate 540000 lane count 4
[21:14:20] [PASSED] Link rate 540000 lane count 2
[21:14:20] [PASSED] Link rate 540000 lane count 1
[21:14:20] [PASSED] Link rate 270000 lane count 4
[21:14:20] [PASSED] Link rate 270000 lane count 2
[21:14:20] [PASSED] Link rate 270000 lane count 1
[21:14:20] [PASSED] Link rate 162000 lane count 4
[21:14:20] [PASSED] Link rate 162000 lane count 2
[21:14:20] [PASSED] Link rate 162000 lane count 1
[21:14:20] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:14:20] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:14:20] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:14:20] [PASSED] DP_POWER_UP_PHY with port number
[21:14:20] [PASSED] DP_POWER_DOWN_PHY with port number
[21:14:20] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:14:20] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:14:20] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:14:20] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:14:20] [PASSED] DP_QUERY_PAYLOAD with port number
[21:14:20] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:14:20] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:14:20] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:14:20] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:14:20] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:14:20] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:14:20] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:14:20] [PASSED] DP_REMOTE_I2C_READ with port number
[21:14:20] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:14:20] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:14:20] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:14:20] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:14:20] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:14:20] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:14:20] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:14:20] ================ [PASSED] drm_dp_mst_helper ================
[21:14:20] ================== drm_exec (7 subtests) ===================
[21:14:20] [PASSED] sanitycheck
[21:14:20] [PASSED] test_lock
[21:14:20] [PASSED] test_lock_unlock
[21:14:20] [PASSED] test_duplicates
[21:14:20] [PASSED] test_prepare
[21:14:20] [PASSED] test_prepare_array
[21:14:20] [PASSED] test_multiple_loops
[21:14:20] ==================== [PASSED] drm_exec =====================
[21:14:20] =========== drm_format_helper_test (17 subtests) ===========
[21:14:20] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:14:20] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:14:20] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:14:20] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:14:20] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:14:20] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:14:20] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:14:20] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:14:20] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:14:20] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:14:20] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:14:20] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:14:20] ==================== drm_test_fb_swab =====================
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ================ [PASSED] drm_test_fb_swab =================
[21:14:20] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:14:20] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:14:20] [PASSED] single_pixel_source_buffer
[21:14:20] [PASSED] single_pixel_clip_rectangle
[21:14:20] [PASSED] well_known_colors
[21:14:20] [PASSED] destination_pitch
[21:14:20] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:14:20] ================= drm_test_fb_clip_offset =================
[21:14:20] [PASSED] pass through
[21:14:20] [PASSED] horizontal offset
[21:14:20] [PASSED] vertical offset
[21:14:20] [PASSED] horizontal and vertical offset
[21:14:20] [PASSED] horizontal offset (custom pitch)
[21:14:20] [PASSED] vertical offset (custom pitch)
[21:14:20] [PASSED] horizontal and vertical offset (custom pitch)
[21:14:20] ============= [PASSED] drm_test_fb_clip_offset =============
[21:14:20] =================== drm_test_fb_memcpy ====================
[21:14:20] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:14:20] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:14:20] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:14:20] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:14:20] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:14:20] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:14:20] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:14:20] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:14:20] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:14:20] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:14:20] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:14:20] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:14:20] =============== [PASSED] drm_test_fb_memcpy ================
[21:14:20] ============= [PASSED] drm_format_helper_test ==============
[21:14:20] ================= drm_format (18 subtests) =================
[21:14:20] [PASSED] drm_test_format_block_width_invalid
[21:14:20] [PASSED] drm_test_format_block_width_one_plane
[21:14:20] [PASSED] drm_test_format_block_width_two_plane
[21:14:20] [PASSED] drm_test_format_block_width_three_plane
[21:14:20] [PASSED] drm_test_format_block_width_tiled
[21:14:20] [PASSED] drm_test_format_block_height_invalid
[21:14:20] [PASSED] drm_test_format_block_height_one_plane
[21:14:20] [PASSED] drm_test_format_block_height_two_plane
[21:14:20] [PASSED] drm_test_format_block_height_three_plane
[21:14:20] [PASSED] drm_test_format_block_height_tiled
[21:14:20] [PASSED] drm_test_format_min_pitch_invalid
[21:14:20] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:14:20] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:14:20] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:14:20] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:14:20] [PASSED] drm_test_format_min_pitch_two_plane
[21:14:20] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:14:20] [PASSED] drm_test_format_min_pitch_tiled
[21:14:20] =================== [PASSED] drm_format ====================
[21:14:20] ============== drm_framebuffer (10 subtests) ===============
[21:14:20] ========== drm_test_framebuffer_check_src_coords ==========
[21:14:20] [PASSED] Success: source fits into fb
[21:14:20] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:14:20] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:14:20] [PASSED] Fail: overflowing fb with source width
[21:14:20] [PASSED] Fail: overflowing fb with source height
[21:14:20] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:14:20] [PASSED] drm_test_framebuffer_cleanup
[21:14:20] =============== drm_test_framebuffer_create ===============
[21:14:20] [PASSED] ABGR8888 normal sizes
[21:14:20] [PASSED] ABGR8888 max sizes
[21:14:20] [PASSED] ABGR8888 pitch greater than min required
[21:14:20] [PASSED] ABGR8888 pitch less than min required
[21:14:20] [PASSED] ABGR8888 Invalid width
[21:14:20] [PASSED] ABGR8888 Invalid buffer handle
[21:14:20] [PASSED] No pixel format
[21:14:20] [PASSED] ABGR8888 Width 0
[21:14:20] [PASSED] ABGR8888 Height 0
[21:14:20] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:14:20] [PASSED] ABGR8888 Large buffer offset
[21:14:20] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:14:20] [PASSED] ABGR8888 Invalid flag
[21:14:20] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:14:20] [PASSED] ABGR8888 Valid buffer modifier
[21:14:20] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:14:20] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] NV12 Normal sizes
[21:14:20] [PASSED] NV12 Max sizes
[21:14:20] [PASSED] NV12 Invalid pitch
[21:14:20] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:14:20] [PASSED] NV12 different modifier per-plane
[21:14:20] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:14:20] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] NV12 Modifier for inexistent plane
[21:14:20] [PASSED] NV12 Handle for inexistent plane
[21:14:20] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:14:20] [PASSED] YVU420 Normal sizes
[21:14:20] [PASSED] YVU420 Max sizes
[21:14:20] [PASSED] YVU420 Invalid pitch
[21:14:20] [PASSED] YVU420 Different pitches
[21:14:20] [PASSED] YVU420 Different buffer offsets/pitches
[21:14:20] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:14:20] [PASSED] YVU420 Valid modifier
[21:14:20] [PASSED] YVU420 Different modifiers per plane
[21:14:20] [PASSED] YVU420 Modifier for inexistent plane
[21:14:20] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:14:20] [PASSED] X0L2 Normal sizes
[21:14:20] [PASSED] X0L2 Max sizes
[21:14:20] [PASSED] X0L2 Invalid pitch
[21:14:20] [PASSED] X0L2 Pitch greater than minimum required
[21:14:20] [PASSED] X0L2 Handle for inexistent plane
[21:14:20] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:14:20] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:14:20] [PASSED] X0L2 Valid modifier
[21:14:20] [PASSED] X0L2 Modifier for inexistent plane
[21:14:20] =========== [PASSED] drm_test_framebuffer_create ===========
[21:14:20] [PASSED] drm_test_framebuffer_free
[21:14:20] [PASSED] drm_test_framebuffer_init
[21:14:20] [PASSED] drm_test_framebuffer_init_bad_format
[21:14:20] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:14:20] [PASSED] drm_test_framebuffer_lookup
[21:14:20] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:14:20] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:14:20] ================= [PASSED] drm_framebuffer =================
[21:14:20] ================ drm_gem_shmem (8 subtests) ================
[21:14:20] [PASSED] drm_gem_shmem_test_obj_create
[21:14:20] [PASSED] drm_gem_shmem_test_obj_create_private
[21:14:20] [PASSED] drm_gem_shmem_test_pin_pages
[21:14:20] [PASSED] drm_gem_shmem_test_vmap
[21:14:20] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:14:20] [PASSED] drm_gem_shmem_test_get_sg_table
[21:14:20] [PASSED] drm_gem_shmem_test_madvise
[21:14:20] [PASSED] drm_gem_shmem_test_purge
[21:14:20] ================== [PASSED] drm_gem_shmem ==================
[21:14:20] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:14:20] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:14:20] [PASSED] Automatic
[21:14:20] [PASSED] Full
[21:14:20] [PASSED] Limited 16:235
[21:14:20] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:14:20] [PASSED] drm_test_check_disable_connector
[21:14:20] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:14:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:14:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:14:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:14:20] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:14:20] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:14:20] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:14:20] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:14:20] [PASSED] drm_test_check_output_bpc_dvi
[21:14:20] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:14:20] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:14:20] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:14:20] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:14:20] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:14:20] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:14:20] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:14:20] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:14:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:14:20] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:14:20] [PASSED] drm_test_check_broadcast_rgb_value
[21:14:20] [PASSED] drm_test_check_bpc_8_value
[21:14:20] [PASSED] drm_test_check_bpc_10_value
[21:14:20] [PASSED] drm_test_check_bpc_12_value
[21:14:20] [PASSED] drm_test_check_format_value
[21:14:20] [PASSED] drm_test_check_tmds_char_value
[21:14:20] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:14:20] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:14:20] [PASSED] drm_test_check_mode_valid
[21:14:20] [PASSED] drm_test_check_mode_valid_reject
[21:14:20] [PASSED] drm_test_check_mode_valid_reject_rate
[21:14:20] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:14:20] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:14:20] ================= drm_managed (2 subtests) =================
[21:14:20] [PASSED] drm_test_managed_release_action
[21:14:20] [PASSED] drm_test_managed_run_action
[21:14:20] =================== [PASSED] drm_managed ===================
[21:14:20] =================== drm_mm (6 subtests) ====================
[21:14:20] [PASSED] drm_test_mm_init
[21:14:20] [PASSED] drm_test_mm_debug
[21:14:20] [PASSED] drm_test_mm_align32
[21:14:20] [PASSED] drm_test_mm_align64
[21:14:20] [PASSED] drm_test_mm_lowest
[21:14:20] [PASSED] drm_test_mm_highest
[21:14:20] ===================== [PASSED] drm_mm ======================
[21:14:20] ============= drm_modes_analog_tv (5 subtests) =============
[21:14:20] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:14:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:14:20] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:14:20] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:14:20] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:14:20] =============== [PASSED] drm_modes_analog_tv ===============
[21:14:20] ============== drm_plane_helper (2 subtests) ===============
[21:14:20] =============== drm_test_check_plane_state ================
[21:14:20] [PASSED] clipping_simple
[21:14:20] [PASSED] clipping_rotate_reflect
[21:14:20] [PASSED] positioning_simple
[21:14:20] [PASSED] upscaling
[21:14:20] [PASSED] downscaling
[21:14:20] [PASSED] rounding1
[21:14:20] [PASSED] rounding2
[21:14:20] [PASSED] rounding3
[21:14:20] [PASSED] rounding4
[21:14:20] =========== [PASSED] drm_test_check_plane_state ============
[21:14:20] =========== drm_test_check_invalid_plane_state ============
[21:14:20] [PASSED] positioning_invalid
[21:14:20] [PASSED] upscaling_invalid
[21:14:20] [PASSED] downscaling_invalid
[21:14:20] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:14:20] ================ [PASSED] drm_plane_helper =================
[21:14:20] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:14:20] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:14:20] [PASSED] None
[21:14:20] [PASSED] PAL
[21:14:20] [PASSED] NTSC
[21:14:20] [PASSED] Both, NTSC Default
[21:14:20] [PASSED] Both, PAL Default
[21:14:20] [PASSED] Both, NTSC Default, with PAL on command-line
[21:14:20] [PASSED] Both, PAL Default, with NTSC on command-line
[21:14:20] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:14:20] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:14:20] ================== drm_rect (9 subtests) ===================
[21:14:20] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:14:20] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:14:20] [PASSED] drm_test_rect_clip_scaled_clipped
[21:14:20] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:14:20] ================= drm_test_rect_intersect =================
[21:14:20] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:14:20] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:14:20] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:14:20] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:14:20] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:14:20] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:14:20] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:14:20] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:14:20] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:14:20] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:14:20] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:14:20] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:14:20] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:14:20] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:14:20] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:14:20] ============= [PASSED] drm_test_rect_intersect =============
[21:14:20] ================ drm_test_rect_calc_hscale ================
[21:14:20] [PASSED] normal use
[21:14:20] [PASSED] out of max range
[21:14:20] [PASSED] out of min range
[21:14:20] [PASSED] zero dst
[21:14:20] [PASSED] negative src
[21:14:20] [PASSED] negative dst
[21:14:20] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:14:20] ================ drm_test_rect_calc_vscale ================
[21:14:20] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[21:14:20] [PASSED] out of max range
[21:14:20] [PASSED] out of min range
[21:14:20] [PASSED] zero dst
[21:14:20] [PASSED] negative src
[21:14:20] [PASSED] negative dst
[21:14:20] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:14:20] ================== drm_test_rect_rotate ===================
[21:14:20] [PASSED] reflect-x
[21:14:20] [PASSED] reflect-y
[21:14:20] [PASSED] rotate-0
[21:14:20] [PASSED] rotate-90
[21:14:20] [PASSED] rotate-180
[21:14:20] [PASSED] rotate-270
[21:14:20] ============== [PASSED] drm_test_rect_rotate ===============
[21:14:20] ================ drm_test_rect_rotate_inv =================
[21:14:20] [PASSED] reflect-x
[21:14:20] [PASSED] reflect-y
[21:14:20] [PASSED] rotate-0
[21:14:20] [PASSED] rotate-90
[21:14:20] [PASSED] rotate-180
[21:14:20] [PASSED] rotate-270
[21:14:20] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:14:20] ==================== [PASSED] drm_rect =====================
[21:14:20] ============ drm_sysfb_modeset_test (1 subtest) ============
[21:14:20] ============ drm_test_sysfb_build_fourcc_list =============
[21:14:20] [PASSED] no native formats
[21:14:20] [PASSED] XRGB8888 as native format
[21:14:20] [PASSED] remove duplicates
[21:14:20] [PASSED] convert alpha formats
[21:14:20] [PASSED] random formats
[21:14:20] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[21:14:20] ============= [PASSED] drm_sysfb_modeset_test ==============
[21:14:20] ============================================================
[21:14:20] Testing complete. Ran 622 tests: passed: 622
[21:14:20] Elapsed time: 27.145s total, 1.626s configuring, 25.102s building, 0.414s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:14:20] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:14:21] 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
[21:14:31] Starting KUnit Kernel (1/1)...
[21:14:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:14:31] ================= ttm_device (5 subtests) ==================
[21:14:31] [PASSED] ttm_device_init_basic
[21:14:31] [PASSED] ttm_device_init_multiple
[21:14:31] [PASSED] ttm_device_fini_basic
[21:14:31] [PASSED] ttm_device_init_no_vma_man
[21:14:31] ================== ttm_device_init_pools ==================
[21:14:31] [PASSED] No DMA allocations, no DMA32 required
[21:14:31] [PASSED] DMA allocations, DMA32 required
[21:14:31] [PASSED] No DMA allocations, DMA32 required
[21:14:31] [PASSED] DMA allocations, no DMA32 required
[21:14:31] ============== [PASSED] ttm_device_init_pools ==============
[21:14:31] =================== [PASSED] ttm_device ====================
[21:14:31] ================== ttm_pool (8 subtests) ===================
[21:14:31] ================== ttm_pool_alloc_basic ===================
[21:14:31] [PASSED] One page
[21:14:31] [PASSED] More than one page
[21:14:31] [PASSED] Above the allocation limit
[21:14:31] [PASSED] One page, with coherent DMA mappings enabled
[21:14:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:14:31] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:14:31] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:14:31] [PASSED] One page
[21:14:31] [PASSED] More than one page
[21:14:31] [PASSED] Above the allocation limit
[21:14:31] [PASSED] One page, with coherent DMA mappings enabled
[21:14:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:14:31] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:14:31] [PASSED] ttm_pool_alloc_order_caching_match
[21:14:31] [PASSED] ttm_pool_alloc_caching_mismatch
[21:14:31] [PASSED] ttm_pool_alloc_order_mismatch
[21:14:31] [PASSED] ttm_pool_free_dma_alloc
[21:14:31] [PASSED] ttm_pool_free_no_dma_alloc
[21:14:31] [PASSED] ttm_pool_fini_basic
[21:14:31] ==================== [PASSED] ttm_pool =====================
[21:14:31] ================ ttm_resource (8 subtests) =================
[21:14:31] ================= ttm_resource_init_basic =================
[21:14:31] [PASSED] Init resource in TTM_PL_SYSTEM
[21:14:31] [PASSED] Init resource in TTM_PL_VRAM
[21:14:31] [PASSED] Init resource in a private placement
[21:14:31] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:14:31] ============= [PASSED] ttm_resource_init_basic =============
[21:14:31] [PASSED] ttm_resource_init_pinned
[21:14:31] [PASSED] ttm_resource_fini_basic
[21:14:31] [PASSED] ttm_resource_manager_init_basic
[21:14:31] [PASSED] ttm_resource_manager_usage_basic
[21:14:31] [PASSED] ttm_resource_manager_set_used_basic
[21:14:31] [PASSED] ttm_sys_man_alloc_basic
[21:14:31] [PASSED] ttm_sys_man_free_basic
[21:14:31] ================== [PASSED] ttm_resource ===================
[21:14:31] =================== ttm_tt (15 subtests) ===================
[21:14:31] ==================== ttm_tt_init_basic ====================
[21:14:31] [PASSED] Page-aligned size
[21:14:31] [PASSED] Extra pages requested
[21:14:31] ================ [PASSED] ttm_tt_init_basic ================
[21:14:31] [PASSED] ttm_tt_init_misaligned
[21:14:31] [PASSED] ttm_tt_fini_basic
[21:14:31] [PASSED] ttm_tt_fini_sg
[21:14:31] [PASSED] ttm_tt_fini_shmem
[21:14:31] [PASSED] ttm_tt_create_basic
[21:14:31] [PASSED] ttm_tt_create_invalid_bo_type
[21:14:31] [PASSED] ttm_tt_create_ttm_exists
[21:14:31] [PASSED] ttm_tt_create_failed
[21:14:31] [PASSED] ttm_tt_destroy_basic
[21:14:31] [PASSED] ttm_tt_populate_null_ttm
[21:14:31] [PASSED] ttm_tt_populate_populated_ttm
[21:14:31] [PASSED] ttm_tt_unpopulate_basic
[21:14:31] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:14:31] [PASSED] ttm_tt_swapin_basic
[21:14:31] ===================== [PASSED] ttm_tt ======================
[21:14:31] =================== ttm_bo (14 subtests) ===================
[21:14:31] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:14:31] [PASSED] Cannot be interrupted and sleeps
[21:14:31] [PASSED] Cannot be interrupted, locks straight away
[21:14:31] [PASSED] Can be interrupted, sleeps
[21:14:31] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:14:31] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:14:31] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:14:31] [PASSED] ttm_bo_reserve_double_resv
[21:14:31] [PASSED] ttm_bo_reserve_interrupted
[21:14:31] [PASSED] ttm_bo_reserve_deadlock
[21:14:31] [PASSED] ttm_bo_unreserve_basic
[21:14:31] [PASSED] ttm_bo_unreserve_pinned
[21:14:31] [PASSED] ttm_bo_unreserve_bulk
[21:14:31] [PASSED] ttm_bo_fini_basic
[21:14:31] [PASSED] ttm_bo_fini_shared_resv
[21:14:31] [PASSED] ttm_bo_pin_basic
[21:14:31] [PASSED] ttm_bo_pin_unpin_resource
[21:14:31] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:14:31] ===================== [PASSED] ttm_bo ======================
[21:14:31] ============== ttm_bo_validate (21 subtests) ===============
[21:14:31] ============== ttm_bo_init_reserved_sys_man ===============
[21:14:31] [PASSED] Buffer object for userspace
[21:14:31] [PASSED] Kernel buffer object
[21:14:31] [PASSED] Shared buffer object
[21:14:31] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:14:31] ============== ttm_bo_init_reserved_mock_man ==============
[21:14:31] [PASSED] Buffer object for userspace
[21:14:31] [PASSED] Kernel buffer object
[21:14:31] [PASSED] Shared buffer object
[21:14:31] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:14:31] [PASSED] ttm_bo_init_reserved_resv
[21:14:31] ================== ttm_bo_validate_basic ==================
[21:14:31] [PASSED] Buffer object for userspace
[21:14:31] [PASSED] Kernel buffer object
[21:14:31] [PASSED] Shared buffer object
[21:14:31] ============== [PASSED] ttm_bo_validate_basic ==============
[21:14:31] [PASSED] ttm_bo_validate_invalid_placement
[21:14:31] ============= ttm_bo_validate_same_placement ==============
[21:14:31] [PASSED] System manager
[21:14:31] [PASSED] VRAM manager
[21:14:31] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:14:31] [PASSED] ttm_bo_validate_failed_alloc
[21:14:31] [PASSED] ttm_bo_validate_pinned
[21:14:31] [PASSED] ttm_bo_validate_busy_placement
[21:14:31] ================ ttm_bo_validate_multihop =================
[21:14:31] [PASSED] Buffer object for userspace
[21:14:31] [PASSED] Kernel buffer object
[21:14:31] [PASSED] Shared buffer object
[21:14:31] ============ [PASSED] ttm_bo_validate_multihop =============
[21:14:31] ========== ttm_bo_validate_no_placement_signaled ==========
[21:14:31] [PASSED] Buffer object in system domain, no page vector
[21:14:31] [PASSED] Buffer object in system domain with an existing page vector
[21:14:31] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:14:31] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:14:31] [PASSED] Buffer object for userspace
[21:14:31] [PASSED] Kernel buffer object
[21:14:31] [PASSED] Shared buffer object
[21:14:31] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:14:31] [PASSED] ttm_bo_validate_move_fence_signaled
[21:14:31] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:14:31] [PASSED] Waits for GPU
[21:14:31] [PASSED] Tries to lock straight away
[21:14:31] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:14:31] [PASSED] ttm_bo_validate_happy_evict
[21:14:31] [PASSED] ttm_bo_validate_all_pinned_evict
[21:14:31] [PASSED] ttm_bo_validate_allowed_only_evict
[21:14:31] [PASSED] ttm_bo_validate_deleted_evict
[21:14:31] [PASSED] ttm_bo_validate_busy_domain_evict
[21:14:31] [PASSED] ttm_bo_validate_evict_gutting
[21:14:31] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:14:31] ================= [PASSED] ttm_bo_validate =================
[21:14:31] ============================================================
[21:14:31] Testing complete. Ran 101 tests: passed: 101
[21:14:31] Elapsed time: 11.276s total, 1.663s configuring, 9.397s building, 0.184s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v3] drm/xe: Limit number of jobs per exec queue
2025-10-27 20:21 ` [PATCH v3] " Shuicheng Lin
@ 2025-10-27 21:47 ` Matthew Brost
2025-10-29 1:48 ` Matthew Brost
1 sibling, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-10-27 21:47 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe, stuart.summers
On Mon, Oct 27, 2025 at 08:21:19PM +0000, Shuicheng Lin wrote:
> Add a limit to the number of jobs that can be queued in a single
> exec queue to avoid potential resource exhaustion.
>
> A new field `job_cnt` is introduced in `struct xe_exec_queue` to
> track the number of active DRM jobs, along with a maximum limit
> `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 1000.
>
> If the job count exceeds this threshold, `xe_exec_ioctl()` now
> returns `-EAGAIN` to signal that the caller should retry later.
>
> A trace event is added to track when the limit is reached:
> "xe_exec_queue_reach_max_job_count: dev=0000:03:00.0, job count
> exceeded the maximum limit (1000) per exec queue. engine_class=0x3,
> logical_mask=0x1, guc_id=2"
>
> v3: add assert in xe_exec_queue_destroy that q->job_cnt is zero. (Matt)
> v2 (Matt):
> - add log to trace the limit is hit.
> - Change max count from 0x1000 to 1000.
> - Use atomic_t for job_cnt.
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
> ---
> drivers/gpu/drm/xe/xe_exec.c | 7 +++++++
> drivers/gpu/drm/xe/xe_exec_queue.c | 2 ++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> drivers/gpu/drm/xe/xe_trace.h | 23 +++++++++++++++++++++++
> 5 files changed, 39 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 521467d976f7..f4d79b4b9396 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -21,6 +21,7 @@
> #include "xe_sched_job.h"
> #include "xe_sync.h"
> #include "xe_svm.h"
> +#include "xe_trace.h"
> #include "xe_vm.h"
>
> /**
> @@ -154,6 +155,12 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> goto err_exec_queue;
> }
>
> + if (atomic_read(&q->job_cnt) >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> + trace_xe_exec_queue_reach_max_job_count(q, XE_MAX_JOB_COUNT_PER_EXEC_QUEUE);
> + err = -EAGAIN;
> + goto err_exec_queue;
> + }
> +
> if (args->num_syncs) {
> syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
> if (!syncs) {
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index 90cbc95f8e2e..1b57d7c2cc94 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -377,6 +377,8 @@ void xe_exec_queue_destroy(struct kref *ref)
> struct xe_exec_queue *q = container_of(ref, struct xe_exec_queue, refcount);
> struct xe_exec_queue *eq, *next;
>
> + xe_assert(gt_to_xe(q->gt), atomic_read(&q->job_cnt) == 0);
> +
> if (xe_exec_queue_uses_pxp(q))
> xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
>
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> index 282505fa1377..c8807268ec6c 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> @@ -162,6 +162,11 @@ struct xe_exec_queue {
> const struct xe_ring_ops *ring_ops;
> /** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
> struct drm_sched_entity *entity;
> +
> +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 1000
> + /** @job_cnt: number of drm jobs in this exec queue */
> + atomic_t job_cnt;
> +
> /**
> * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> * Protected by @vm's resv. Unused if @vm == NULL.
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
> index 6ae4cc6a3802..f1ba9c19e218 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.c
> +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
> for (i = 0; i < width; ++i)
> job->ptrs[i].batch_addr = batch_addr[i];
>
> + atomic_inc(&q->job_cnt);
> xe_pm_runtime_get_noresume(job_to_xe(job));
> trace_xe_sched_job_create(job);
> return job;
> @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> dma_fence_put(job->fence);
> drm_sched_job_cleanup(&job->drm);
> job_free(job);
> + atomic_dec(&q->job_cnt);
> xe_exec_queue_put(q);
> xe_pm_runtime_put(xe);
> }
> diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
> index 314f42fcbcbd..79a97b086cb2 100644
> --- a/drivers/gpu/drm/xe/xe_trace.h
> +++ b/drivers/gpu/drm/xe/xe_trace.h
> @@ -441,6 +441,29 @@ TRACE_EVENT(xe_eu_stall_data_read,
> __entry->read_size, __entry->total_size)
> );
>
> +TRACE_EVENT(xe_exec_queue_reach_max_job_count,
> + TP_PROTO(struct xe_exec_queue *q, int max_cnt),
> + TP_ARGS(q, max_cnt),
> +
> + TP_STRUCT__entry(__string(dev, __dev_name_eq(q))
> + __field(enum xe_engine_class, class)
> + __field(u32, logical_mask)
> + __field(u16, guc_id)
> + __field(int, max_cnt)
> + ),
> +
> + TP_fast_assign(__assign_str(dev);
> + __entry->class = q->class;
> + __entry->logical_mask = q->logical_mask;
> + __entry->guc_id = q->guc->id;
> + __entry->max_cnt = max_cnt;
> + ),
> +
> + TP_printk("dev=%s, job count exceeded the maximum limit (%d) per exec queue. engine_class=0x%x, logical_mask=0x%x, guc_id=%d",
> + __get_str(dev), __entry->max_cnt,
> + __entry->class, __entry->logical_mask, __entry->guc_id)
> +);
> +
> #endif
>
> /* This part must be outside protection */
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Limit number of jobs per exec queue (rev3)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (10 preceding siblings ...)
2025-10-27 21:14 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev3) Patchwork
@ 2025-10-27 21:52 ` Patchwork
2025-10-28 4:39 ` ✓ Xe.CI.Full: " Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-27 21:52 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 873 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev3)
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
CI Bug Log - changes from xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0_BAT -> xe-pw-156371v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0 -> xe-pw-156371v3
IGT_8597: 8597
xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0: a8f3783a2ccf78b04e48cf235f03629b80ffa3e0
xe-pw-156371v3: 156371v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/index.html
[-- Attachment #2: Type: text/html, Size: 1421 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe: Limit number of jobs per exec queue (rev3)
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
` (11 preceding siblings ...)
2025-10-27 21:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-28 4:39 ` Patchwork
12 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2025-10-28 4:39 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 34348 bytes --]
== Series Details ==
Series: drm/xe: Limit number of jobs per exec queue (rev3)
URL : https://patchwork.freedesktop.org/series/156371/
State : success
== Summary ==
CI Bug Log - changes from xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0_FULL -> xe-pw-156371v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-156371v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][1] ([Intel XE#316])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#1124])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1124])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [PASS][5] -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#787]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][16] ([Intel XE#6168])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][17] ([Intel XE#1727] / [Intel XE#3113])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2291])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2291])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#323])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#4422])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2316])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2316]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_flip@2x-plain-flip.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
- shard-adlp: [PASS][29] -> [DMESG-WARN][30] ([Intel XE#4543])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-1/igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#2953] / [Intel XE#4173]) +8 other tests dmesg-warn
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-3/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2293] / [Intel XE#2380])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2293])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2312]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#651]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#653]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#870])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1406] / [Intel XE#1489])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1128] / [Intel XE#1406])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2330])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#3414])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#4459]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@kms_vrr@flipline.html
* igt@xe_configfs@survivability-mode:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6010])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#5300])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_eudebug@connect-user:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#4837])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@xe_eudebug@connect-user.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#4837]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@interrupt-all:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#4837]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@xe_eudebug_online@interrupt-all.html
* igt@xe_evict@evict-beng-small-multi-vm-cm:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#688])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@xe_evict@evict-beng-small-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2322])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#288]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#4915]) +47 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@xe_exec_system_allocator@process-many-mmap-free-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4943]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4943]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-huge-nomemset.html
* igt@xe_module_load@many-reload:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-8/igt@xe_module_load@many-reload.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-3/igt@xe_module_load@many-reload.html
* igt@xe_oa@non-privileged-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#3573])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-434/igt@xe_oa@non-privileged-access-vaddr.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-adlp: [FAIL][67] ([Intel XE#3908]) -> [PASS][68] +1 other test pass
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-9/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [DMESG-FAIL][69] ([Intel XE#4543]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][71] ([Intel XE#2291]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [DMESG-WARN][73] ([Intel XE#5354]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][75] ([Intel XE#4294]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [SKIP][77] ([Intel XE#2316]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][79] ([Intel XE#4543]) -> [PASS][80] +1 other test pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-1/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][81] ([Intel XE#1503]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-adlp: [DMESG-WARN][83] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-1/igt@kms_pm_rpm@system-suspend-idle.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-2/igt@kms_pm_rpm@system-suspend-idle.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][85] ([Intel XE#6321]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-dg2-set2: [INCOMPLETE][87] ([Intel XE#4842]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][89] ([Intel XE#5893]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][91] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][92] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][93] ([Intel XE#1178]) -> [SKIP][94] ([Intel XE#2341])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@kms_content_protection@lic-type-0.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][95] ([Intel XE#2311]) -> [SKIP][96] ([Intel XE#2312]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][97] ([Intel XE#2312]) -> [SKIP][98] ([Intel XE#2311]) +9 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][99] ([Intel XE#2312]) -> [SKIP][100] ([Intel XE#5390]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][101] ([Intel XE#5390]) -> [SKIP][102] ([Intel XE#2312]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][103] ([Intel XE#2312]) -> [SKIP][104] ([Intel XE#2313]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][105] ([Intel XE#2313]) -> [SKIP][106] ([Intel XE#2312]) +6 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][107] ([Intel XE#2426]) -> [SKIP][108] ([Intel XE#2509])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-WARN][109] ([Intel XE#3868]) -> [DMESG-FAIL][110] ([Intel XE#3868])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-8/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][111] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][112] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-bmg-6/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: [DMESG-FAIL][113] ([Intel XE#3868] / [Intel XE#5213]) -> [ABORT][114] ([Intel XE#4917]) +1 other test abort
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0/shard-adlp-4/igt@xe_sriov_scheduling@equal-throughput.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[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#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[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#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* Linux: xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0 -> xe-pw-156371v3
IGT_8597: 8597
xe-3993-a8f3783a2ccf78b04e48cf235f03629b80ffa3e0: a8f3783a2ccf78b04e48cf235f03629b80ffa3e0
xe-pw-156371v3: 156371v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156371v3/index.html
[-- Attachment #2: Type: text/html, Size: 41446 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v3] drm/xe: Limit number of jobs per exec queue
2025-10-27 20:21 ` [PATCH v3] " Shuicheng Lin
2025-10-27 21:47 ` Matthew Brost
@ 2025-10-29 1:48 ` Matthew Brost
1 sibling, 0 replies; 19+ messages in thread
From: Matthew Brost @ 2025-10-29 1:48 UTC (permalink / raw)
To: Shuicheng Lin; +Cc: intel-xe, stuart.summers
On Mon, Oct 27, 2025 at 08:21:19PM +0000, Shuicheng Lin wrote:
> Add a limit to the number of jobs that can be queued in a single
> exec queue to avoid potential resource exhaustion.
>
> A new field `job_cnt` is introduced in `struct xe_exec_queue` to
> track the number of active DRM jobs, along with a maximum limit
> `XE_MAX_JOB_COUNT_PER_EXEC_QUEUE` set to 1000.
>
> If the job count exceeds this threshold, `xe_exec_ioctl()` now
> returns `-EAGAIN` to signal that the caller should retry later.
>
> A trace event is added to track when the limit is reached:
> "xe_exec_queue_reach_max_job_count: dev=0000:03:00.0, job count
> exceeded the maximum limit (1000) per exec queue. engine_class=0x3,
> logical_mask=0x1, guc_id=2"
>
> v3: add assert in xe_exec_queue_destroy that q->job_cnt is zero. (Matt)
> v2 (Matt):
> - add log to trace the limit is hit.
> - Change max count from 0x1000 to 1000.
> - Use atomic_t for job_cnt.
>
> Suggested-by: Matthew Brost <matthew.brost@intel.com>
> Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
Pushed to drm-xe-next.
Matt
> ---
> drivers/gpu/drm/xe/xe_exec.c | 7 +++++++
> drivers/gpu/drm/xe/xe_exec_queue.c | 2 ++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 +++++
> drivers/gpu/drm/xe/xe_sched_job.c | 2 ++
> drivers/gpu/drm/xe/xe_trace.h | 23 +++++++++++++++++++++++
> 5 files changed, 39 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
> index 521467d976f7..f4d79b4b9396 100644
> --- a/drivers/gpu/drm/xe/xe_exec.c
> +++ b/drivers/gpu/drm/xe/xe_exec.c
> @@ -21,6 +21,7 @@
> #include "xe_sched_job.h"
> #include "xe_sync.h"
> #include "xe_svm.h"
> +#include "xe_trace.h"
> #include "xe_vm.h"
>
> /**
> @@ -154,6 +155,12 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
> goto err_exec_queue;
> }
>
> + if (atomic_read(&q->job_cnt) >= XE_MAX_JOB_COUNT_PER_EXEC_QUEUE) {
> + trace_xe_exec_queue_reach_max_job_count(q, XE_MAX_JOB_COUNT_PER_EXEC_QUEUE);
> + err = -EAGAIN;
> + goto err_exec_queue;
> + }
> +
> if (args->num_syncs) {
> syncs = kcalloc(args->num_syncs, sizeof(*syncs), GFP_KERNEL);
> if (!syncs) {
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
> index 90cbc95f8e2e..1b57d7c2cc94 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue.c
> +++ b/drivers/gpu/drm/xe/xe_exec_queue.c
> @@ -377,6 +377,8 @@ void xe_exec_queue_destroy(struct kref *ref)
> struct xe_exec_queue *q = container_of(ref, struct xe_exec_queue, refcount);
> struct xe_exec_queue *eq, *next;
>
> + xe_assert(gt_to_xe(q->gt), atomic_read(&q->job_cnt) == 0);
> +
> if (xe_exec_queue_uses_pxp(q))
> xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
>
> diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> index 282505fa1377..c8807268ec6c 100644
> --- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
> +++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
> @@ -162,6 +162,11 @@ struct xe_exec_queue {
> const struct xe_ring_ops *ring_ops;
> /** @entity: DRM sched entity for this exec queue (1 to 1 relationship) */
> struct drm_sched_entity *entity;
> +
> +#define XE_MAX_JOB_COUNT_PER_EXEC_QUEUE 1000
> + /** @job_cnt: number of drm jobs in this exec queue */
> + atomic_t job_cnt;
> +
> /**
> * @tlb_flush_seqno: The seqno of the last rebind tlb flush performed
> * Protected by @vm's resv. Unused if @vm == NULL.
> diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
> index 6ae4cc6a3802..f1ba9c19e218 100644
> --- a/drivers/gpu/drm/xe/xe_sched_job.c
> +++ b/drivers/gpu/drm/xe/xe_sched_job.c
> @@ -146,6 +146,7 @@ struct xe_sched_job *xe_sched_job_create(struct xe_exec_queue *q,
> for (i = 0; i < width; ++i)
> job->ptrs[i].batch_addr = batch_addr[i];
>
> + atomic_inc(&q->job_cnt);
> xe_pm_runtime_get_noresume(job_to_xe(job));
> trace_xe_sched_job_create(job);
> return job;
> @@ -177,6 +178,7 @@ void xe_sched_job_destroy(struct kref *ref)
> dma_fence_put(job->fence);
> drm_sched_job_cleanup(&job->drm);
> job_free(job);
> + atomic_dec(&q->job_cnt);
> xe_exec_queue_put(q);
> xe_pm_runtime_put(xe);
> }
> diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
> index 314f42fcbcbd..79a97b086cb2 100644
> --- a/drivers/gpu/drm/xe/xe_trace.h
> +++ b/drivers/gpu/drm/xe/xe_trace.h
> @@ -441,6 +441,29 @@ TRACE_EVENT(xe_eu_stall_data_read,
> __entry->read_size, __entry->total_size)
> );
>
> +TRACE_EVENT(xe_exec_queue_reach_max_job_count,
> + TP_PROTO(struct xe_exec_queue *q, int max_cnt),
> + TP_ARGS(q, max_cnt),
> +
> + TP_STRUCT__entry(__string(dev, __dev_name_eq(q))
> + __field(enum xe_engine_class, class)
> + __field(u32, logical_mask)
> + __field(u16, guc_id)
> + __field(int, max_cnt)
> + ),
> +
> + TP_fast_assign(__assign_str(dev);
> + __entry->class = q->class;
> + __entry->logical_mask = q->logical_mask;
> + __entry->guc_id = q->guc->id;
> + __entry->max_cnt = max_cnt;
> + ),
> +
> + TP_printk("dev=%s, job count exceeded the maximum limit (%d) per exec queue. engine_class=0x%x, logical_mask=0x%x, guc_id=%d",
> + __get_str(dev), __entry->max_cnt,
> + __entry->class, __entry->logical_mask, __entry->guc_id)
> +);
> +
> #endif
>
> /* This part must be outside protection */
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2025-10-29 1:48 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-22 18:10 [PATCH] drm/xe: Limit number of jobs per exec queue Shuicheng Lin
2025-10-22 18:48 ` Matthew Brost
2025-10-23 15:51 ` Lin, Shuicheng
2025-10-23 19:05 ` Matthew Brost
2025-10-23 1:04 ` ✓ CI.KUnit: success for " Patchwork
2025-10-23 1:43 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-10-23 8:26 ` ✗ Xe.CI.Full: " Patchwork
2025-10-25 18:10 ` [PATCH v2] " Shuicheng Lin
2025-10-25 18:20 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev2) Patchwork
2025-10-25 18:59 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-25 20:09 ` ✗ Xe.CI.Full: failure " Patchwork
2025-10-27 16:33 ` [PATCH] drm/xe: Limit number of jobs per exec queue Matthew Brost
2025-10-27 19:53 ` Matthew Brost
2025-10-27 20:21 ` [PATCH v3] " Shuicheng Lin
2025-10-27 21:47 ` Matthew Brost
2025-10-29 1:48 ` Matthew Brost
2025-10-27 21:14 ` ✓ CI.KUnit: success for drm/xe: Limit number of jobs per exec queue (rev3) Patchwork
2025-10-27 21:52 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-28 4:39 ` ✓ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox