Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/sched: Increment job count before swapping tail spsc queue
@ 2025-06-13 21:20 Matthew Brost
  2025-06-13 22:03 ` Cavitt, Jonathan
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Matthew Brost @ 2025-06-13 21:20 UTC (permalink / raw)
  To: intel-xe, dri-devel; +Cc: dakr, christian.koenig, pstanner

A small race exists between spsc_queue_push and the run-job worker, in
which spsc_queue_push may return not-first while the run-job worker has
already idled due to the job count being zero. If this race occurs, job
scheduling stops, leading to hangs while waiting on the job’s DMA
fences.

Seal this race by incrementing the job count before appending to the
SPSC queue.

This race was observed on a drm-tip 6.16-rc1 build with the Xe driver in
an SVM test case.

Fixes: 1b1f42d8fde4 ("drm: move amd_gpu_scheduler into common location")
Fixes: 27105db6c63a ("drm/amdgpu: Add SPSC queue to scheduler.")
Cc: stable@vger.kernel.org
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 include/drm/spsc_queue.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/drm/spsc_queue.h b/include/drm/spsc_queue.h
index 125f096c88cb..ee9df8cc67b7 100644
--- a/include/drm/spsc_queue.h
+++ b/include/drm/spsc_queue.h
@@ -70,9 +70,11 @@ static inline bool spsc_queue_push(struct spsc_queue *queue, struct spsc_node *n
 
 	preempt_disable();
 
+	atomic_inc(&queue->job_count);
+	smp_mb__after_atomic();
+
 	tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next);
 	WRITE_ONCE(*tail, node);
-	atomic_inc(&queue->job_count);
 
 	/*
 	 * In case of first element verify new node will be visible to the consumer
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* RE: [PATCH] drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
@ 2025-06-13 22:03 ` Cavitt, Jonathan
  2025-06-14  0:18 ` ✗ CI.checkpatch: warning for " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Cavitt, Jonathan @ 2025-06-13 22:03 UTC (permalink / raw)
  To: Brost, Matthew, intel-xe@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org
  Cc: dakr@kernel.org, christian.koenig@amd.com, pstanner@redhat.com,
	Cavitt, Jonathan

-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Matthew Brost
Sent: Friday, June 13, 2025 2:20 PM
To: intel-xe@lists.freedesktop.org; dri-devel@lists.freedesktop.org
Cc: dakr@kernel.org; christian.koenig@amd.com; pstanner@redhat.com
Subject: [PATCH] drm/sched: Increment job count before swapping tail spsc queue
> 
> A small race exists between spsc_queue_push and the run-job worker, in
> which spsc_queue_push may return not-first while the run-job worker has
> already idled due to the job count being zero. If this race occurs, job
> scheduling stops, leading to hangs while waiting on the job’s DMA
> fences.
> 
> Seal this race by incrementing the job count before appending to the
> SPSC queue.
> 
> This race was observed on a drm-tip 6.16-rc1 build with the Xe driver in
> an SVM test case.
> 
> Fixes: 1b1f42d8fde4 ("drm: move amd_gpu_scheduler into common location")
> Fixes: 27105db6c63a ("drm/amdgpu: Add SPSC queue to scheduler.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

LGTM.

Maybe in the future, we should consider giving the queue a mutex on the
job count and tail to prevent these race conditions, though that would
require a serious refactoring of the code compared to this fix which works
with minimal change.

Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt

> ---
>  include/drm/spsc_queue.h | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/include/drm/spsc_queue.h b/include/drm/spsc_queue.h
> index 125f096c88cb..ee9df8cc67b7 100644
> --- a/include/drm/spsc_queue.h
> +++ b/include/drm/spsc_queue.h
> @@ -70,9 +70,11 @@ static inline bool spsc_queue_push(struct spsc_queue *queue, struct spsc_node *n
>  
>  	preempt_disable();
>  
> +	atomic_inc(&queue->job_count);
> +	smp_mb__after_atomic();
> +
>  	tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next);
>  	WRITE_ONCE(*tail, node);
> -	atomic_inc(&queue->job_count);
>  
>  	/*
>  	 * In case of first element verify new node will be visible to the consumer
> -- 
> 2.34.1
> 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ CI.checkpatch: warning for drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
  2025-06-13 22:03 ` Cavitt, Jonathan
@ 2025-06-14  0:18 ` Patchwork
  2025-06-14  0:19 ` ✓ CI.KUnit: success " Patchwork
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14  0:18 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: drm/sched: Increment job count before swapping tail spsc queue
URL   : https://patchwork.freedesktop.org/series/150259/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 639634fe6da168377daade63c2395e028ae87bec
Author: Matthew Brost <matthew.brost@intel.com>
Date:   Fri Jun 13 14:20:13 2025 -0700

    drm/sched: Increment job count before swapping tail spsc queue
    
    A small race exists between spsc_queue_push and the run-job worker, in
    which spsc_queue_push may return not-first while the run-job worker has
    already idled due to the job count being zero. If this race occurs, job
    scheduling stops, leading to hangs while waiting on the job’s DMA
    fences.
    
    Seal this race by incrementing the job count before appending to the
    SPSC queue.
    
    This race was observed on a drm-tip 6.16-rc1 build with the Xe driver in
    an SVM test case.
    
    Fixes: 1b1f42d8fde4 ("drm: move amd_gpu_scheduler into common location")
    Fixes: 27105db6c63a ("drm/amdgpu: Add SPSC queue to scheduler.")
    Cc: stable@vger.kernel.org
    Signed-off-by: Matthew Brost <matthew.brost@intel.com>
    Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
+ /mt/dim checkpatch 4d016d6e602638e0ebc3895331224e057508c07a drm-intel
639634fe6da1 drm/sched: Increment job count before swapping tail spsc queue
-:37: WARNING:MEMORY_BARRIER: memory barrier without comment
#37: FILE: include/drm/spsc_queue.h:74:
+	smp_mb__after_atomic();

total: 0 errors, 1 warnings, 0 checks, 12 lines checked



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ CI.KUnit: success for drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
  2025-06-13 22:03 ` Cavitt, Jonathan
  2025-06-14  0:18 ` ✗ CI.checkpatch: warning for " Patchwork
@ 2025-06-14  0:19 ` Patchwork
  2025-06-14  0:56 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14  0:19 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

== Series Details ==

Series: drm/sched: Increment job count before swapping tail spsc queue
URL   : https://patchwork.freedesktop.org/series/150259/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:18:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:18:52] 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
[00:19:19] Starting KUnit Kernel (1/1)...
[00:19:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:19:19] ================== guc_buf (11 subtests) ===================
[00:19:19] [PASSED] test_smallest
[00:19:19] [PASSED] test_largest
[00:19:19] [PASSED] test_granular
[00:19:19] [PASSED] test_unique
[00:19:19] [PASSED] test_overlap
[00:19:19] [PASSED] test_reusable
[00:19:19] [PASSED] test_too_big
[00:19:19] [PASSED] test_flush
[00:19:19] [PASSED] test_lookup
[00:19:19] [PASSED] test_data
[00:19:19] [PASSED] test_class
[00:19:19] ===================== [PASSED] guc_buf =====================
[00:19:19] =================== guc_dbm (7 subtests) ===================
[00:19:19] [PASSED] test_empty
[00:19:19] [PASSED] test_default
[00:19:19] ======================== test_size  ========================
[00:19:19] [PASSED] 4
[00:19:19] [PASSED] 8
[00:19:19] [PASSED] 32
[00:19:19] [PASSED] 256
[00:19:19] ==================== [PASSED] test_size ====================
[00:19:19] ======================= test_reuse  ========================
[00:19:19] [PASSED] 4
[00:19:19] [PASSED] 8
[00:19:19] [PASSED] 32
[00:19:19] [PASSED] 256
[00:19:19] =================== [PASSED] test_reuse ====================
[00:19:19] =================== test_range_overlap  ====================
[00:19:19] [PASSED] 4
[00:19:19] [PASSED] 8
[00:19:19] [PASSED] 32
[00:19:19] [PASSED] 256
[00:19:19] =============== [PASSED] test_range_overlap ================
[00:19:19] =================== test_range_compact  ====================
[00:19:19] [PASSED] 4
[00:19:19] [PASSED] 8
[00:19:19] [PASSED] 32
[00:19:19] [PASSED] 256
[00:19:19] =============== [PASSED] test_range_compact ================
[00:19:19] ==================== test_range_spare  =====================
[00:19:19] [PASSED] 4
[00:19:19] [PASSED] 8
[00:19:19] [PASSED] 32
[00:19:19] [PASSED] 256
[00:19:19] ================ [PASSED] test_range_spare =================
[00:19:19] ===================== [PASSED] guc_dbm =====================
[00:19:19] =================== guc_idm (6 subtests) ===================
[00:19:19] [PASSED] bad_init
[00:19:19] [PASSED] no_init
[00:19:19] [PASSED] init_fini
[00:19:19] [PASSED] check_used
[00:19:19] [PASSED] check_quota
[00:19:19] [PASSED] check_all
[00:19:19] ===================== [PASSED] guc_idm =====================
[00:19:19] ================== no_relay (3 subtests) ===================
[00:19:19] [PASSED] xe_drops_guc2pf_if_not_ready
[00:19:19] [PASSED] xe_drops_guc2vf_if_not_ready
[00:19:19] [PASSED] xe_rejects_send_if_not_ready
[00:19:19] ==================== [PASSED] no_relay =====================
[00:19:19] ================== pf_relay (14 subtests) ==================
[00:19:19] [PASSED] pf_rejects_guc2pf_too_short
[00:19:19] [PASSED] pf_rejects_guc2pf_too_long
[00:19:19] [PASSED] pf_rejects_guc2pf_no_payload
[00:19:19] [PASSED] pf_fails_no_payload
[00:19:19] [PASSED] pf_fails_bad_origin
[00:19:19] [PASSED] pf_fails_bad_type
[00:19:19] [PASSED] pf_txn_reports_error
[00:19:19] [PASSED] pf_txn_sends_pf2guc
[00:19:19] [PASSED] pf_sends_pf2guc
[00:19:19] [SKIPPED] pf_loopback_nop
[00:19:19] [SKIPPED] pf_loopback_echo
[00:19:19] [SKIPPED] pf_loopback_fail
[00:19:19] [SKIPPED] pf_loopback_busy
[00:19:19] [SKIPPED] pf_loopback_retry
[00:19:19] ==================== [PASSED] pf_relay =====================
[00:19:19] ================== vf_relay (3 subtests) ===================
[00:19:19] [PASSED] vf_rejects_guc2vf_too_short
[00:19:19] [PASSED] vf_rejects_guc2vf_too_long
[00:19:19] [PASSED] vf_rejects_guc2vf_no_payload
[00:19:19] ==================== [PASSED] vf_relay =====================
[00:19:19] ================= pf_service (11 subtests) =================
[00:19:19] [PASSED] pf_negotiate_any
[00:19:19] [PASSED] pf_negotiate_base_match
[00:19:19] [PASSED] pf_negotiate_base_newer
[00:19:19] [PASSED] pf_negotiate_base_next
[00:19:19] [SKIPPED] pf_negotiate_base_older
[00:19:19] [PASSED] pf_negotiate_base_prev
[00:19:19] [PASSED] pf_negotiate_latest_match
[00:19:19] [PASSED] pf_negotiate_latest_newer
[00:19:19] [PASSED] pf_negotiate_latest_next
[00:19:19] [SKIPPED] pf_negotiate_latest_older
[00:19:19] [SKIPPED] pf_negotiate_latest_prev
[00:19:19] =================== [PASSED] pf_service ====================
[00:19:19] ===================== lmtt (1 subtest) =====================
[00:19:19] ======================== test_ops  =========================
[00:19:19] [PASSED] 2-level
[00:19:19] [PASSED] multi-level
[00:19:19] ==================== [PASSED] test_ops =====================
[00:19:19] ====================== [PASSED] lmtt =======================
[00:19:19] =================== xe_mocs (2 subtests) ===================
[00:19:19] ================ xe_live_mocs_kernel_kunit  ================
[00:19:19] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:19:19] ================ xe_live_mocs_reset_kunit  =================
[00:19:19] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:19:19] ==================== [SKIPPED] xe_mocs =====================
[00:19:19] ================= xe_migrate (2 subtests) ==================
[00:19:19] ================= xe_migrate_sanity_kunit  =================
[00:19:19] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:19:19] ================== xe_validate_ccs_kunit  ==================
[00:19:19] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:19:19] =================== [SKIPPED] xe_migrate ===================
[00:19:19] ================== xe_dma_buf (1 subtest) ==================
[00:19:19] ==================== xe_dma_buf_kunit  =====================
[00:19:19] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:19:19] =================== [SKIPPED] xe_dma_buf ===================
[00:19:19] ================= xe_bo_shrink (1 subtest) =================
[00:19:19] =================== xe_bo_shrink_kunit  ====================
[00:19:19] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:19:19] ================== [SKIPPED] xe_bo_shrink ==================
[00:19:19] ==================== xe_bo (2 subtests) ====================
[00:19:19] ================== xe_ccs_migrate_kunit  ===================
[00:19:19] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[00:19:19] ==================== xe_bo_evict_kunit  ====================
[00:19:19] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:19:19] ===================== [SKIPPED] xe_bo ======================
[00:19:19] ==================== args (11 subtests) ====================
[00:19:19] [PASSED] count_args_test
[00:19:19] [PASSED] call_args_example
[00:19:19] [PASSED] call_args_test
[00:19:19] [PASSED] drop_first_arg_example
[00:19:19] [PASSED] drop_first_arg_test
[00:19:19] [PASSED] first_arg_example
[00:19:19] [PASSED] first_arg_test
[00:19:19] [PASSED] last_arg_example
[00:19:19] [PASSED] last_arg_test
[00:19:19] [PASSED] pick_arg_example
[00:19:19] [PASSED] sep_comma_example
[00:19:19] ====================== [PASSED] args =======================
[00:19:19] =================== xe_pci (2 subtests) ====================
[00:19:19] [PASSED] xe_gmdid_graphics_ip
[00:19:19] [PASSED] xe_gmdid_media_ip
[00:19:19] ===================== [PASSED] xe_pci ======================
[00:19:19] =================== xe_rtp (2 subtests) ====================
[00:19:19] =============== xe_rtp_process_to_sr_tests  ================
[00:19:19] [PASSED] coalesce-same-reg
[00:19:19] [PASSED] no-match-no-add
[00:19:19] [PASSED] match-or
[00:19:19] [PASSED] match-or-xfail
[00:19:19] [PASSED] no-match-no-add-multiple-rules
[00:19:19] [PASSED] two-regs-two-entries
[00:19:19] [PASSED] clr-one-set-other
[00:19:19] [PASSED] set-field
[00:19:19] [PASSED] conflict-duplicate
[00:19:19] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[00:19:19] [PASSED] conflict-reg-type
[00:19:19] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:19:19] ================== xe_rtp_process_tests  ===================
[00:19:19] [PASSED] active1
[00:19:19] [PASSED] active2
[00:19:19] [PASSED] active-inactive
[00:19:19] [PASSED] inactive-active
[00:19:19] [PASSED] inactive-1st_or_active-inactive
[00:19:19] [PASSED] inactive-2nd_or_active-inactive
[00:19:19] [PASSED] inactive-last_or_active-inactive
[00:19:19] [PASSED] inactive-no_or_active-inactive
[00:19:19] ============== [PASSED] xe_rtp_process_tests ===============
[00:19:19] ===================== [PASSED] xe_rtp ======================
[00:19:19] ==================== xe_wa (1 subtest) =====================
[00:19:19] ======================== xe_wa_gt  =========================
[00:19:19] [PASSED] TIGERLAKE (B0)
[00:19:19] [PASSED] DG1 (A0)
[00:19:19] [PASSED] DG1 (B0)
[00:19:19] [PASSED] ALDERLAKE_S (A0)
[00:19:19] [PASSED] ALDERLAKE_S (B0)
[00:19:19] [PASSED] ALDERLAKE_S (C0)
[00:19:19] [PASSED] ALDERLAKE_S (D0)
[00:19:19] [PASSED] ALDERLAKE_P (A0)
[00:19:19] [PASSED] ALDERLAKE_P (B0)
[00:19:19] [PASSED] ALDERLAKE_P (C0)
[00:19:19] [PASSED] ALDERLAKE_S_RPLS (D0)
[00:19:19] [PASSED] ALDERLAKE_P_RPLU (E0)
[00:19:19] [PASSED] DG2_G10 (C0)
[00:19:19] [PASSED] DG2_G11 (B1)
[00:19:19] [PASSED] DG2_G12 (A1)
[00:19:19] [PASSED] METEORLAKE (g:A0, m:A0)
[00:19:19] [PASSED] METEORLAKE (g:A0, m:A0)
[00:19:19] [PASSED] METEORLAKE (g:A0, m:A0)
[00:19:19] [PASSED] LUNARLAKE (g:A0, m:A0)
[00:19:19] [PASSED] LUNARLAKE (g:B0, m:A0)
[00:19:19] [PASSED] BATTLEMAGE (g:A0, m:A1)
[00:19:19] ==================== [PASSED] xe_wa_gt =====================
[00:19:19] ====================== [PASSED] xe_wa ======================
[00:19:19] ============================================================
[00:19:19] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[00:19:19] Elapsed time: 31.540s total, 4.153s configuring, 27.070s building, 0.294s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:19:19] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:19: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
[00:19:43] Starting KUnit Kernel (1/1)...
[00:19:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:19:43] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[00:19:43] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[00:19:43] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[00:19:43] =========== drm_validate_clone_mode (2 subtests) ===========
[00:19:43] ============== drm_test_check_in_clone_mode  ===============
[00:19:43] [PASSED] in_clone_mode
[00:19:43] [PASSED] not_in_clone_mode
[00:19:43] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:19:43] =============== drm_test_check_valid_clones  ===============
[00:19:43] [PASSED] not_in_clone_mode
[00:19:43] [PASSED] valid_clone
[00:19:43] [PASSED] invalid_clone
[00:19:43] =========== [PASSED] drm_test_check_valid_clones ===========
[00:19:43] ============= [PASSED] drm_validate_clone_mode =============
[00:19:43] ============= drm_validate_modeset (1 subtest) =============
[00:19:43] [PASSED] drm_test_check_connector_changed_modeset
[00:19:43] ============== [PASSED] drm_validate_modeset ===============
[00:19:43] ====== drm_test_bridge_get_current_state (2 subtests) ======
[00:19:43] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[00:19:43] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[00:19:43] ======== [PASSED] drm_test_bridge_get_current_state ========
[00:19:43] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[00:19:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[00:19:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[00:19:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[00:19:43] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[00:19:43] ============== drm_bridge_alloc (2 subtests) ===============
[00:19:43] [PASSED] drm_test_drm_bridge_alloc_basic
[00:19:43] [PASSED] drm_test_drm_bridge_alloc_get_put
[00:19:43] ================ [PASSED] drm_bridge_alloc =================
[00:19:43] ================== drm_buddy (7 subtests) ==================
[00:19:43] [PASSED] drm_test_buddy_alloc_limit
[00:19:43] [PASSED] drm_test_buddy_alloc_optimistic
[00:19:43] [PASSED] drm_test_buddy_alloc_pessimistic
[00:19:43] [PASSED] drm_test_buddy_alloc_pathological
[00:19:43] [PASSED] drm_test_buddy_alloc_contiguous
[00:19:43] [PASSED] drm_test_buddy_alloc_clear
[00:19:43] [PASSED] drm_test_buddy_alloc_range_bias
[00:19:43] ==================== [PASSED] drm_buddy ====================
[00:19:43] ============= drm_cmdline_parser (40 subtests) =============
[00:19:43] [PASSED] drm_test_cmdline_force_d_only
[00:19:43] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:19:43] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:19:43] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:19:43] [PASSED] drm_test_cmdline_force_e_only
[00:19:43] [PASSED] drm_test_cmdline_res
[00:19:43] [PASSED] drm_test_cmdline_res_vesa
[00:19:43] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:19:43] [PASSED] drm_test_cmdline_res_rblank
[00:19:43] [PASSED] drm_test_cmdline_res_bpp
[00:19:43] [PASSED] drm_test_cmdline_res_refresh
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:19:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:19:43] [PASSED] drm_test_cmdline_res_margins_force_on
[00:19:43] [PASSED] drm_test_cmdline_res_vesa_margins
[00:19:43] [PASSED] drm_test_cmdline_name
[00:19:43] [PASSED] drm_test_cmdline_name_bpp
[00:19:43] [PASSED] drm_test_cmdline_name_option
[00:19:43] [PASSED] drm_test_cmdline_name_bpp_option
[00:19:43] [PASSED] drm_test_cmdline_rotate_0
[00:19:43] [PASSED] drm_test_cmdline_rotate_90
[00:19:43] [PASSED] drm_test_cmdline_rotate_180
[00:19:43] [PASSED] drm_test_cmdline_rotate_270
[00:19:43] [PASSED] drm_test_cmdline_hmirror
[00:19:43] [PASSED] drm_test_cmdline_vmirror
[00:19:43] [PASSED] drm_test_cmdline_margin_options
[00:19:43] [PASSED] drm_test_cmdline_multiple_options
[00:19:43] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:19:43] [PASSED] drm_test_cmdline_extra_and_option
[00:19:43] [PASSED] drm_test_cmdline_freestanding_options
[00:19:43] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:19:43] [PASSED] drm_test_cmdline_panel_orientation
[00:19:43] ================ drm_test_cmdline_invalid  =================
[00:19:43] [PASSED] margin_only
[00:19:43] [PASSED] interlace_only
[00:19:43] [PASSED] res_missing_x
[00:19:43] [PASSED] res_missing_y
[00:19:43] [PASSED] res_bad_y
[00:19:43] [PASSED] res_missing_y_bpp
[00:19:43] [PASSED] res_bad_bpp
[00:19:43] [PASSED] res_bad_refresh
[00:19:43] [PASSED] res_bpp_refresh_force_on_off
[00:19:43] [PASSED] res_invalid_mode
[00:19:43] [PASSED] res_bpp_wrong_place_mode
[00:19:43] [PASSED] name_bpp_refresh
[00:19:43] [PASSED] name_refresh
[00:19:43] [PASSED] name_refresh_wrong_mode
[00:19:43] [PASSED] name_refresh_invalid_mode
[00:19:43] [PASSED] rotate_multiple
[00:19:43] [PASSED] rotate_invalid_val
[00:19:43] [PASSED] rotate_truncated
[00:19:43] [PASSED] invalid_option
[00:19:43] [PASSED] invalid_tv_option
[00:19:43] [PASSED] truncated_tv_option
[00:19:43] ============ [PASSED] drm_test_cmdline_invalid =============
[00:19:43] =============== drm_test_cmdline_tv_options  ===============
[00:19:43] [PASSED] NTSC
[00:19:43] [PASSED] NTSC_443
[00:19:43] [PASSED] NTSC_J
[00:19:43] [PASSED] PAL
[00:19:43] [PASSED] PAL_M
[00:19:43] [PASSED] PAL_N
[00:19:43] [PASSED] SECAM
[00:19:43] [PASSED] MONO_525
[00:19:43] [PASSED] MONO_625
[00:19:43] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:19:43] =============== [PASSED] drm_cmdline_parser ================
[00:19:43] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:19:43] [PASSED] drm_test_connector_hdmi_init_valid
[00:19:43] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:19:43] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:19:43] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:19:43] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:19:43] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:19:43] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:19:43] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:19:43] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[00:19:43] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:19:43] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:19:43] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:19:43] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:19:43] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:19:43] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:19:43] [PASSED] drm_test_connector_hdmi_init_null_product
[00:19:43] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:19:43] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:19:43] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:19:43] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:19:43] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:19:43] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:19:43] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:19:43] ========= drm_test_connector_hdmi_init_type_valid  =========
[00:19:43] [PASSED] HDMI-A
[00:19:43] [PASSED] HDMI-B
[00:19:43] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:19:43] ======== drm_test_connector_hdmi_init_type_invalid  ========
[00:19:43] [PASSED] Unknown
[00:19:43] [PASSED] VGA
[00:19:43] [PASSED] DVI-I
[00:19:43] [PASSED] DVI-D
[00:19:43] [PASSED] DVI-A
[00:19:43] [PASSED] Composite
[00:19:43] [PASSED] SVIDEO
[00:19:43] [PASSED] LVDS
[00:19:43] [PASSED] Component
[00:19:43] [PASSED] DIN
[00:19:43] [PASSED] DP
[00:19:43] [PASSED] TV
[00:19:43] [PASSED] eDP
[00:19:43] [PASSED] Virtual
[00:19:43] [PASSED] DSI
[00:19:43] [PASSED] DPI
[00:19:43] [PASSED] Writeback
[00:19:43] [PASSED] SPI
[00:19:43] [PASSED] USB
[00:19:43] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:19:43] ============ [PASSED] drmm_connector_hdmi_init =============
[00:19:43] ============= drmm_connector_init (3 subtests) =============
[00:19:43] [PASSED] drm_test_drmm_connector_init
[00:19:43] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:19:43] ========= drm_test_drmm_connector_init_type_valid  =========
[00:19:43] [PASSED] Unknown
[00:19:43] [PASSED] VGA
[00:19:43] [PASSED] DVI-I
[00:19:43] [PASSED] DVI-D
[00:19:43] [PASSED] DVI-A
[00:19:43] [PASSED] Composite
[00:19:43] [PASSED] SVIDEO
[00:19:43] [PASSED] LVDS
[00:19:43] [PASSED] Component
[00:19:43] [PASSED] DIN
[00:19:43] [PASSED] DP
[00:19:43] [PASSED] HDMI-A
[00:19:43] [PASSED] HDMI-B
[00:19:43] [PASSED] TV
[00:19:43] [PASSED] eDP
[00:19:43] [PASSED] Virtual
[00:19:43] [PASSED] DSI
[00:19:43] [PASSED] DPI
[00:19:43] [PASSED] Writeback
[00:19:43] [PASSED] SPI
[00:19:43] [PASSED] USB
[00:19:43] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:19:43] =============== [PASSED] drmm_connector_init ===============
[00:19:43] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_init
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:19:43] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[00:19:43] [PASSED] Unknown
[00:19:43] [PASSED] VGA
[00:19:43] [PASSED] DVI-I
[00:19:43] [PASSED] DVI-D
[00:19:43] [PASSED] DVI-A
[00:19:43] [PASSED] Composite
[00:19:43] [PASSED] SVIDEO
[00:19:43] [PASSED] LVDS
[00:19:43] [PASSED] Component
[00:19:43] [PASSED] DIN
[00:19:43] [PASSED] DP
[00:19:43] [PASSED] HDMI-A
[00:19:43] [PASSED] HDMI-B
[00:19:43] [PASSED] TV
[00:19:43] [PASSED] eDP
[00:19:43] [PASSED] Virtual
[00:19:43] [PASSED] DSI
[00:19:43] [PASSED] DPI
[00:19:43] [PASSED] Writeback
[00:19:43] [PASSED] SPI
[00:19:43] [PASSED] USB
[00:19:43] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:19:43] ======== drm_test_drm_connector_dynamic_init_name  =========
[00:19:43] [PASSED] Unknown
[00:19:43] [PASSED] VGA
[00:19:43] [PASSED] DVI-I
[00:19:43] [PASSED] DVI-D
[00:19:43] [PASSED] DVI-A
[00:19:43] [PASSED] Composite
[00:19:43] [PASSED] SVIDEO
[00:19:43] [PASSED] LVDS
[00:19:43] [PASSED] Component
[00:19:43] [PASSED] DIN
[00:19:43] [PASSED] DP
[00:19:43] [PASSED] HDMI-A
[00:19:43] [PASSED] HDMI-B
[00:19:43] [PASSED] TV
[00:19:43] [PASSED] eDP
[00:19:43] [PASSED] Virtual
[00:19:43] [PASSED] DSI
[00:19:43] [PASSED] DPI
[00:19:43] [PASSED] Writeback
[00:19:43] [PASSED] SPI
[00:19:43] [PASSED] USB
[00:19:43] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:19:43] =========== [PASSED] drm_connector_dynamic_init ============
[00:19:43] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:19:43] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:19:43] ======= drm_connector_dynamic_register (7 subtests) ========
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:19:43] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:19:43] ========= [PASSED] drm_connector_dynamic_register ==========
[00:19:43] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:19:43] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:19:43] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:19:43] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:19:43] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:19:43] ========== drm_test_get_tv_mode_from_name_valid  ===========
[00:19:43] [PASSED] NTSC
[00:19:43] [PASSED] NTSC-443
[00:19:43] [PASSED] NTSC-J
[00:19:43] [PASSED] PAL
[00:19:43] [PASSED] PAL-M
[00:19:43] [PASSED] PAL-N
[00:19:43] [PASSED] SECAM
[00:19:43] [PASSED] Mono
[00:19:43] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:19:43] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:19:43] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:19:43] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:19:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:19:43] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[00:19:43] [PASSED] VIC 96
[00:19:43] [PASSED] VIC 97
[00:19:43] [PASSED] VIC 101
[00:19:43] [PASSED] VIC 102
[00:19:43] [PASSED] VIC 106
[00:19:43] [PASSED] VIC 107
[00:19:43] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:19:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:19:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:19:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:19:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:19:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:19:43] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:19:43] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:19:43] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[00:19:43] [PASSED] Automatic
[00:19:43] [PASSED] Full
[00:19:43] [PASSED] Limited 16:235
[00:19:43] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:19:43] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:19:43] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:19:43] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:19:43] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[00:19:43] [PASSED] RGB
[00:19:43] [PASSED] YUV 4:2:0
[00:19:43] [PASSED] YUV 4:2:2
[00:19:43] [PASSED] YUV 4:4:4
[00:19:43] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:19:43] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:19:43] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:19:43] ============= drm_damage_helper (21 subtests) ==============
[00:19:43] [PASSED] drm_test_damage_iter_no_damage
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:19:43] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:19:43] [PASSED] drm_test_damage_iter_simple_damage
[00:19:43] [PASSED] drm_test_damage_iter_single_damage
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:19:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:19:43] [PASSED] drm_test_damage_iter_damage
[00:19:43] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:19:43] [PASSED] drm_test_damage_iter_damage_one_outside
[00:19:43] [PASSED] drm_test_damage_iter_damage_src_moved
[00:19:43] [PASSED] drm_test_damage_iter_damage_not_visible
[00:19:43] ================ [PASSED] drm_damage_helper ================
[00:19:43] ============== drm_dp_mst_helper (3 subtests) ==============
[00:19:43] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[00:19:43] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:19:43] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:19:43] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:19:43] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:19:43] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:19:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:19:43] ============== drm_test_dp_mst_calc_pbn_div  ===============
[00:19:43] [PASSED] Link rate 2000000 lane count 4
[00:19:43] [PASSED] Link rate 2000000 lane count 2
[00:19:43] [PASSED] Link rate 2000000 lane count 1
[00:19:43] [PASSED] Link rate 1350000 lane count 4
[00:19:43] [PASSED] Link rate 1350000 lane count 2
[00:19:43] [PASSED] Link rate 1350000 lane count 1
[00:19:43] [PASSED] Link rate 1000000 lane count 4
[00:19:43] [PASSED] Link rate 1000000 lane count 2
[00:19:43] [PASSED] Link rate 1000000 lane count 1
[00:19:43] [PASSED] Link rate 810000 lane count 4
[00:19:43] [PASSED] Link rate 810000 lane count 2
[00:19:43] [PASSED] Link rate 810000 lane count 1
[00:19:43] [PASSED] Link rate 540000 lane count 4
[00:19:43] [PASSED] Link rate 540000 lane count 2
[00:19:43] [PASSED] Link rate 540000 lane count 1
[00:19:43] [PASSED] Link rate 270000 lane count 4
[00:19:43] [PASSED] Link rate 270000 lane count 2
[00:19:43] [PASSED] Link rate 270000 lane count 1
[00:19:43] [PASSED] Link rate 162000 lane count 4
[00:19:43] [PASSED] Link rate 162000 lane count 2
[00:19:43] [PASSED] Link rate 162000 lane count 1
[00:19:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:19:43] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[00:19:43] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:19:43] [PASSED] DP_POWER_UP_PHY with port number
[00:19:43] [PASSED] DP_POWER_DOWN_PHY with port number
[00:19:43] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:19:43] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:19:43] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:19:43] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:19:43] [PASSED] DP_QUERY_PAYLOAD with port number
[00:19:43] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:19:43] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:19:43] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:19:43] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:19:43] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:19:43] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:19:43] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:19:43] [PASSED] DP_REMOTE_I2C_READ with port number
[00:19:43] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:19:43] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:19:43] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:19:43] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:19:43] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:19:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:19:43] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:19:43] ================ [PASSED] drm_dp_mst_helper ================
[00:19:43] ================== drm_exec (7 subtests) ===================
[00:19:43] [PASSED] sanitycheck
[00:19:43] [PASSED] test_lock
[00:19:43] [PASSED] test_lock_unlock
[00:19:43] [PASSED] test_duplicates
[00:19:43] [PASSED] test_prepare
[00:19:43] [PASSED] test_prepare_array
[00:19:43] [PASSED] test_multiple_loops
[00:19:43] ==================== [PASSED] drm_exec =====================
[00:19:43] =========== drm_format_helper_test (18 subtests) ===========
[00:19:43] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:19:43] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:19:43] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:19:43] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:19:43] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:19:43] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:19:43] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:19:43] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[00:19:43] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:19:43] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:19:43] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:19:43] ============== drm_test_fb_xrgb8888_to_mono  ===============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:19:43] ==================== drm_test_fb_swab  =====================
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ================ [PASSED] drm_test_fb_swab =================
[00:19:43] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:19:43] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[00:19:43] [PASSED] single_pixel_source_buffer
[00:19:43] [PASSED] single_pixel_clip_rectangle
[00:19:43] [PASSED] well_known_colors
[00:19:43] [PASSED] destination_pitch
[00:19:43] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:19:43] ================= drm_test_fb_clip_offset  =================
[00:19:43] [PASSED] pass through
[00:19:43] [PASSED] horizontal offset
[00:19:43] [PASSED] vertical offset
[00:19:43] [PASSED] horizontal and vertical offset
[00:19:43] [PASSED] horizontal offset (custom pitch)
[00:19:43] [PASSED] vertical offset (custom pitch)
[00:19:43] [PASSED] horizontal and vertical offset (custom pitch)
[00:19:43] ============= [PASSED] drm_test_fb_clip_offset =============
[00:19:43] ============== drm_test_fb_build_fourcc_list  ==============
[00:19:43] [PASSED] no native formats
[00:19:43] [PASSED] XRGB8888 as native format
[00:19:43] [PASSED] remove duplicates
[00:19:43] [PASSED] convert alpha formats
[00:19:43] [PASSED] random formats
[00:19:43] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[00:19:43] =================== drm_test_fb_memcpy  ====================
[00:19:43] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:19:43] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:19:43] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:19:43] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:19:43] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:19:43] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:19:43] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:19:43] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:19:43] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:19:43] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:19:43] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:19:43] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:19:43] =============== [PASSED] drm_test_fb_memcpy ================
[00:19:43] ============= [PASSED] drm_format_helper_test ==============
[00:19:43] ================= drm_format (18 subtests) =================
[00:19:43] [PASSED] drm_test_format_block_width_invalid
[00:19:43] [PASSED] drm_test_format_block_width_one_plane
[00:19:43] [PASSED] drm_test_format_block_width_two_plane
[00:19:43] [PASSED] drm_test_format_block_width_three_plane
[00:19:43] [PASSED] drm_test_format_block_width_tiled
[00:19:43] [PASSED] drm_test_format_block_height_invalid
[00:19:43] [PASSED] drm_test_format_block_height_one_plane
[00:19:43] [PASSED] drm_test_format_block_height_two_plane
[00:19:43] [PASSED] drm_test_format_block_height_three_plane
[00:19:43] [PASSED] drm_test_format_block_height_tiled
[00:19:43] [PASSED] drm_test_format_min_pitch_invalid
[00:19:43] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:19:43] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:19:43] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:19:43] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:19:43] [PASSED] drm_test_format_min_pitch_two_plane
[00:19:43] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:19:43] [PASSED] drm_test_format_min_pitch_tiled
[00:19:43] =================== [PASSED] drm_format ====================
[00:19:43] ============== drm_framebuffer (10 subtests) ===============
[00:19:43] ========== drm_test_framebuffer_check_src_coords  ==========
[00:19:43] [PASSED] Success: source fits into fb
[00:19:43] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:19:43] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:19:43] [PASSED] Fail: overflowing fb with source width
[00:19:43] [PASSED] Fail: overflowing fb with source height
[00:19:43] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:19:43] [PASSED] drm_test_framebuffer_cleanup
[00:19:43] =============== drm_test_framebuffer_create  ===============
[00:19:43] [PASSED] ABGR8888 normal sizes
[00:19:43] [PASSED] ABGR8888 max sizes
[00:19:43] [PASSED] ABGR8888 pitch greater than min required
[00:19:43] [PASSED] ABGR8888 pitch less than min required
[00:19:43] [PASSED] ABGR8888 Invalid width
[00:19:43] [PASSED] ABGR8888 Invalid buffer handle
[00:19:43] [PASSED] No pixel format
[00:19:43] [PASSED] ABGR8888 Width 0
[00:19:43] [PASSED] ABGR8888 Height 0
[00:19:43] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:19:43] [PASSED] ABGR8888 Large buffer offset
[00:19:43] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:19:43] [PASSED] ABGR8888 Invalid flag
[00:19:43] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:19:43] [PASSED] ABGR8888 Valid buffer modifier
[00:19:43] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:19:43] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] NV12 Normal sizes
[00:19:43] [PASSED] NV12 Max sizes
[00:19:43] [PASSED] NV12 Invalid pitch
[00:19:43] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:19:43] [PASSED] NV12 different  modifier per-plane
[00:19:43] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:19:43] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] NV12 Modifier for inexistent plane
[00:19:43] [PASSED] NV12 Handle for inexistent plane
[00:19:43] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:19:43] [PASSED] YVU420 Normal sizes
[00:19:43] [PASSED] YVU420 Max sizes
[00:19:43] [PASSED] YVU420 Invalid pitch
[00:19:43] [PASSED] YVU420 Different pitches
[00:19:43] [PASSED] YVU420 Different buffer offsets/pitches
[00:19:43] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:19:43] [PASSED] YVU420 Valid modifier
[00:19:43] [PASSED] YVU420 Different modifiers per plane
[00:19:43] [PASSED] YVU420 Modifier for inexistent plane
[00:19:43] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:19:43] [PASSED] X0L2 Normal sizes
[00:19:43] [PASSED] X0L2 Max sizes
[00:19:43] [PASSED] X0L2 Invalid pitch
[00:19:43] [PASSED] X0L2 Pitch greater than minimum required
[00:19:43] [PASSED] X0L2 Handle for inexistent plane
[00:19:43] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:19:43] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:19:43] [PASSED] X0L2 Valid modifier
[00:19:43] [PASSED] X0L2 Modifier for inexistent plane
[00:19:43] =========== [PASSED] drm_test_framebuffer_create ===========
[00:19:43] [PASSED] drm_test_framebuffer_free
[00:19:43] [PASSED] drm_test_framebuffer_init
[00:19:43] [PASSED] drm_test_framebuffer_init_bad_format
[00:19:43] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:19:43] [PASSED] drm_test_framebuffer_lookup
[00:19:43] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:19:43] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:19:43] ================= [PASSED] drm_framebuffer =================
[00:19:43] ================ drm_gem_shmem (8 subtests) ================
[00:19:43] [PASSED] drm_gem_shmem_test_obj_create
[00:19:43] [PASSED] drm_gem_shmem_test_obj_create_private
[00:19:43] [PASSED] drm_gem_shmem_test_pin_pages
[00:19:43] [PASSED] drm_gem_shmem_test_vmap
[00:19:43] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:19:43] [PASSED] drm_gem_shmem_test_get_sg_table
[00:19:43] [PASSED] drm_gem_shmem_test_madvise
[00:19:43] [PASSED] drm_gem_shmem_test_purge
[00:19:43] ================== [PASSED] drm_gem_shmem ==================
[00:19:43] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:19:43] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[00:19:43] [PASSED] Automatic
[00:19:43] [PASSED] Full
[00:19:43] [PASSED] Limited 16:235
[00:19:43] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:19:43] [PASSED] drm_test_check_disable_connector
[00:19:43] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:19:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[00:19:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[00:19:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[00:19:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[00:19:43] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[00:19:43] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:19:43] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:19:43] [PASSED] drm_test_check_output_bpc_dvi
[00:19:43] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:19:43] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:19:43] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:19:43] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:19:43] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:19:43] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:19:43] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:19:43] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:19:43] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:19:43] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:19:43] [PASSED] drm_test_check_broadcast_rgb_value
[00:19:43] [PASSED] drm_test_check_bpc_8_value
[00:19:43] [PASSED] drm_test_check_bpc_10_value
[00:19:43] [PASSED] drm_test_check_bpc_12_value
[00:19:43] [PASSED] drm_test_check_format_value
[00:19:43] [PASSED] drm_test_check_tmds_char_value
[00:19:43] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:19:43] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:19:43] [PASSED] drm_test_check_mode_valid
[00:19:43] [PASSED] drm_test_check_mode_valid_reject
[00:19:43] [PASSED] drm_test_check_mode_valid_reject_rate
[00:19:43] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:19:43] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:19:43] ================= drm_managed (2 subtests) =================
[00:19:43] [PASSED] drm_test_managed_release_action
[00:19:43] [PASSED] drm_test_managed_run_action
[00:19:43] =================== [PASSED] drm_managed ===================
[00:19:43] =================== drm_mm (6 subtests) ====================
[00:19:43] [PASSED] drm_test_mm_init
[00:19:43] [PASSED] drm_test_mm_debug
[00:19:43] [PASSED] drm_test_mm_align32
[00:19:43] [PASSED] drm_test_mm_align64
[00:19:43] [PASSED] drm_test_mm_lowest
[00:19:43] [PASSED] drm_test_mm_highest
[00:19:43] ===================== [PASSED] drm_mm ======================
[00:19:43] ============= drm_modes_analog_tv (5 subtests) =============
[00:19:43] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:19:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:19:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:19:43] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:19:43] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:19:43] =============== [PASSED] drm_modes_analog_tv ===============
[00:19:43] ============== drm_plane_helper (2 subtests) ===============
[00:19:43] =============== drm_test_check_plane_state  ================
[00:19:43] [PASSED] clipping_simple
[00:19:43] [PASSED] clipping_rotate_reflect
[00:19:43] [PASSED] positioning_simple
[00:19:43] [PASSED] upscaling
[00:19:43] [PASSED] downscaling
[00:19:43] [PASSED] rounding1
[00:19:43] [PASSED] rounding2
[00:19:43] [PASSED] rounding3
[00:19:43] [PASSED] rounding4
[00:19:43] =========== [PASSED] drm_test_check_plane_state ============
[00:19:43] =========== drm_test_check_invalid_plane_state  ============
[00:19:43] [PASSED] positioning_invalid
[00:19:43] [PASSED] upscaling_invalid
[00:19:43] [PASSED] downscaling_invalid
[00:19:43] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:19:43] ================ [PASSED] drm_plane_helper =================
[00:19:43] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:19:43] ====== drm_test_connector_helper_tv_get_modes_check  =======
[00:19:43] [PASSED] None
[00:19:43] [PASSED] PAL
[00:19:43] [PASSED] NTSC
[00:19:43] [PASSED] Both, NTSC Default
[00:19:43] [PASSED] Both, PAL Default
[00:19:43] [PASSED] Both, NTSC Default, with PAL on command-line
[00:19:43] [PASSED] Both, PAL Default, with NTSC on command-line
[00:19:43] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:19:43] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:19:43] ================== drm_rect (9 subtests) ===================
[00:19:43] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:19:43] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:19:43] [PASSED] drm_test_rect_clip_scaled_clipped
[00:19:43] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:19:43] ================= drm_test_rect_intersect  =================
[00:19:43] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:19:43] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:19:43] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:19:43] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:19:43] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:19:43] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:19:43] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:19:43] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:19:43] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:19:43] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:19:43] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:19:43] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:19:43] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:19:43] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:19:43] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[00:19:43] ============= [PASSED] drm_test_rect_intersect =============
[00:19:43] ================ drm_test_rect_calc_hscale  ================
[00:19:43] [PASSED] normal use
[00:19:43] [PASSED] out of max range
[00:19:43] [PASSED] out of min range
[00:19:43] [PASSED] zero dst
[00:19:43] [PASSED] negative src
[00:19:43] [PASSED] negative dst
[00:19:43] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:19:43] ================ drm_test_rect_calc_vscale  ================
[00:19:43] [PASSED] normal use
[00:19:43] [PASSED] out of max range
[00:19:43] [PASSED] out of min range
[00:19:43] [PASSED] zero dst
[00:19:43] [PASSED] negative src
[00:19:43] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[00:19:43] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:19:43] ================== drm_test_rect_rotate  ===================
[00:19:43] [PASSED] reflect-x
[00:19:43] [PASSED] reflect-y
[00:19:43] [PASSED] rotate-0
[00:19:43] [PASSED] rotate-90
[00:19:43] [PASSED] rotate-180
[00:19:43] [PASSED] rotate-270
[00:19:43] ============== [PASSED] drm_test_rect_rotate ===============
[00:19:43] ================ drm_test_rect_rotate_inv  =================
[00:19:43] [PASSED] reflect-x
[00:19:43] [PASSED] reflect-y
[00:19:43] [PASSED] rotate-0
[00:19:43] [PASSED] rotate-90
[00:19:43] [PASSED] rotate-180
[00:19:43] [PASSED] rotate-270
[00:19:43] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:19:43] ==================== [PASSED] drm_rect =====================
[00:19:43] ============================================================
[00:19:43] Testing complete. Ran 616 tests: passed: 616
[00:19:43] Elapsed time: 23.651s total, 1.601s configuring, 21.884s building, 0.149s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:19:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:19:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:19:53] Starting KUnit Kernel (1/1)...
[00:19:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:19:53] ================= ttm_device (5 subtests) ==================
[00:19:53] [PASSED] ttm_device_init_basic
[00:19:53] [PASSED] ttm_device_init_multiple
[00:19:53] [PASSED] ttm_device_fini_basic
[00:19:53] [PASSED] ttm_device_init_no_vma_man
[00:19:53] ================== ttm_device_init_pools  ==================
[00:19:53] [PASSED] No DMA allocations, no DMA32 required
[00:19:53] [PASSED] DMA allocations, DMA32 required
[00:19:53] [PASSED] No DMA allocations, DMA32 required
[00:19:53] [PASSED] DMA allocations, no DMA32 required
[00:19:53] ============== [PASSED] ttm_device_init_pools ==============
[00:19:53] =================== [PASSED] ttm_device ====================
[00:19:53] ================== ttm_pool (8 subtests) ===================
[00:19:53] ================== ttm_pool_alloc_basic  ===================
[00:19:53] [PASSED] One page
[00:19:53] [PASSED] More than one page
[00:19:53] [PASSED] Above the allocation limit
[00:19:53] [PASSED] One page, with coherent DMA mappings enabled
[00:19:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:19:53] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:19:53] ============== ttm_pool_alloc_basic_dma_addr  ==============
[00:19:53] [PASSED] One page
[00:19:53] [PASSED] More than one page
[00:19:53] [PASSED] Above the allocation limit
[00:19:53] [PASSED] One page, with coherent DMA mappings enabled
[00:19:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:19:53] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:19:53] [PASSED] ttm_pool_alloc_order_caching_match
[00:19:53] [PASSED] ttm_pool_alloc_caching_mismatch
[00:19:53] [PASSED] ttm_pool_alloc_order_mismatch
[00:19:53] [PASSED] ttm_pool_free_dma_alloc
[00:19:53] [PASSED] ttm_pool_free_no_dma_alloc
[00:19:53] [PASSED] ttm_pool_fini_basic
[00:19:53] ==================== [PASSED] ttm_pool =====================
[00:19:53] ================ ttm_resource (8 subtests) =================
[00:19:53] ================= ttm_resource_init_basic  =================
[00:19:53] [PASSED] Init resource in TTM_PL_SYSTEM
[00:19:53] [PASSED] Init resource in TTM_PL_VRAM
[00:19:53] [PASSED] Init resource in a private placement
[00:19:53] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:19:53] ============= [PASSED] ttm_resource_init_basic =============
[00:19:53] [PASSED] ttm_resource_init_pinned
[00:19:53] [PASSED] ttm_resource_fini_basic
[00:19:53] [PASSED] ttm_resource_manager_init_basic
[00:19:53] [PASSED] ttm_resource_manager_usage_basic
[00:19:53] [PASSED] ttm_resource_manager_set_used_basic
[00:19:53] [PASSED] ttm_sys_man_alloc_basic
[00:19:53] [PASSED] ttm_sys_man_free_basic
[00:19:53] ================== [PASSED] ttm_resource ===================
[00:19:53] =================== ttm_tt (15 subtests) ===================
[00:19:53] ==================== ttm_tt_init_basic  ====================
[00:19:53] [PASSED] Page-aligned size
[00:19:53] [PASSED] Extra pages requested
[00:19:53] ================ [PASSED] ttm_tt_init_basic ================
[00:19:53] [PASSED] ttm_tt_init_misaligned
[00:19:53] [PASSED] ttm_tt_fini_basic
[00:19:53] [PASSED] ttm_tt_fini_sg
[00:19:53] [PASSED] ttm_tt_fini_shmem
[00:19:53] [PASSED] ttm_tt_create_basic
[00:19:53] [PASSED] ttm_tt_create_invalid_bo_type
[00:19:53] [PASSED] ttm_tt_create_ttm_exists
[00:19:53] [PASSED] ttm_tt_create_failed
[00:19:53] [PASSED] ttm_tt_destroy_basic
[00:19:53] [PASSED] ttm_tt_populate_null_ttm
[00:19:53] [PASSED] ttm_tt_populate_populated_ttm
[00:19:53] [PASSED] ttm_tt_unpopulate_basic
[00:19:53] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:19:53] [PASSED] ttm_tt_swapin_basic
[00:19:53] ===================== [PASSED] ttm_tt ======================
[00:19:53] =================== ttm_bo (14 subtests) ===================
[00:19:53] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[00:19:53] [PASSED] Cannot be interrupted and sleeps
[00:19:53] [PASSED] Cannot be interrupted, locks straight away
[00:19:53] [PASSED] Can be interrupted, sleeps
[00:19:53] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:19:53] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:19:53] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:19:53] [PASSED] ttm_bo_reserve_double_resv
[00:19:53] [PASSED] ttm_bo_reserve_interrupted
[00:19:53] [PASSED] ttm_bo_reserve_deadlock
[00:19:53] [PASSED] ttm_bo_unreserve_basic
[00:19:53] [PASSED] ttm_bo_unreserve_pinned
[00:19:53] [PASSED] ttm_bo_unreserve_bulk
[00:19:53] [PASSED] ttm_bo_put_basic
[00:19:53] [PASSED] ttm_bo_put_shared_resv
[00:19:53] [PASSED] ttm_bo_pin_basic
[00:19:53] [PASSED] ttm_bo_pin_unpin_resource
[00:19:53] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:19:53] ===================== [PASSED] ttm_bo ======================
[00:19:53] ============== ttm_bo_validate (22 subtests) ===============
[00:19:53] ============== ttm_bo_init_reserved_sys_man  ===============
[00:19:53] [PASSED] Buffer object for userspace
[00:19:53] [PASSED] Kernel buffer object
[00:19:53] [PASSED] Shared buffer object
[00:19:53] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:19:53] ============== ttm_bo_init_reserved_mock_man  ==============
[00:19:53] [PASSED] Buffer object for userspace
[00:19:53] [PASSED] Kernel buffer object
[00:19:53] [PASSED] Shared buffer object
[00:19:53] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:19:53] [PASSED] ttm_bo_init_reserved_resv
[00:19:53] ================== ttm_bo_validate_basic  ==================
[00:19:53] [PASSED] Buffer object for userspace
[00:19:53] [PASSED] Kernel buffer object
[00:19:53] [PASSED] Shared buffer object
[00:19:53] ============== [PASSED] ttm_bo_validate_basic ==============
[00:19:53] [PASSED] ttm_bo_validate_invalid_placement
[00:19:53] ============= ttm_bo_validate_same_placement  ==============
[00:19:53] [PASSED] System manager
[00:19:53] [PASSED] VRAM manager
[00:19:53] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:19:53] [PASSED] ttm_bo_validate_failed_alloc
[00:19:53] [PASSED] ttm_bo_validate_pinned
[00:19:53] [PASSED] ttm_bo_validate_busy_placement
[00:19:53] ================ ttm_bo_validate_multihop  =================
[00:19:53] [PASSED] Buffer object for userspace
[00:19:53] [PASSED] Kernel buffer object
[00:19:53] [PASSED] Shared buffer object
[00:19:53] ============ [PASSED] ttm_bo_validate_multihop =============
[00:19:53] ========== ttm_bo_validate_no_placement_signaled  ==========
[00:19:53] [PASSED] Buffer object in system domain, no page vector
[00:19:53] [PASSED] Buffer object in system domain with an existing page vector
[00:19:53] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:19:53] ======== ttm_bo_validate_no_placement_not_signaled  ========
[00:19:53] [PASSED] Buffer object for userspace
[00:19:53] [PASSED] Kernel buffer object
[00:19:53] [PASSED] Shared buffer object
[00:19:53] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:19:53] [PASSED] ttm_bo_validate_move_fence_signaled
[00:19:53] ========= ttm_bo_validate_move_fence_not_signaled  =========
[00:19:53] [PASSED] Waits for GPU
[00:19:53] [PASSED] Tries to lock straight away
[00:19:53] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:19:53] [PASSED] ttm_bo_validate_swapout
[00:19:53] [PASSED] ttm_bo_validate_happy_evict
[00:19:53] [PASSED] ttm_bo_validate_all_pinned_evict
[00:19:53] [PASSED] ttm_bo_validate_allowed_only_evict
[00:19:53] [PASSED] ttm_bo_validate_deleted_evict
[00:19:53] [PASSED] ttm_bo_validate_busy_domain_evict
[00:19:53] [PASSED] ttm_bo_validate_evict_gutting
[00:19:53] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:19:53] ================= [PASSED] ttm_bo_validate =================
[00:19:53] ============================================================
[00:19:53] Testing complete. Ran 102 tests: passed: 102
[00:19:53] Elapsed time: 10.121s total, 1.647s configuring, 7.856s building, 0.528s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Xe.CI.BAT: success for drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
                   ` (2 preceding siblings ...)
  2025-06-14  0:19 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-14  0:56 ` Patchwork
  2025-06-16  1:36 ` ✓ Xe.CI.Full: " Patchwork
  2025-07-01  7:40 ` [PATCH] " Christian König
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-14  0:56 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 974 bytes --]

== Series Details ==

Series: drm/sched: Increment job count before swapping tail spsc queue
URL   : https://patchwork.freedesktop.org/series/150259/
State : success

== Summary ==

CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_BAT -> xe-pw-150259v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150259v1

  IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
  xe-pw-150259v1: 150259v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/index.html

[-- Attachment #2: Type: text/html, Size: 1522 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Xe.CI.Full: success for drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
                   ` (3 preceding siblings ...)
  2025-06-14  0:56 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-16  1:36 ` Patchwork
  2025-07-01  7:40 ` [PATCH] " Christian König
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-06-16  1:36 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 45599 bytes --]

== Series Details ==

Series: drm/sched: Increment job count before swapping tail spsc queue
URL   : https://patchwork.freedesktop.org/series/150259/
State : success

== Summary ==

CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150259v1_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-150259v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][2] ([Intel XE#316]) +1 other test skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-adlp:         [PASS][3] -> [DMESG-FAIL][4] ([Intel XE#4543])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#610])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#1124])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][8] -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#2191]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2887]) +4 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#787]) +27 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#2907])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#3432])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][18] -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2724])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2325])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][24] ([Intel XE#306])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2252]) +3 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
    - shard-dg2-set2:     NOTRUN -> [SKIP][26] ([Intel XE#373])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html

  * igt@kms_content_protection@srm@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][27] ([Intel XE#1178])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     NOTRUN -> [FAIL][28] ([Intel XE#1188]) +1 other test fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-433/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2320]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2321])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][31] -> [SKIP][32] ([Intel XE#2291]) +1 other test skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#323])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2286])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@torture-move:
    - shard-dg2-set2:     [PASS][35] -> [INCOMPLETE][36] ([Intel XE#3226]) +1 other test incomplete
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_cursor_legacy@torture-move.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_cursor_legacy@torture-move.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#4156])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][38] -> [FAIL][39] ([Intel XE#886]) +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-hdmi-a6-dp4.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][40] -> [FAIL][41] ([Intel XE#301] / [Intel XE#3321])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +5 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-lnl:          [PASS][44] -> [FAIL][45] ([Intel XE#886]) +2 other tests fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
    - shard-dg2-set2:     [PASS][46] -> [FAIL][47] ([Intel XE#301]) +9 other tests fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][48] -> [INCOMPLETE][49] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
    - shard-dg2-set2:     [PASS][50] -> [INCOMPLETE][51] ([Intel XE#2049] / [Intel XE#2597])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
    - shard-adlp:         [PASS][52] -> [DMESG-WARN][53] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][54] ([Intel XE#2882]) +2 other tests fail
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-dp2.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2293]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4141]) +5 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2311]) +7 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#651]) +10 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
    - shard-dg2-set2:     NOTRUN -> [SKIP][60] ([Intel XE#653]) +9 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html

  * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2313]) +10 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][62] ([Intel XE#455]) +5 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [PASS][63] -> [SKIP][64] ([Intel XE#1503])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#2925]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#3012])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2927])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#5021])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_pm_dc@dc5-retention-flops:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#3309])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#3309])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1489]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][73] ([Intel XE#1489])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1122])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#2414])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][78] ([Intel XE#1127])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1435])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][81] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_eudebug@basic-vm-bind:
    - shard-bmg:          NOTRUN -> [SKIP][82] ([Intel XE#4837]) +1 other test skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@xe_eudebug@basic-vm-bind.html

  * igt@xe_eudebug@basic-vm-bind-extended-discovery:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#4837]) +4 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-extended-discovery.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2322]) +3 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html

  * igt@xe_exec_fault_mode@twice-invalid-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][85] ([Intel XE#288]) +7 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-invalid-fault.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-eocheck:
    - shard-dg2-set2:     NOTRUN -> [SKIP][86] ([Intel XE#4915]) +90 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#4943]) +6 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
    - shard-lnl:          [PASS][88] -> [FAIL][89] ([Intel XE#5018])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html

  * igt@xe_oa@polling-small-buf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][90] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@xe_oa@polling-small-buf.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][91] ([Intel XE#2284] / [Intel XE#366])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-adlp:         [PASS][92] -> [ABORT][93] ([Intel XE#1794])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pm@s4-multiple-execs.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-adlp:         NOTRUN -> [FAIL][94] ([Intel XE#5219])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-9/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-adlp:         NOTRUN -> [ABORT][95] ([Intel XE#5214])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pmu@gt-frequency:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][96] ([Intel XE#5214]) +1 other test incomplete
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-1/igt@xe_pmu@gt-frequency.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#4733]) +2 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][98] ([Intel XE#4733]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#3342]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Possible fixes ####

  * igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][100] ([Intel XE#4543]) -> [PASS][101] +1 other test pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-2/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][102] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][104] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][105] +1 other test pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [INCOMPLETE][106] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][107] +1 other test pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][108] ([Intel XE#2291]) -> [PASS][109] +3 other tests pass
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [FAIL][110] ([Intel XE#2882]) -> [PASS][111] +1 other test pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][112] ([Intel XE#2316]) -> [PASS][113] +8 other tests pass
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@d-dp4:
    - shard-dg2-set2:     [FAIL][114] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6:
    - shard-dg2-set2:     [FAIL][116] ([Intel XE#301]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a6.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [SKIP][118] ([Intel XE#1503]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_hdr@static-toggle.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_hdr@static-toggle.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][120] ([Intel XE#1435]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [SKIP][122] ([Intel XE#1499]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_vrr@negative-basic.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-3/igt@kms_vrr@negative-basic.html

  * {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}:
    - shard-bmg:          [ABORT][124] ([Intel XE#3970]) -> [PASS][125] +1 other test pass
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

  * igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
    - shard-bmg:          [FAIL][126] -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate:
    - shard-dg2-set2:     [INCOMPLETE][128] -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-436/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html

  * igt@xe_pm@s2idle-basic:
    - shard-adlp:         [DMESG-WARN][130] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-8/igt@xe_pm@s2idle-basic.html

  * igt@xe_pm@s3-vm-bind-userptr:
    - shard-bmg:          [INCOMPLETE][132] ([Intel XE#569]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][134] ([Intel XE#4835]) -> [PASS][135] +1 other test pass
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-dg2-464/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_content_protection@lic-type-0:
    - shard-bmg:          [FAIL][136] ([Intel XE#1178]) -> [SKIP][137] ([Intel XE#2341]) +1 other test skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_content_protection@lic-type-0.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [SKIP][138] ([Intel XE#2341]) -> [FAIL][139] ([Intel XE#1178])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_content_protection@srm.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-7/igt@kms_content_protection@srm.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#2312]) +8 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +14 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][144] ([Intel XE#4141]) -> [SKIP][145] ([Intel XE#2312]) +4 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][146] ([Intel XE#2312]) -> [SKIP][147] ([Intel XE#4141]) +7 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][148] ([Intel XE#2313]) -> [SKIP][149] ([Intel XE#2312]) +6 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#2313]) +11 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][152] ([Intel XE#5018]) -> [FAIL][153] ([Intel XE#4937] / [Intel XE#5018])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  * igt@xe_pmu@engine-activity-all-load-idle:
    - shard-adlp:         [DMESG-WARN][154] ([Intel XE#5214]) -> [ABORT][155] ([Intel XE#5214]) +4 other tests abort
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/shard-adlp-2/igt@xe_pmu@engine-activity-all-load-idle.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [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#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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [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#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
  [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#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#5219]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5219
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929


Build changes
-------------

  * Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150259v1

  IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
  xe-pw-150259v1: 150259v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150259v1/index.html

[-- Attachment #2: Type: text/html, Size: 52474 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/sched: Increment job count before swapping tail spsc queue
  2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
                   ` (4 preceding siblings ...)
  2025-06-16  1:36 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-07-01  7:40 ` Christian König
  2025-07-01 23:19   ` Matthew Brost
  5 siblings, 1 reply; 8+ messages in thread
From: Christian König @ 2025-07-01  7:40 UTC (permalink / raw)
  To: Matthew Brost, intel-xe, dri-devel; +Cc: dakr, pstanner

On 13.06.25 23:20, Matthew Brost wrote:
> A small race exists between spsc_queue_push and the run-job worker, in
> which spsc_queue_push may return not-first while the run-job worker has
> already idled due to the job count being zero. If this race occurs, job
> scheduling stops, leading to hangs while waiting on the job’s DMA
> fences.
> 
> Seal this race by incrementing the job count before appending to the
> SPSC queue.
> 
> This race was observed on a drm-tip 6.16-rc1 build with the Xe driver in
> an SVM test case.
> 
> Fixes: 1b1f42d8fde4 ("drm: move amd_gpu_scheduler into common location")
> Fixes: 27105db6c63a ("drm/amdgpu: Add SPSC queue to scheduler.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>

Sorry for the late response, if it isn't already pushed to drm-misc-fixes then feel free to add Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>  include/drm/spsc_queue.h | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/include/drm/spsc_queue.h b/include/drm/spsc_queue.h
> index 125f096c88cb..ee9df8cc67b7 100644
> --- a/include/drm/spsc_queue.h
> +++ b/include/drm/spsc_queue.h
> @@ -70,9 +70,11 @@ static inline bool spsc_queue_push(struct spsc_queue *queue, struct spsc_node *n
>  
>  	preempt_disable();
>  
> +	atomic_inc(&queue->job_count);
> +	smp_mb__after_atomic();
> +
>  	tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next);
>  	WRITE_ONCE(*tail, node);
> -	atomic_inc(&queue->job_count);
>  
>  	/*
>  	 * In case of first element verify new node will be visible to the consumer


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/sched: Increment job count before swapping tail spsc queue
  2025-07-01  7:40 ` [PATCH] " Christian König
@ 2025-07-01 23:19   ` Matthew Brost
  0 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-07-01 23:19 UTC (permalink / raw)
  To: Christian König; +Cc: intel-xe, dri-devel, dakr, pstanner

On Tue, Jul 01, 2025 at 09:40:05AM +0200, Christian König wrote:
> On 13.06.25 23:20, Matthew Brost wrote:
> > A small race exists between spsc_queue_push and the run-job worker, in
> > which spsc_queue_push may return not-first while the run-job worker has
> > already idled due to the job count being zero. If this race occurs, job
> > scheduling stops, leading to hangs while waiting on the job’s DMA
> > fences.
> > 
> > Seal this race by incrementing the job count before appending to the
> > SPSC queue.
> > 
> > This race was observed on a drm-tip 6.16-rc1 build with the Xe driver in
> > an SVM test case.
> > 
> > Fixes: 1b1f42d8fde4 ("drm: move amd_gpu_scheduler into common location")
> > Fixes: 27105db6c63a ("drm/amdgpu: Add SPSC queue to scheduler.")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> 
> Sorry for the late response, if it isn't already pushed to drm-misc-fixes then feel free to add Reviewed-by: Christian König <christian.koenig@amd.com>
> 

Thanks. Just pushed to drm-misc-fixes.

Matt

> > ---
> >  include/drm/spsc_queue.h | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/include/drm/spsc_queue.h b/include/drm/spsc_queue.h
> > index 125f096c88cb..ee9df8cc67b7 100644
> > --- a/include/drm/spsc_queue.h
> > +++ b/include/drm/spsc_queue.h
> > @@ -70,9 +70,11 @@ static inline bool spsc_queue_push(struct spsc_queue *queue, struct spsc_node *n
> >  
> >  	preempt_disable();
> >  
> > +	atomic_inc(&queue->job_count);
> > +	smp_mb__after_atomic();
> > +
> >  	tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next);
> >  	WRITE_ONCE(*tail, node);
> > -	atomic_inc(&queue->job_count);
> >  
> >  	/*
> >  	 * In case of first element verify new node will be visible to the consumer
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-07-01 23:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-13 21:20 [PATCH] drm/sched: Increment job count before swapping tail spsc queue Matthew Brost
2025-06-13 22:03 ` Cavitt, Jonathan
2025-06-14  0:18 ` ✗ CI.checkpatch: warning for " Patchwork
2025-06-14  0:19 ` ✓ CI.KUnit: success " Patchwork
2025-06-14  0:56 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-16  1:36 ` ✓ Xe.CI.Full: " Patchwork
2025-07-01  7:40 ` [PATCH] " Christian König
2025-07-01 23:19   ` Matthew Brost

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox