Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined()
@ 2025-11-27 17:06 Nitin Gote
  2025-12-01 11:50 ` Upadhyay, Tejas
  0 siblings, 1 reply; 12+ messages in thread
From: Nitin Gote @ 2025-11-27 17:06 UTC (permalink / raw)
  To: intel-xe; +Cc: piotr.piorkowski, Nitin Gote

Prefer IS_ENABLED() instead of defined() for checking whether
a kconfig option is enabled.

Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
 drivers/gpu/drm/xe/xe_vram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_vram.c b/drivers/gpu/drm/xe/xe_vram.c
index 0a645e76e5fa..8fac1cc08dc9 100644
--- a/drivers/gpu/drm/xe/xe_vram.c
+++ b/drivers/gpu/drm/xe/xe_vram.c
@@ -325,7 +325,7 @@ struct xe_vram_region *xe_vram_region_alloc(struct xe_device *xe, u8 id, u32 pla
 	vram->xe = xe;
 	vram->id = id;
 	vram->placement = placement;
-#if defined(CONFIG_DRM_XE_PAGEMAP)
+#if IS_ENABLED(CONFIG_DRM_XE_PAGEMAP)
 	vram->migrate = xe->tiles[id].migrate;
 #endif
 	return vram;
-- 
2.50.1


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

* RE: [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined()
  2025-11-27 17:06 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
@ 2025-12-01 11:50 ` Upadhyay, Tejas
  2025-12-01 13:55   ` Jani Nikula
  0 siblings, 1 reply; 12+ messages in thread
From: Upadhyay, Tejas @ 2025-12-01 11:50 UTC (permalink / raw)
  To: Gote, Nitin R, intel-xe@lists.freedesktop.org
  Cc: Piorkowski, Piotr, Gote, Nitin R



> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Nitin
> Gote
> Sent: 27 November 2025 22:37
> To: intel-xe@lists.freedesktop.org
> Cc: Piorkowski, Piotr <piotr.piorkowski@intel.com>; Gote, Nitin R
> <nitin.r.gote@intel.com>
> Subject: [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of
> defined()
> 
> Prefer IS_ENABLED() instead of defined() for checking whether a kconfig
> option is enabled.

Add little info why

Tejas
> 
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_vram.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vram.c b/drivers/gpu/drm/xe/xe_vram.c
> index 0a645e76e5fa..8fac1cc08dc9 100644
> --- a/drivers/gpu/drm/xe/xe_vram.c
> +++ b/drivers/gpu/drm/xe/xe_vram.c
> @@ -325,7 +325,7 @@ struct xe_vram_region *xe_vram_region_alloc(struct
> xe_device *xe, u8 id, u32 pla
>  	vram->xe = xe;
>  	vram->id = id;
>  	vram->placement = placement;
> -#if defined(CONFIG_DRM_XE_PAGEMAP)
> +#if IS_ENABLED(CONFIG_DRM_XE_PAGEMAP)
>  	vram->migrate = xe->tiles[id].migrate;  #endif
>  	return vram;
> --
> 2.50.1


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

* RE: [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined()
  2025-12-01 11:50 ` Upadhyay, Tejas
@ 2025-12-01 13:55   ` Jani Nikula
  0 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2025-12-01 13:55 UTC (permalink / raw)
  To: Upadhyay, Tejas, Gote, Nitin R, intel-xe@lists.freedesktop.org
  Cc: Piorkowski, Piotr, Gote, Nitin R

On Mon, 01 Dec 2025, "Upadhyay, Tejas" <tejas.upadhyay@intel.com> wrote:
>> -----Original Message-----
>> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Nitin
>> Gote
>> Sent: 27 November 2025 22:37
>> To: intel-xe@lists.freedesktop.org
>> Cc: Piorkowski, Piotr <piotr.piorkowski@intel.com>; Gote, Nitin R
>> <nitin.r.gote@intel.com>
>> Subject: [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of
>> defined()
>> 
>> Prefer IS_ENABLED() instead of defined() for checking whether a kconfig
>> option is enabled.
>
> Add little info why

That's just what you're supposed to do. ;)

BR,
Jani.



>
> Tejas
>> 
>> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
>> ---
>>  drivers/gpu/drm/xe/xe_vram.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/drivers/gpu/drm/xe/xe_vram.c b/drivers/gpu/drm/xe/xe_vram.c
>> index 0a645e76e5fa..8fac1cc08dc9 100644
>> --- a/drivers/gpu/drm/xe/xe_vram.c
>> +++ b/drivers/gpu/drm/xe/xe_vram.c
>> @@ -325,7 +325,7 @@ struct xe_vram_region *xe_vram_region_alloc(struct
>> xe_device *xe, u8 id, u32 pla
>>  	vram->xe = xe;
>>  	vram->id = id;
>>  	vram->placement = placement;
>> -#if defined(CONFIG_DRM_XE_PAGEMAP)
>> +#if IS_ENABLED(CONFIG_DRM_XE_PAGEMAP)
>>  	vram->migrate = xe->tiles[id].migrate;  #endif
>>  	return vram;
>> --
>> 2.50.1
>

-- 
Jani Nikula, Intel

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

* [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined()
@ 2025-12-02  7:02 Nitin Gote
  2025-12-02  7:41 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2) Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Nitin Gote @ 2025-12-02  7:02 UTC (permalink / raw)
  To: tejas.upadhyay, intel-xe, jani.nikula; +Cc: piotr.piorkowski, Nitin Gote

Prefer IS_ENABLED() instead of defined() for checking whether
a kconfig option is enabled. IS_ENABLED() evaluates both built-in (=y)
and modular (=m) configurations at compile time, while defined() only
tests symbol presence at preprocessing and can’t distinguish between
built-in, module, or unset states.

This is purely cosmetic – no functional changes.

CC: Piotr Piórkowski <piotr.piorkowski@intel.com>
Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
---
 drivers/gpu/drm/xe/xe_vram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_vram.c b/drivers/gpu/drm/xe/xe_vram.c
index 0a645e76e5fa..8fac1cc08dc9 100644
--- a/drivers/gpu/drm/xe/xe_vram.c
+++ b/drivers/gpu/drm/xe/xe_vram.c
@@ -325,7 +325,7 @@ struct xe_vram_region *xe_vram_region_alloc(struct xe_device *xe, u8 id, u32 pla
 	vram->xe = xe;
 	vram->id = id;
 	vram->placement = placement;
-#if defined(CONFIG_DRM_XE_PAGEMAP)
+#if IS_ENABLED(CONFIG_DRM_XE_PAGEMAP)
 	vram->migrate = xe->tiles[id].migrate;
 #endif
 	return vram;
-- 
2.50.1


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

* ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
@ 2025-12-02  7:41 ` Patchwork
  2025-12-02  8:15 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-12-02  7:41 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
URL   : https://patchwork.freedesktop.org/series/158176/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:40:22] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:40:26] 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
[07:40:57] Starting KUnit Kernel (1/1)...
[07:40:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:40:57] ================== guc_buf (11 subtests) ===================
[07:40:57] [PASSED] test_smallest
[07:40:57] [PASSED] test_largest
[07:40:57] [PASSED] test_granular
[07:40:57] [PASSED] test_unique
[07:40:57] [PASSED] test_overlap
[07:40:57] [PASSED] test_reusable
[07:40:57] [PASSED] test_too_big
[07:40:57] [PASSED] test_flush
[07:40:57] [PASSED] test_lookup
[07:40:57] [PASSED] test_data
[07:40:57] [PASSED] test_class
[07:40:57] ===================== [PASSED] guc_buf =====================
[07:40:57] =================== guc_dbm (7 subtests) ===================
[07:40:57] [PASSED] test_empty
[07:40:57] [PASSED] test_default
[07:40:57] ======================== test_size  ========================
[07:40:57] [PASSED] 4
[07:40:57] [PASSED] 8
[07:40:57] [PASSED] 32
[07:40:57] [PASSED] 256
[07:40:57] ==================== [PASSED] test_size ====================
[07:40:57] ======================= test_reuse  ========================
[07:40:57] [PASSED] 4
[07:40:57] [PASSED] 8
[07:40:57] [PASSED] 32
[07:40:57] [PASSED] 256
[07:40:57] =================== [PASSED] test_reuse ====================
[07:40:57] =================== test_range_overlap  ====================
[07:40:57] [PASSED] 4
[07:40:57] [PASSED] 8
[07:40:57] [PASSED] 32
[07:40:57] [PASSED] 256
[07:40:57] =============== [PASSED] test_range_overlap ================
[07:40:57] =================== test_range_compact  ====================
[07:40:57] [PASSED] 4
[07:40:57] [PASSED] 8
[07:40:57] [PASSED] 32
[07:40:57] [PASSED] 256
[07:40:57] =============== [PASSED] test_range_compact ================
[07:40:57] ==================== test_range_spare  =====================
[07:40:57] [PASSED] 4
[07:40:57] [PASSED] 8
[07:40:57] [PASSED] 32
[07:40:57] [PASSED] 256
[07:40:57] ================ [PASSED] test_range_spare =================
[07:40:57] ===================== [PASSED] guc_dbm =====================
[07:40:57] =================== guc_idm (6 subtests) ===================
[07:40:57] [PASSED] bad_init
[07:40:57] [PASSED] no_init
[07:40:57] [PASSED] init_fini
[07:40:57] [PASSED] check_used
[07:40:57] [PASSED] check_quota
[07:40:57] [PASSED] check_all
[07:40:57] ===================== [PASSED] guc_idm =====================
[07:40:57] ================== no_relay (3 subtests) ===================
[07:40:57] [PASSED] xe_drops_guc2pf_if_not_ready
[07:40:57] [PASSED] xe_drops_guc2vf_if_not_ready
[07:40:57] [PASSED] xe_rejects_send_if_not_ready
[07:40:57] ==================== [PASSED] no_relay =====================
[07:40:57] ================== pf_relay (14 subtests) ==================
[07:40:57] [PASSED] pf_rejects_guc2pf_too_short
[07:40:57] [PASSED] pf_rejects_guc2pf_too_long
[07:40:57] [PASSED] pf_rejects_guc2pf_no_payload
[07:40:57] [PASSED] pf_fails_no_payload
[07:40:57] [PASSED] pf_fails_bad_origin
[07:40:57] [PASSED] pf_fails_bad_type
[07:40:57] [PASSED] pf_txn_reports_error
[07:40:57] [PASSED] pf_txn_sends_pf2guc
[07:40:57] [PASSED] pf_sends_pf2guc
[07:40:57] [SKIPPED] pf_loopback_nop
[07:40:57] [SKIPPED] pf_loopback_echo
[07:40:57] [SKIPPED] pf_loopback_fail
[07:40:57] [SKIPPED] pf_loopback_busy
[07:40:57] [SKIPPED] pf_loopback_retry
[07:40:57] ==================== [PASSED] pf_relay =====================
[07:40:57] ================== vf_relay (3 subtests) ===================
[07:40:57] [PASSED] vf_rejects_guc2vf_too_short
[07:40:57] [PASSED] vf_rejects_guc2vf_too_long
[07:40:57] [PASSED] vf_rejects_guc2vf_no_payload
[07:40:57] ==================== [PASSED] vf_relay =====================
[07:40:57] ================ pf_gt_config (6 subtests) =================
[07:40:57] [PASSED] fair_contexts_1vf
[07:40:57] [PASSED] fair_doorbells_1vf
[07:40:57] [PASSED] fair_ggtt_1vf
[07:40:57] ====================== fair_contexts  ======================
[07:40:57] [PASSED] 1 VF
[07:40:57] [PASSED] 2 VFs
[07:40:57] [PASSED] 3 VFs
[07:40:57] [PASSED] 4 VFs
[07:40:57] [PASSED] 5 VFs
[07:40:57] [PASSED] 6 VFs
[07:40:57] [PASSED] 7 VFs
[07:40:57] [PASSED] 8 VFs
[07:40:57] [PASSED] 9 VFs
[07:40:57] [PASSED] 10 VFs
[07:40:57] [PASSED] 11 VFs
[07:40:57] [PASSED] 12 VFs
[07:40:57] [PASSED] 13 VFs
[07:40:57] [PASSED] 14 VFs
[07:40:57] [PASSED] 15 VFs
[07:40:57] [PASSED] 16 VFs
[07:40:57] [PASSED] 17 VFs
[07:40:57] [PASSED] 18 VFs
[07:40:57] [PASSED] 19 VFs
[07:40:57] [PASSED] 20 VFs
[07:40:57] [PASSED] 21 VFs
[07:40:57] [PASSED] 22 VFs
[07:40:57] [PASSED] 23 VFs
[07:40:57] [PASSED] 24 VFs
[07:40:57] [PASSED] 25 VFs
[07:40:57] [PASSED] 26 VFs
[07:40:57] [PASSED] 27 VFs
[07:40:57] [PASSED] 28 VFs
[07:40:57] [PASSED] 29 VFs
[07:40:57] [PASSED] 30 VFs
[07:40:57] [PASSED] 31 VFs
[07:40:57] [PASSED] 32 VFs
[07:40:57] [PASSED] 33 VFs
[07:40:57] [PASSED] 34 VFs
[07:40:57] [PASSED] 35 VFs
[07:40:57] [PASSED] 36 VFs
[07:40:57] [PASSED] 37 VFs
[07:40:57] [PASSED] 38 VFs
[07:40:57] [PASSED] 39 VFs
[07:40:57] [PASSED] 40 VFs
[07:40:57] [PASSED] 41 VFs
[07:40:57] [PASSED] 42 VFs
[07:40:57] [PASSED] 43 VFs
[07:40:57] [PASSED] 44 VFs
[07:40:57] [PASSED] 45 VFs
[07:40:57] [PASSED] 46 VFs
[07:40:57] [PASSED] 47 VFs
[07:40:57] [PASSED] 48 VFs
[07:40:57] [PASSED] 49 VFs
[07:40:57] [PASSED] 50 VFs
[07:40:57] [PASSED] 51 VFs
[07:40:57] [PASSED] 52 VFs
[07:40:57] [PASSED] 53 VFs
[07:40:57] [PASSED] 54 VFs
[07:40:57] [PASSED] 55 VFs
[07:40:57] [PASSED] 56 VFs
[07:40:57] [PASSED] 57 VFs
[07:40:57] [PASSED] 58 VFs
[07:40:57] [PASSED] 59 VFs
[07:40:57] [PASSED] 60 VFs
[07:40:57] [PASSED] 61 VFs
[07:40:57] [PASSED] 62 VFs
[07:40:57] [PASSED] 63 VFs
[07:40:57] ================== [PASSED] fair_contexts ==================
[07:40:57] ===================== fair_doorbells  ======================
[07:40:57] [PASSED] 1 VF
[07:40:57] [PASSED] 2 VFs
[07:40:57] [PASSED] 3 VFs
[07:40:57] [PASSED] 4 VFs
[07:40:57] [PASSED] 5 VFs
[07:40:57] [PASSED] 6 VFs
[07:40:57] [PASSED] 7 VFs
[07:40:57] [PASSED] 8 VFs
[07:40:57] [PASSED] 9 VFs
[07:40:57] [PASSED] 10 VFs
[07:40:57] [PASSED] 11 VFs
[07:40:57] [PASSED] 12 VFs
[07:40:57] [PASSED] 13 VFs
[07:40:57] [PASSED] 14 VFs
[07:40:57] [PASSED] 15 VFs
[07:40:57] [PASSED] 16 VFs
[07:40:57] [PASSED] 17 VFs
[07:40:57] [PASSED] 18 VFs
[07:40:57] [PASSED] 19 VFs
[07:40:57] [PASSED] 20 VFs
[07:40:57] [PASSED] 21 VFs
[07:40:57] [PASSED] 22 VFs
[07:40:57] [PASSED] 23 VFs
[07:40:57] [PASSED] 24 VFs
[07:40:57] [PASSED] 25 VFs
[07:40:57] [PASSED] 26 VFs
[07:40:57] [PASSED] 27 VFs
[07:40:57] [PASSED] 28 VFs
[07:40:57] [PASSED] 29 VFs
[07:40:57] [PASSED] 30 VFs
[07:40:57] [PASSED] 31 VFs
[07:40:57] [PASSED] 32 VFs
[07:40:57] [PASSED] 33 VFs
[07:40:57] [PASSED] 34 VFs
[07:40:57] [PASSED] 35 VFs
[07:40:57] [PASSED] 36 VFs
[07:40:57] [PASSED] 37 VFs
[07:40:57] [PASSED] 38 VFs
[07:40:57] [PASSED] 39 VFs
[07:40:57] [PASSED] 40 VFs
[07:40:57] [PASSED] 41 VFs
[07:40:57] [PASSED] 42 VFs
[07:40:57] [PASSED] 43 VFs
[07:40:57] [PASSED] 44 VFs
[07:40:57] [PASSED] 45 VFs
[07:40:57] [PASSED] 46 VFs
[07:40:57] [PASSED] 47 VFs
[07:40:57] [PASSED] 48 VFs
[07:40:57] [PASSED] 49 VFs
[07:40:57] [PASSED] 50 VFs
[07:40:57] [PASSED] 51 VFs
[07:40:57] [PASSED] 52 VFs
[07:40:57] [PASSED] 53 VFs
[07:40:57] [PASSED] 54 VFs
[07:40:57] [PASSED] 55 VFs
[07:40:57] [PASSED] 56 VFs
[07:40:57] [PASSED] 57 VFs
[07:40:57] [PASSED] 58 VFs
[07:40:57] [PASSED] 59 VFs
[07:40:57] [PASSED] 60 VFs
[07:40:57] [PASSED] 61 VFs
[07:40:57] [PASSED] 62 VFs
[07:40:57] [PASSED] 63 VFs
[07:40:57] ================= [PASSED] fair_doorbells ==================
[07:40:57] ======================== fair_ggtt  ========================
[07:40:57] [PASSED] 1 VF
[07:40:57] [PASSED] 2 VFs
[07:40:57] [PASSED] 3 VFs
[07:40:57] [PASSED] 4 VFs
[07:40:57] [PASSED] 5 VFs
[07:40:57] [PASSED] 6 VFs
[07:40:57] [PASSED] 7 VFs
[07:40:57] [PASSED] 8 VFs
[07:40:57] [PASSED] 9 VFs
[07:40:57] [PASSED] 10 VFs
[07:40:57] [PASSED] 11 VFs
[07:40:57] [PASSED] 12 VFs
[07:40:57] [PASSED] 13 VFs
[07:40:57] [PASSED] 14 VFs
[07:40:57] [PASSED] 15 VFs
[07:40:57] [PASSED] 16 VFs
[07:40:57] [PASSED] 17 VFs
[07:40:57] [PASSED] 18 VFs
[07:40:57] [PASSED] 19 VFs
[07:40:57] [PASSED] 20 VFs
[07:40:57] [PASSED] 21 VFs
[07:40:57] [PASSED] 22 VFs
[07:40:57] [PASSED] 23 VFs
[07:40:57] [PASSED] 24 VFs
[07:40:57] [PASSED] 25 VFs
[07:40:57] [PASSED] 26 VFs
[07:40:57] [PASSED] 27 VFs
[07:40:57] [PASSED] 28 VFs
[07:40:57] [PASSED] 29 VFs
[07:40:57] [PASSED] 30 VFs
[07:40:57] [PASSED] 31 VFs
[07:40:57] [PASSED] 32 VFs
[07:40:57] [PASSED] 33 VFs
[07:40:57] [PASSED] 34 VFs
[07:40:57] [PASSED] 35 VFs
[07:40:57] [PASSED] 36 VFs
[07:40:57] [PASSED] 37 VFs
[07:40:57] [PASSED] 38 VFs
[07:40:57] [PASSED] 39 VFs
[07:40:57] [PASSED] 40 VFs
[07:40:57] [PASSED] 41 VFs
[07:40:57] [PASSED] 42 VFs
[07:40:57] [PASSED] 43 VFs
[07:40:57] [PASSED] 44 VFs
[07:40:57] [PASSED] 45 VFs
[07:40:57] [PASSED] 46 VFs
[07:40:57] [PASSED] 47 VFs
[07:40:57] [PASSED] 48 VFs
[07:40:57] [PASSED] 49 VFs
[07:40:57] [PASSED] 50 VFs
[07:40:57] [PASSED] 51 VFs
[07:40:57] [PASSED] 52 VFs
[07:40:57] [PASSED] 53 VFs
[07:40:57] [PASSED] 54 VFs
[07:40:57] [PASSED] 55 VFs
[07:40:57] [PASSED] 56 VFs
[07:40:57] [PASSED] 57 VFs
[07:40:57] [PASSED] 58 VFs
[07:40:57] [PASSED] 59 VFs
[07:40:57] [PASSED] 60 VFs
[07:40:57] [PASSED] 61 VFs
[07:40:57] [PASSED] 62 VFs
[07:40:57] [PASSED] 63 VFs
[07:40:57] ==================== [PASSED] fair_ggtt ====================
[07:40:57] ================== [PASSED] pf_gt_config ===================
[07:40:57] ===================== lmtt (1 subtest) =====================
[07:40:57] ======================== test_ops  =========================
[07:40:57] [PASSED] 2-level
[07:40:57] [PASSED] multi-level
[07:40:57] ==================== [PASSED] test_ops =====================
[07:40:57] ====================== [PASSED] lmtt =======================
[07:40:57] ================= pf_service (11 subtests) =================
[07:40:57] [PASSED] pf_negotiate_any
[07:40:57] [PASSED] pf_negotiate_base_match
[07:40:57] [PASSED] pf_negotiate_base_newer
[07:40:57] [PASSED] pf_negotiate_base_next
[07:40:57] [SKIPPED] pf_negotiate_base_older
[07:40:57] [PASSED] pf_negotiate_base_prev
[07:40:57] [PASSED] pf_negotiate_latest_match
[07:40:57] [PASSED] pf_negotiate_latest_newer
[07:40:57] [PASSED] pf_negotiate_latest_next
[07:40:57] [SKIPPED] pf_negotiate_latest_older
[07:40:57] [SKIPPED] pf_negotiate_latest_prev
[07:40:57] =================== [PASSED] pf_service ====================
[07:40:57] ================= xe_guc_g2g (2 subtests) ==================
[07:40:57] ============== xe_live_guc_g2g_kunit_default  ==============
[07:40:57] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:40:57] ============== xe_live_guc_g2g_kunit_allmem  ===============
[07:40:57] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:40:57] =================== [SKIPPED] xe_guc_g2g ===================
[07:40:57] =================== xe_mocs (2 subtests) ===================
[07:40:57] ================ xe_live_mocs_kernel_kunit  ================
[07:40:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:40:57] ================ xe_live_mocs_reset_kunit  =================
[07:40:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:40:57] ==================== [SKIPPED] xe_mocs =====================
[07:40:57] ================= xe_migrate (2 subtests) ==================
[07:40:57] ================= xe_migrate_sanity_kunit  =================
[07:40:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:40:57] ================== xe_validate_ccs_kunit  ==================
[07:40:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:40:57] =================== [SKIPPED] xe_migrate ===================
[07:40:57] ================== xe_dma_buf (1 subtest) ==================
[07:40:57] ==================== xe_dma_buf_kunit  =====================
[07:40:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:40:57] =================== [SKIPPED] xe_dma_buf ===================
[07:40:57] ================= xe_bo_shrink (1 subtest) =================
[07:40:57] =================== xe_bo_shrink_kunit  ====================
[07:40:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:40:57] ================== [SKIPPED] xe_bo_shrink ==================
[07:40:57] ==================== xe_bo (2 subtests) ====================
[07:40:57] ================== xe_ccs_migrate_kunit  ===================
[07:40:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:40:57] ==================== xe_bo_evict_kunit  ====================
[07:40:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:40:57] ===================== [SKIPPED] xe_bo ======================
[07:40:57] ==================== args (11 subtests) ====================
[07:40:57] [PASSED] count_args_test
[07:40:57] [PASSED] call_args_example
[07:40:57] [PASSED] call_args_test
[07:40:57] [PASSED] drop_first_arg_example
[07:40:57] [PASSED] drop_first_arg_test
[07:40:57] [PASSED] first_arg_example
[07:40:57] [PASSED] first_arg_test
[07:40:57] [PASSED] last_arg_example
[07:40:57] [PASSED] last_arg_test
[07:40:57] [PASSED] pick_arg_example
[07:40:57] [PASSED] sep_comma_example
[07:40:57] ====================== [PASSED] args =======================
[07:40:57] =================== xe_pci (3 subtests) ====================
[07:40:57] ==================== check_graphics_ip  ====================
[07:40:57] [PASSED] 12.00 Xe_LP
[07:40:57] [PASSED] 12.10 Xe_LP+
[07:40:57] [PASSED] 12.55 Xe_HPG
[07:40:57] [PASSED] 12.60 Xe_HPC
[07:40:57] [PASSED] 12.70 Xe_LPG
[07:40:57] [PASSED] 12.71 Xe_LPG
[07:40:57] [PASSED] 12.74 Xe_LPG+
[07:40:57] [PASSED] 20.01 Xe2_HPG
[07:40:57] [PASSED] 20.02 Xe2_HPG
[07:40:57] [PASSED] 20.04 Xe2_LPG
[07:40:57] [PASSED] 30.00 Xe3_LPG
[07:40:57] [PASSED] 30.01 Xe3_LPG
[07:40:57] [PASSED] 30.03 Xe3_LPG
[07:40:57] [PASSED] 30.04 Xe3_LPG
[07:40:57] [PASSED] 30.05 Xe3_LPG
[07:40:57] [PASSED] 35.11 Xe3p_XPC
[07:40:57] ================ [PASSED] check_graphics_ip ================
[07:40:57] ===================== check_media_ip  ======================
[07:40:57] [PASSED] 12.00 Xe_M
[07:40:57] [PASSED] 12.55 Xe_HPM
[07:40:57] [PASSED] 13.00 Xe_LPM+
[07:40:57] [PASSED] 13.01 Xe2_HPM
[07:40:57] [PASSED] 20.00 Xe2_LPM
[07:40:57] [PASSED] 30.00 Xe3_LPM
[07:40:57] [PASSED] 30.02 Xe3_LPM
[07:40:57] [PASSED] 35.00 Xe3p_LPM
[07:40:57] [PASSED] 35.03 Xe3p_HPM
[07:40:57] ================= [PASSED] check_media_ip ==================
[07:40:57] =================== check_platform_desc  ===================
[07:40:57] [PASSED] 0x9A60 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A68 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A70 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A40 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A49 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A59 (TIGERLAKE)
[07:40:57] [PASSED] 0x9A78 (TIGERLAKE)
[07:40:57] [PASSED] 0x9AC0 (TIGERLAKE)
[07:40:57] [PASSED] 0x9AC9 (TIGERLAKE)
[07:40:57] [PASSED] 0x9AD9 (TIGERLAKE)
[07:40:57] [PASSED] 0x9AF8 (TIGERLAKE)
[07:40:57] [PASSED] 0x4C80 (ROCKETLAKE)
[07:40:57] [PASSED] 0x4C8A (ROCKETLAKE)
[07:40:57] [PASSED] 0x4C8B (ROCKETLAKE)
[07:40:57] [PASSED] 0x4C8C (ROCKETLAKE)
[07:40:57] [PASSED] 0x4C90 (ROCKETLAKE)
[07:40:57] [PASSED] 0x4C9A (ROCKETLAKE)
[07:40:57] [PASSED] 0x4680 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4682 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4688 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x468A (ALDERLAKE_S)
[07:40:57] [PASSED] 0x468B (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4690 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4692 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4693 (ALDERLAKE_S)
[07:40:57] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46AA (ALDERLAKE_P)
[07:40:57] [PASSED] 0x462A (ALDERLAKE_P)
[07:40:57] [PASSED] 0x4626 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x4628 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46B0 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[07:40:57] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:40:57] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:40:57] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:40:57] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:40:57] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:40:57] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:40:57] [PASSED] 0xA721 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA720 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:40:57] [PASSED] 0xA780 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA781 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA782 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA783 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA788 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA789 (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA78A (ALDERLAKE_S)
[07:40:57] [PASSED] 0xA78B (ALDERLAKE_S)
[07:40:57] [PASSED] 0x4905 (DG1)
[07:40:57] [PASSED] 0x4906 (DG1)
[07:40:57] [PASSED] 0x4907 (DG1)
[07:40:57] [PASSED] 0x4908 (DG1)
[07:40:57] [PASSED] 0x4909 (DG1)
[07:40:57] [PASSED] 0x56C0 (DG2)
[07:40:57] [PASSED] 0x56C2 (DG2)
[07:40:57] [PASSED] 0x56C1 (DG2)
[07:40:57] [PASSED] 0x7D51 (METEORLAKE)
[07:40:57] [PASSED] 0x7DD1 (METEORLAKE)
[07:40:57] [PASSED] 0x7D41 (METEORLAKE)
[07:40:57] [PASSED] 0x7D67 (METEORLAKE)
[07:40:57] [PASSED] 0xB640 (METEORLAKE)
[07:40:57] [PASSED] 0x56A0 (DG2)
[07:40:57] [PASSED] 0x56A1 (DG2)
[07:40:57] [PASSED] 0x56A2 (DG2)
[07:40:57] [PASSED] 0x56BE (DG2)
[07:40:57] [PASSED] 0x56BF (DG2)
[07:40:57] [PASSED] 0x5690 (DG2)
[07:40:57] [PASSED] 0x5691 (DG2)
[07:40:57] [PASSED] 0x5692 (DG2)
[07:40:57] [PASSED] 0x56A5 (DG2)
[07:40:57] [PASSED] 0x56A6 (DG2)
[07:40:57] [PASSED] 0x56B0 (DG2)
[07:40:57] [PASSED] 0x56B1 (DG2)
[07:40:57] [PASSED] 0x56BA (DG2)
[07:40:57] [PASSED] 0x56BB (DG2)
[07:40:57] [PASSED] 0x56BC (DG2)
[07:40:57] [PASSED] 0x56BD (DG2)
[07:40:57] [PASSED] 0x5693 (DG2)
[07:40:57] [PASSED] 0x5694 (DG2)
[07:40:57] [PASSED] 0x5695 (DG2)
[07:40:57] [PASSED] 0x56A3 (DG2)
[07:40:57] [PASSED] 0x56A4 (DG2)
[07:40:57] [PASSED] 0x56B2 (DG2)
[07:40:57] [PASSED] 0x56B3 (DG2)
[07:40:57] [PASSED] 0x5696 (DG2)
[07:40:57] [PASSED] 0x5697 (DG2)
[07:40:57] [PASSED] 0xB69 (PVC)
[07:40:57] [PASSED] 0xB6E (PVC)
[07:40:57] [PASSED] 0xBD4 (PVC)
[07:40:57] [PASSED] 0xBD5 (PVC)
[07:40:57] [PASSED] 0xBD6 (PVC)
[07:40:57] [PASSED] 0xBD7 (PVC)
[07:40:57] [PASSED] 0xBD8 (PVC)
[07:40:57] [PASSED] 0xBD9 (PVC)
[07:40:57] [PASSED] 0xBDA (PVC)
[07:40:57] [PASSED] 0xBDB (PVC)
[07:40:57] [PASSED] 0xBE0 (PVC)
[07:40:57] [PASSED] 0xBE1 (PVC)
[07:40:57] [PASSED] 0xBE5 (PVC)
[07:40:57] [PASSED] 0x7D40 (METEORLAKE)
[07:40:57] [PASSED] 0x7D45 (METEORLAKE)
[07:40:57] [PASSED] 0x7D55 (METEORLAKE)
[07:40:57] [PASSED] 0x7D60 (METEORLAKE)
[07:40:57] [PASSED] 0x7DD5 (METEORLAKE)
[07:40:57] [PASSED] 0x6420 (LUNARLAKE)
[07:40:57] [PASSED] 0x64A0 (LUNARLAKE)
[07:40:57] [PASSED] 0x64B0 (LUNARLAKE)
[07:40:57] [PASSED] 0xE202 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE209 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE20B (BATTLEMAGE)
[07:40:57] [PASSED] 0xE20C (BATTLEMAGE)
[07:40:57] [PASSED] 0xE20D (BATTLEMAGE)
[07:40:57] [PASSED] 0xE210 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE211 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE212 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE216 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE220 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE221 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE222 (BATTLEMAGE)
[07:40:57] [PASSED] 0xE223 (BATTLEMAGE)
[07:40:57] [PASSED] 0xB080 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB081 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB082 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB083 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB084 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB085 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB086 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB087 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB08F (PANTHERLAKE)
[07:40:57] [PASSED] 0xB090 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:40:57] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:40:57] [PASSED] 0xD740 (NOVALAKE_S)
[07:40:57] [PASSED] 0xD741 (NOVALAKE_S)
[07:40:57] [PASSED] 0xD742 (NOVALAKE_S)
[07:40:57] [PASSED] 0xD743 (NOVALAKE_S)
[07:40:57] [PASSED] 0xD744 (NOVALAKE_S)
[07:40:57] [PASSED] 0xD745 (NOVALAKE_S)
[07:40:57] [PASSED] 0x674C (CRESCENTISLAND)
[07:40:57] [PASSED] 0xFD80 (PANTHERLAKE)
[07:40:57] [PASSED] 0xFD81 (PANTHERLAKE)
[07:40:57] =============== [PASSED] check_platform_desc ===============
[07:40:57] ===================== [PASSED] xe_pci ======================
[07:40:57] =================== xe_rtp (2 subtests) ====================
[07:40:57] =============== xe_rtp_process_to_sr_tests  ================
[07:40:57] [PASSED] coalesce-same-reg
[07:40:57] [PASSED] no-match-no-add
[07:40:57] [PASSED] match-or
[07:40:57] [PASSED] match-or-xfail
[07:40:57] [PASSED] no-match-no-add-multiple-rules
[07:40:57] [PASSED] two-regs-two-entries
[07:40:57] [PASSED] clr-one-set-other
[07:40:57] [PASSED] set-field
[07:40:57] [PASSED] conflict-duplicate
[07:40:57] [PASSED] conflict-not-disjoint
[07:40:57] [PASSED] conflict-reg-type
[07:40:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:40:57] ================== xe_rtp_process_tests  ===================
[07:40:57] [PASSED] active1
[07:40:57] [PASSED] active2
[07:40:57] [PASSED] active-inactive
[07:40:57] [PASSED] inactive-active
[07:40:57] [PASSED] inactive-1st_or_active-inactive
[07:40:57] [PASSED] inactive-2nd_or_active-inactive
[07:40:57] [PASSED] inactive-last_or_active-inactive
[07:40:57] [PASSED] inactive-no_or_active-inactive
[07:40:57] ============== [PASSED] xe_rtp_process_tests ===============
[07:40:57] ===================== [PASSED] xe_rtp ======================
[07:40:57] ==================== xe_wa (1 subtest) =====================
[07:40:57] ======================== xe_wa_gt  =========================
[07:40:57] [PASSED] TIGERLAKE B0
[07:40:57] [PASSED] DG1 A0
[07:40:57] [PASSED] DG1 B0
[07:40:57] [PASSED] ALDERLAKE_S A0
[07:40:57] [PASSED] ALDERLAKE_S B0
[07:40:57] [PASSED] ALDERLAKE_S C0
[07:40:57] [PASSED] ALDERLAKE_S D0
[07:40:57] [PASSED] ALDERLAKE_P A0
[07:40:57] [PASSED] ALDERLAKE_P B0
[07:40:57] [PASSED] ALDERLAKE_P C0
[07:40:57] [PASSED] ALDERLAKE_S RPLS D0
[07:40:57] [PASSED] ALDERLAKE_P RPLU E0
[07:40:57] [PASSED] DG2 G10 C0
[07:40:57] [PASSED] DG2 G11 B1
[07:40:57] [PASSED] DG2 G12 A1
[07:40:57] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:40:57] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:40:57] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:40:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:40:57] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:40:57] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:40:57] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:40:57] ==================== [PASSED] xe_wa_gt =====================
[07:40:57] ====================== [PASSED] xe_wa ======================
[07:40:57] ============================================================
[07:40:57] Testing complete. Ran 510 tests: passed: 492, skipped: 18
[07:40:57] Elapsed time: 35.544s total, 4.192s configuring, 30.835s building, 0.460s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
  2025-12-02  7:41 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2) Patchwork
@ 2025-12-02  8:15 ` Patchwork
  2025-12-02  9:45 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-12-02  8:15 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
URL   : https://patchwork.freedesktop.org/series/158176/
State : success

== Summary ==

CI Bug Log - changes from xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65_BAT -> xe-pw-158176v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65 -> xe-pw-158176v2

  IGT_8647: 8647
  xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65: 639f325d8cbdc690de963db2fe5840444ac7ea65
  xe-pw-158176v2: 158176v2

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
  2025-12-02  7:41 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2) Patchwork
  2025-12-02  8:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-02  9:45 ` Patchwork
  2025-12-02 23:45 ` [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Lin, Shuicheng
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-12-02  9:45 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2)
URL   : https://patchwork.freedesktop.org/series/158176/
State : failure

== Summary ==

CI Bug Log - changes from xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65_FULL -> xe-pw-158176v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-158176v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-158176v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-158176v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-hdmi-a-3.html

  * igt@xe_exec_threads@threads-bal-shared-vm-basic:
    - shard-bmg:          NOTRUN -> [ABORT][2]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_exec_threads@threads-bal-shared-vm-basic.html

  * igt@xe_pmu@engine-activity-single-load:
    - shard-dg2-set2:     [PASS][3] -> [FAIL][4] +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-464/igt@xe_pmu@engine-activity-single-load.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-433/igt@xe_pmu@engine-activity-single-load.html

  
Known issues
------------

  Here are the changes found in xe-pw-158176v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-adlp:         [PASS][5] -> [DMESG-WARN][6] ([Intel XE#2953] / [Intel XE#4173])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-1/igt@kms_async_flips@alternate-sync-async-flip.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][8] -> [FAIL][9] ([Intel XE#1231] / [Intel XE#6699])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
    - shard-adlp:         NOTRUN -> [SKIP][12] ([Intel XE#367]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#367])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2887]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][19] ([Intel XE#787]) +13 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [ABORT][20] ([Intel XE#6675]) +2 other tests abort
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][21] ([Intel XE#3442])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#787]) +20 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][25] -> [INCOMPLETE][26] ([Intel XE#6168])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][27] -> [DMESG-WARN][28] ([Intel XE#1727] / [Intel XE#3113])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_chamelium_edid@dp-mode-timings:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2252]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_chamelium_edid@dp-mode-timings.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#373]) +3 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-dg2-set2:     NOTRUN -> [SKIP][31] ([Intel XE#373]) +2 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec_enc:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#6704]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec_enc.html

  * igt@kms_colorop@plane-xr24-xr24-multiply_inv_125:
    - shard-dg2-set2:     NOTRUN -> [SKIP][33] ([Intel XE#6704])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_colorop@plane-xr24-xr24-multiply_inv_125.html

  * igt@kms_colorop@plane-xr30-xr30-ctm_3x4_bt709_enc:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#6704]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_bt709_enc.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][35] ([Intel XE#6707]) +1 other test fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2320])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#308])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#309])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2291]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#323])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#1508])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2244])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_dsc@dsc-basic.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-adlp:         NOTRUN -> [SKIP][44] ([Intel XE#1137])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-absolute-wf_vblank:
    - shard-adlp:         NOTRUN -> [SKIP][45] ([Intel XE#310])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_flip@2x-absolute-wf_vblank.html

  * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2316])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
    - shard-bmg:          [PASS][47] -> [SKIP][48] ([Intel XE#2316]) +5 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2293]) +2 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#6312])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#651]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2312]) +4 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][54] ([Intel XE#651]) +5 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][55] ([Intel XE#656]) +6 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
    - shard-adlp:         [PASS][56] -> [ABORT][57] ([Intel XE#3970])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#4141]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#6312])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#2311]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#653]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#653]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2313]) +3 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@bpc-switch:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#455]) +5 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@kms_hdr@bpc-switch.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-adlp:         NOTRUN -> [ABORT][65] ([Intel XE#6675]) +1 other test abort
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-8/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
    - shard-lnl:          [PASS][66] -> [ABORT][67] ([Intel XE#6675])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-lnl-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2-set2:     [PASS][68] -> [ABORT][69] ([Intel XE#6675])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-436/igt@kms_pm_rpm@system-suspend-idle.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-432/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#1489])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@fbc-pr-basic:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_psr@fbc-pr-basic.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-8/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@pr-primary-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_psr@pr-primary-blt.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][75] ([Intel XE#2330])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#3414])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-270.html
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#3414] / [Intel XE#3904])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#1435])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][80] ([Intel XE#455]) +3 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-bmg:          NOTRUN -> [ABORT][81] ([Intel XE#6675]) +3 other tests abort
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_vrr@flipline:
    - shard-lnl:          [PASS][82] -> [FAIL][83] ([Intel XE#4227]) +1 other test fail
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-lnl-1/igt@kms_vrr@flipline.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-lnl-2/igt@kms_vrr@flipline.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][84] -> [SKIP][85] ([Intel XE#1499])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@kms_vrr@negative-basic.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_vrr@negative-basic.html

  * igt@xe_compute_preempt@compute-preempt-many-all-ram:
    - shard-adlp:         NOTRUN -> [SKIP][86] ([Intel XE#6360])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_compute_preempt@compute-preempt-many-all-ram.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#1123])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#5300])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_dma_buf_sync@export-dma-buf-once-write-sync:
    - shard-adlp:         [PASS][89] -> [DMESG-FAIL][90] ([Intel XE#3876])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-3/igt@xe_dma_buf_sync@export-dma-buf-once-write-sync.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-9/igt@xe_dma_buf_sync@export-dma-buf-once-write-sync.html

  * igt@xe_eu_stall@invalid-sampling-rate:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#5626])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_eu_stall@invalid-sampling-rate.html

  * igt@xe_eudebug@basic-vm-access-faultable:
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_eudebug@basic-vm-access-faultable.html

  * igt@xe_eudebug_online@interrupt-other-debuggable:
    - shard-dg2-set2:     NOTRUN -> [SKIP][93] ([Intel XE#4837])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#4837]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_evict@evict-large-external:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#261] / [Intel XE#5564])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_evict@evict-large-external.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#261]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-cm:
    - shard-adlp:         NOTRUN -> [SKIP][97] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-8/igt@xe_evict@evict-small-cm.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-adlp:         NOTRUN -> [SKIP][98] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#2322]) +2 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-imm:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#288] / [Intel XE#5561]) +10 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-8/igt@xe_exec_fault_mode@many-bindexecqueue-imm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][101] ([Intel XE#288]) +5 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
    - shard-adlp:         NOTRUN -> [SKIP][102] ([Intel XE#2360])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html

  * igt@xe_exec_system_allocator@threads-many-large-malloc-multi-fault:
    - shard-adlp:         NOTRUN -> [SKIP][103] ([Intel XE#4915]) +88 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@xe_exec_system_allocator@threads-many-large-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][104] ([Intel XE#4915]) +51 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-prefetch.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#4943]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html

  * igt@xe_module_load@load:
    - shard-bmg:          ([PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129]) -> ([PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [SKIP][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) ([Intel XE#2457])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-1/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-8/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-3/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-3/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-5/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-5/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-5/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-5/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-1/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-8/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-8/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-3/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-8/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-5/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-7/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-5/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-5/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-7/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-7/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-3/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-8/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-8/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-5/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@xe_module_load@load.html

  * igt@xe_oa@invalid-oa-format-id:
    - shard-adlp:         NOTRUN -> [SKIP][155] ([Intel XE#3573]) +2 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_oa@invalid-oa-format-id.html

  * igt@xe_peer2peer@read:
    - shard-adlp:         NOTRUN -> [SKIP][156] ([Intel XE#1061])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_peer2peer@read.html

  * igt@xe_pm@d3cold-mmap-vram:
    - shard-dg2-set2:     NOTRUN -> [SKIP][157] ([Intel XE#2284] / [Intel XE#366])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html

  * igt@xe_pm@d3hot-i2c:
    - shard-dg2-set2:     NOTRUN -> [SKIP][158] ([Intel XE#5742])
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm@s2idle-basic-exec:
    - shard-adlp:         [PASS][159] -> [ABORT][160] ([Intel XE#6675]) +5 other tests abort
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-6/igt@xe_pm@s2idle-basic-exec.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-9/igt@xe_pm@s2idle-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-unbind-all:
    - shard-bmg:          [PASS][161] -> [ABORT][162] ([Intel XE#6675]) +1 other test abort
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][163] ([Intel XE#2284])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0:
    - shard-lnl:          [PASS][164] -> [FAIL][165] ([Intel XE#6251])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_video_decode0.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][166] ([Intel XE#4733])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-adlp:         NOTRUN -> [SKIP][167] ([Intel XE#4733] / [Intel XE#5594])
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-3/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-mem-usage:
    - shard-dg2-set2:     NOTRUN -> [SKIP][168] ([Intel XE#944])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html

  * igt@xe_query@multigpu-query-topology:
    - shard-adlp:         NOTRUN -> [SKIP][169] ([Intel XE#944])
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_query@multigpu-query-topology.html

  * igt@xe_render_copy@render-stress-1-copies:
    - shard-adlp:         NOTRUN -> [SKIP][170] ([Intel XE#4814] / [Intel XE#5614])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-4/igt@xe_render_copy@render-stress-1-copies.html

  * igt@xe_sriov_flr@flr-each-isolation:
    - shard-dg2-set2:     NOTRUN -> [SKIP][171] ([Intel XE#3342])
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html

  * igt@xe_survivability@i2c-functionality:
    - shard-dg2-set2:     NOTRUN -> [SKIP][172] ([Intel XE#6529])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@xe_survivability@i2c-functionality.html

  
#### Possible fixes ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [FAIL][173] ([Intel XE#1231]) -> [PASS][174]
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-bmg:          [SKIP][175] ([Intel XE#2316]) -> [PASS][176] +1 other test pass
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - shard-bmg:          [ABORT][177] ([Intel XE#1727]) -> [PASS][178] +1 other test pass
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [FAIL][179] ([Intel XE#6361]) -> [PASS][180] +1 other test pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-5/igt@kms_setmode@basic.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-5/igt@kms_setmode@basic.html

  * igt@kms_setmode@basic@pipe-b-edp-1:
    - shard-lnl:          [FAIL][181] ([Intel XE#6361]) -> [PASS][182] +2 other tests pass
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-dg2-set2:     [ABORT][183] ([Intel XE#6675]) -> [PASS][184] +1 other test pass
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html
    - shard-bmg:          [ABORT][185] ([Intel XE#6675]) -> [PASS][186]
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pm@s3-multiple-execs:
    - shard-adlp:         [ABORT][187] ([Intel XE#6675]) -> [PASS][188] +2 other tests pass
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-1/igt@xe_pm@s3-multiple-execs.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-8/igt@xe_pm@s3-multiple-execs.html

  
#### Warnings ####

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [FAIL][189] ([Intel XE#1231]) -> [FAIL][190] ([Intel XE#1231] / [Intel XE#6699]) +4 other tests fail
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_content_protection@suspend-resume:
    - shard-bmg:          [FAIL][191] ([Intel XE#1178]) -> [SKIP][192] ([Intel XE#6705])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@kms_content_protection@suspend-resume.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_content_protection@suspend-resume.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-adlp:         [ABORT][193] ([Intel XE#6675]) -> [ABORT][194] ([Intel XE#2953] / [Intel XE#6675]) +1 other test abort
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2311]) +3 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][197] ([Intel XE#2312]) -> [SKIP][198] ([Intel XE#4141])
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][199] ([Intel XE#4141]) -> [SKIP][200] ([Intel XE#2312])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][201] ([Intel XE#2311]) -> [SKIP][202] ([Intel XE#2312]) +8 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][203] ([Intel XE#2312]) -> [SKIP][204] ([Intel XE#2313]) +3 other tests skip
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
    - shard-bmg:          [SKIP][205] ([Intel XE#2313]) -> [SKIP][206] ([Intel XE#2312]) +9 other tests skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          [SKIP][207] ([Intel XE#346]) -> [SKIP][208] ([Intel XE#346] / [Intel XE#6590]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][209] ([Intel XE#2927]) -> [SKIP][210] ([Intel XE#2927] / [Intel XE#6590])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          [SKIP][211] ([Intel XE#2934]) -> [SKIP][212] ([Intel XE#2934] / [Intel XE#6590])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-adlp:         [DMESG-WARN][213] ([Intel XE#3868]) -> [DMESG-FAIL][214] ([Intel XE#3868])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-3/igt@xe_exec_reset@cm-cat-error.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-adlp:         [SKIP][215] ([Intel XE#2284] / [Intel XE#366]) -> [TIMEOUT][216] ([Intel XE#3876])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65/shard-adlp-3/igt@xe_pm@d3cold-mmap-system.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v2/shard-adlp-9/igt@xe_pm@d3cold-mmap-system.html

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

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [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#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [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#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
  [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
  [Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
  [Intel XE#6699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6699
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65 -> xe-pw-158176v2

  IGT_8647: 8647
  xe-4178-639f325d8cbdc690de963db2fe5840444ac7ea65: 639f325d8cbdc690de963db2fe5840444ac7ea65
  xe-pw-158176v2: 158176v2

== Logs ==

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

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

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

* RE: [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined()
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
                   ` (2 preceding siblings ...)
  2025-12-02  9:45 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-12-02 23:45 ` Lin, Shuicheng
  2026-01-23  9:32 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Lin, Shuicheng @ 2025-12-02 23:45 UTC (permalink / raw)
  To: Gote, Nitin R, Upadhyay, Tejas, intel-xe@lists.freedesktop.org,
	jani.nikula@linux.intel.com
  Cc: Piorkowski, Piotr, Gote, Nitin R

On Mon, Dec 1, 2025 11:03 PM Nitin Gote wrote:
> Prefer IS_ENABLED() instead of defined() for checking whether a kconfig
> option is enabled. IS_ENABLED() evaluates both built-in (=y) and modular
> (=m) configurations at compile time, while defined() only tests symbol
> presence at preprocessing and can’t distinguish between built-in, module, or
> unset states.
> 
> This is purely cosmetic – no functional changes.

CONFIG_DRM_XE_PAGEMAP is bool type, so it won't be modular type. It is the same for both check.  
I checked code, all other parts are with "IS_ENABLED()" for this config. 
So it LGTM to change it also.

Reviewed-by: Shuicheng Lin <shuicheng.lin@intel.com>

> 
> CC: Piotr Piórkowski <piotr.piorkowski@intel.com>
> Signed-off-by: Nitin Gote <nitin.r.gote@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_vram.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_vram.c b/drivers/gpu/drm/xe/xe_vram.c
> index 0a645e76e5fa..8fac1cc08dc9 100644
> --- a/drivers/gpu/drm/xe/xe_vram.c
> +++ b/drivers/gpu/drm/xe/xe_vram.c
> @@ -325,7 +325,7 @@ struct xe_vram_region *xe_vram_region_alloc(struct
> xe_device *xe, u8 id, u32 pla
>  	vram->xe = xe;
>  	vram->id = id;
>  	vram->placement = placement;
> -#if defined(CONFIG_DRM_XE_PAGEMAP)
> +#if IS_ENABLED(CONFIG_DRM_XE_PAGEMAP)
>  	vram->migrate = xe->tiles[id].migrate;  #endif
>  	return vram;
> --
> 2.50.1


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

* ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
                   ` (3 preceding siblings ...)
  2025-12-02 23:45 ` [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Lin, Shuicheng
@ 2026-01-23  9:32 ` Patchwork
  2026-01-23 10:06 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-01-23  9:32 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
URL   : https://patchwork.freedesktop.org/series/158176/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:30:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:30:58] 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
[09:31:30] Starting KUnit Kernel (1/1)...
[09:31:30] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:31:30] ================== guc_buf (11 subtests) ===================
[09:31:30] [PASSED] test_smallest
[09:31:30] [PASSED] test_largest
[09:31:30] [PASSED] test_granular
[09:31:30] [PASSED] test_unique
[09:31:30] [PASSED] test_overlap
[09:31:30] [PASSED] test_reusable
[09:31:30] [PASSED] test_too_big
[09:31:30] [PASSED] test_flush
[09:31:30] [PASSED] test_lookup
[09:31:30] [PASSED] test_data
[09:31:30] [PASSED] test_class
[09:31:30] ===================== [PASSED] guc_buf =====================
[09:31:30] =================== guc_dbm (7 subtests) ===================
[09:31:30] [PASSED] test_empty
[09:31:30] [PASSED] test_default
[09:31:30] ======================== test_size  ========================
[09:31:30] [PASSED] 4
[09:31:30] [PASSED] 8
[09:31:30] [PASSED] 32
[09:31:30] [PASSED] 256
[09:31:30] ==================== [PASSED] test_size ====================
[09:31:30] ======================= test_reuse  ========================
[09:31:30] [PASSED] 4
[09:31:30] [PASSED] 8
[09:31:30] [PASSED] 32
[09:31:30] [PASSED] 256
[09:31:30] =================== [PASSED] test_reuse ====================
[09:31:30] =================== test_range_overlap  ====================
[09:31:30] [PASSED] 4
[09:31:30] [PASSED] 8
[09:31:30] [PASSED] 32
[09:31:30] [PASSED] 256
[09:31:30] =============== [PASSED] test_range_overlap ================
[09:31:30] =================== test_range_compact  ====================
[09:31:30] [PASSED] 4
[09:31:30] [PASSED] 8
[09:31:30] [PASSED] 32
[09:31:30] [PASSED] 256
[09:31:30] =============== [PASSED] test_range_compact ================
[09:31:30] ==================== test_range_spare  =====================
[09:31:30] [PASSED] 4
[09:31:30] [PASSED] 8
[09:31:30] [PASSED] 32
[09:31:30] [PASSED] 256
[09:31:30] ================ [PASSED] test_range_spare =================
[09:31:30] ===================== [PASSED] guc_dbm =====================
[09:31:30] =================== guc_idm (6 subtests) ===================
[09:31:30] [PASSED] bad_init
[09:31:30] [PASSED] no_init
[09:31:30] [PASSED] init_fini
[09:31:30] [PASSED] check_used
[09:31:30] [PASSED] check_quota
[09:31:30] [PASSED] check_all
[09:31:30] ===================== [PASSED] guc_idm =====================
[09:31:30] ================== no_relay (3 subtests) ===================
[09:31:30] [PASSED] xe_drops_guc2pf_if_not_ready
[09:31:30] [PASSED] xe_drops_guc2vf_if_not_ready
[09:31:30] [PASSED] xe_rejects_send_if_not_ready
[09:31:30] ==================== [PASSED] no_relay =====================
[09:31:30] ================== pf_relay (14 subtests) ==================
[09:31:30] [PASSED] pf_rejects_guc2pf_too_short
[09:31:30] [PASSED] pf_rejects_guc2pf_too_long
[09:31:30] [PASSED] pf_rejects_guc2pf_no_payload
[09:31:30] [PASSED] pf_fails_no_payload
[09:31:30] [PASSED] pf_fails_bad_origin
[09:31:30] [PASSED] pf_fails_bad_type
[09:31:30] [PASSED] pf_txn_reports_error
[09:31:30] [PASSED] pf_txn_sends_pf2guc
[09:31:30] [PASSED] pf_sends_pf2guc
[09:31:30] [SKIPPED] pf_loopback_nop
[09:31:30] [SKIPPED] pf_loopback_echo
[09:31:30] [SKIPPED] pf_loopback_fail
[09:31:30] [SKIPPED] pf_loopback_busy
[09:31:30] [SKIPPED] pf_loopback_retry
[09:31:30] ==================== [PASSED] pf_relay =====================
[09:31:30] ================== vf_relay (3 subtests) ===================
[09:31:30] [PASSED] vf_rejects_guc2vf_too_short
[09:31:30] [PASSED] vf_rejects_guc2vf_too_long
[09:31:30] [PASSED] vf_rejects_guc2vf_no_payload
[09:31:30] ==================== [PASSED] vf_relay =====================
[09:31:30] ================ pf_gt_config (6 subtests) =================
[09:31:30] [PASSED] fair_contexts_1vf
[09:31:30] [PASSED] fair_doorbells_1vf
[09:31:30] [PASSED] fair_ggtt_1vf
[09:31:30] ====================== fair_contexts  ======================
[09:31:30] [PASSED] 1 VF
[09:31:30] [PASSED] 2 VFs
[09:31:30] [PASSED] 3 VFs
[09:31:30] [PASSED] 4 VFs
[09:31:30] [PASSED] 5 VFs
[09:31:30] [PASSED] 6 VFs
[09:31:30] [PASSED] 7 VFs
[09:31:30] [PASSED] 8 VFs
[09:31:30] [PASSED] 9 VFs
[09:31:30] [PASSED] 10 VFs
[09:31:30] [PASSED] 11 VFs
[09:31:30] [PASSED] 12 VFs
[09:31:30] [PASSED] 13 VFs
[09:31:30] [PASSED] 14 VFs
[09:31:30] [PASSED] 15 VFs
[09:31:30] [PASSED] 16 VFs
[09:31:30] [PASSED] 17 VFs
[09:31:30] [PASSED] 18 VFs
[09:31:30] [PASSED] 19 VFs
[09:31:30] [PASSED] 20 VFs
[09:31:30] [PASSED] 21 VFs
[09:31:30] [PASSED] 22 VFs
[09:31:30] [PASSED] 23 VFs
[09:31:30] [PASSED] 24 VFs
[09:31:30] [PASSED] 25 VFs
[09:31:30] [PASSED] 26 VFs
[09:31:30] [PASSED] 27 VFs
[09:31:30] [PASSED] 28 VFs
[09:31:30] [PASSED] 29 VFs
[09:31:30] [PASSED] 30 VFs
[09:31:30] [PASSED] 31 VFs
[09:31:30] [PASSED] 32 VFs
[09:31:30] [PASSED] 33 VFs
[09:31:30] [PASSED] 34 VFs
[09:31:30] [PASSED] 35 VFs
[09:31:30] [PASSED] 36 VFs
[09:31:30] [PASSED] 37 VFs
[09:31:30] [PASSED] 38 VFs
[09:31:30] [PASSED] 39 VFs
[09:31:30] [PASSED] 40 VFs
[09:31:30] [PASSED] 41 VFs
[09:31:30] [PASSED] 42 VFs
[09:31:30] [PASSED] 43 VFs
[09:31:30] [PASSED] 44 VFs
[09:31:30] [PASSED] 45 VFs
[09:31:30] [PASSED] 46 VFs
[09:31:30] [PASSED] 47 VFs
[09:31:30] [PASSED] 48 VFs
[09:31:30] [PASSED] 49 VFs
[09:31:30] [PASSED] 50 VFs
[09:31:30] [PASSED] 51 VFs
[09:31:30] [PASSED] 52 VFs
[09:31:30] [PASSED] 53 VFs
[09:31:30] [PASSED] 54 VFs
[09:31:30] [PASSED] 55 VFs
[09:31:30] [PASSED] 56 VFs
[09:31:30] [PASSED] 57 VFs
[09:31:30] [PASSED] 58 VFs
[09:31:30] [PASSED] 59 VFs
[09:31:30] [PASSED] 60 VFs
[09:31:30] [PASSED] 61 VFs
[09:31:30] [PASSED] 62 VFs
[09:31:30] [PASSED] 63 VFs
[09:31:30] ================== [PASSED] fair_contexts ==================
[09:31:30] ===================== fair_doorbells  ======================
[09:31:30] [PASSED] 1 VF
[09:31:30] [PASSED] 2 VFs
[09:31:30] [PASSED] 3 VFs
[09:31:30] [PASSED] 4 VFs
[09:31:30] [PASSED] 5 VFs
[09:31:30] [PASSED] 6 VFs
[09:31:30] [PASSED] 7 VFs
[09:31:30] [PASSED] 8 VFs
[09:31:30] [PASSED] 9 VFs
[09:31:30] [PASSED] 10 VFs
[09:31:30] [PASSED] 11 VFs
[09:31:30] [PASSED] 12 VFs
[09:31:30] [PASSED] 13 VFs
[09:31:30] [PASSED] 14 VFs
[09:31:30] [PASSED] 15 VFs
[09:31:30] [PASSED] 16 VFs
[09:31:30] [PASSED] 17 VFs
[09:31:30] [PASSED] 18 VFs
[09:31:30] [PASSED] 19 VFs
[09:31:30] [PASSED] 20 VFs
[09:31:30] [PASSED] 21 VFs
[09:31:30] [PASSED] 22 VFs
[09:31:30] [PASSED] 23 VFs
[09:31:30] [PASSED] 24 VFs
[09:31:30] [PASSED] 25 VFs
[09:31:30] [PASSED] 26 VFs
[09:31:30] [PASSED] 27 VFs
[09:31:30] [PASSED] 28 VFs
[09:31:30] [PASSED] 29 VFs
[09:31:30] [PASSED] 30 VFs
[09:31:30] [PASSED] 31 VFs
[09:31:30] [PASSED] 32 VFs
[09:31:30] [PASSED] 33 VFs
[09:31:30] [PASSED] 34 VFs
[09:31:30] [PASSED] 35 VFs
[09:31:30] [PASSED] 36 VFs
[09:31:30] [PASSED] 37 VFs
[09:31:30] [PASSED] 38 VFs
[09:31:30] [PASSED] 39 VFs
[09:31:30] [PASSED] 40 VFs
[09:31:30] [PASSED] 41 VFs
[09:31:30] [PASSED] 42 VFs
[09:31:30] [PASSED] 43 VFs
[09:31:30] [PASSED] 44 VFs
[09:31:30] [PASSED] 45 VFs
[09:31:30] [PASSED] 46 VFs
[09:31:30] [PASSED] 47 VFs
[09:31:30] [PASSED] 48 VFs
[09:31:30] [PASSED] 49 VFs
[09:31:30] [PASSED] 50 VFs
[09:31:30] [PASSED] 51 VFs
[09:31:30] [PASSED] 52 VFs
[09:31:30] [PASSED] 53 VFs
[09:31:30] [PASSED] 54 VFs
[09:31:30] [PASSED] 55 VFs
[09:31:30] [PASSED] 56 VFs
[09:31:30] [PASSED] 57 VFs
[09:31:30] [PASSED] 58 VFs
[09:31:30] [PASSED] 59 VFs
[09:31:30] [PASSED] 60 VFs
[09:31:30] [PASSED] 61 VFs
[09:31:30] [PASSED] 62 VFs
[09:31:30] [PASSED] 63 VFs
[09:31:30] ================= [PASSED] fair_doorbells ==================
[09:31:30] ======================== fair_ggtt  ========================
[09:31:30] [PASSED] 1 VF
[09:31:30] [PASSED] 2 VFs
[09:31:30] [PASSED] 3 VFs
[09:31:30] [PASSED] 4 VFs
[09:31:30] [PASSED] 5 VFs
[09:31:30] [PASSED] 6 VFs
[09:31:30] [PASSED] 7 VFs
[09:31:30] [PASSED] 8 VFs
[09:31:30] [PASSED] 9 VFs
[09:31:30] [PASSED] 10 VFs
[09:31:30] [PASSED] 11 VFs
[09:31:30] [PASSED] 12 VFs
[09:31:30] [PASSED] 13 VFs
[09:31:30] [PASSED] 14 VFs
[09:31:30] [PASSED] 15 VFs
[09:31:30] [PASSED] 16 VFs
[09:31:30] [PASSED] 17 VFs
[09:31:30] [PASSED] 18 VFs
[09:31:30] [PASSED] 19 VFs
[09:31:30] [PASSED] 20 VFs
[09:31:30] [PASSED] 21 VFs
[09:31:30] [PASSED] 22 VFs
[09:31:30] [PASSED] 23 VFs
[09:31:30] [PASSED] 24 VFs
[09:31:30] [PASSED] 25 VFs
[09:31:30] [PASSED] 26 VFs
[09:31:30] [PASSED] 27 VFs
[09:31:30] [PASSED] 28 VFs
[09:31:30] [PASSED] 29 VFs
[09:31:30] [PASSED] 30 VFs
[09:31:30] [PASSED] 31 VFs
[09:31:30] [PASSED] 32 VFs
[09:31:30] [PASSED] 33 VFs
[09:31:30] [PASSED] 34 VFs
[09:31:30] [PASSED] 35 VFs
[09:31:30] [PASSED] 36 VFs
[09:31:30] [PASSED] 37 VFs
[09:31:30] [PASSED] 38 VFs
[09:31:30] [PASSED] 39 VFs
[09:31:30] [PASSED] 40 VFs
[09:31:30] [PASSED] 41 VFs
[09:31:30] [PASSED] 42 VFs
[09:31:30] [PASSED] 43 VFs
[09:31:30] [PASSED] 44 VFs
[09:31:30] [PASSED] 45 VFs
[09:31:30] [PASSED] 46 VFs
[09:31:30] [PASSED] 47 VFs
[09:31:30] [PASSED] 48 VFs
[09:31:30] [PASSED] 49 VFs
[09:31:30] [PASSED] 50 VFs
[09:31:30] [PASSED] 51 VFs
[09:31:30] [PASSED] 52 VFs
[09:31:30] [PASSED] 53 VFs
[09:31:30] [PASSED] 54 VFs
[09:31:30] [PASSED] 55 VFs
[09:31:30] [PASSED] 56 VFs
[09:31:30] [PASSED] 57 VFs
[09:31:30] [PASSED] 58 VFs
[09:31:30] [PASSED] 59 VFs
[09:31:30] [PASSED] 60 VFs
[09:31:30] [PASSED] 61 VFs
[09:31:30] [PASSED] 62 VFs
[09:31:30] [PASSED] 63 VFs
[09:31:30] ==================== [PASSED] fair_ggtt ====================
[09:31:30] ================== [PASSED] pf_gt_config ===================
[09:31:30] ===================== lmtt (1 subtest) =====================
[09:31:30] ======================== test_ops  =========================
[09:31:30] [PASSED] 2-level
[09:31:30] [PASSED] multi-level
[09:31:30] ==================== [PASSED] test_ops =====================
[09:31:30] ====================== [PASSED] lmtt =======================
[09:31:30] ================= pf_service (11 subtests) =================
[09:31:30] [PASSED] pf_negotiate_any
[09:31:30] [PASSED] pf_negotiate_base_match
[09:31:30] [PASSED] pf_negotiate_base_newer
[09:31:30] [PASSED] pf_negotiate_base_next
[09:31:30] [SKIPPED] pf_negotiate_base_older
[09:31:30] [PASSED] pf_negotiate_base_prev
[09:31:30] [PASSED] pf_negotiate_latest_match
[09:31:30] [PASSED] pf_negotiate_latest_newer
[09:31:30] [PASSED] pf_negotiate_latest_next
[09:31:30] [SKIPPED] pf_negotiate_latest_older
[09:31:30] [SKIPPED] pf_negotiate_latest_prev
[09:31:30] =================== [PASSED] pf_service ====================
[09:31:30] ================= xe_guc_g2g (2 subtests) ==================
[09:31:30] ============== xe_live_guc_g2g_kunit_default  ==============
[09:31:30] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:31:30] ============== xe_live_guc_g2g_kunit_allmem  ===============
[09:31:30] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:31:30] =================== [SKIPPED] xe_guc_g2g ===================
[09:31:30] =================== xe_mocs (2 subtests) ===================
[09:31:30] ================ xe_live_mocs_kernel_kunit  ================
[09:31:30] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:31:30] ================ xe_live_mocs_reset_kunit  =================
[09:31:30] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:31:30] ==================== [SKIPPED] xe_mocs =====================
[09:31:30] ================= xe_migrate (2 subtests) ==================
[09:31:30] ================= xe_migrate_sanity_kunit  =================
[09:31:30] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:31:30] ================== xe_validate_ccs_kunit  ==================
[09:31:30] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:31:30] =================== [SKIPPED] xe_migrate ===================
[09:31:30] ================== xe_dma_buf (1 subtest) ==================
[09:31:30] ==================== xe_dma_buf_kunit  =====================
[09:31:30] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:31:30] =================== [SKIPPED] xe_dma_buf ===================
[09:31:30] ================= xe_bo_shrink (1 subtest) =================
[09:31:30] =================== xe_bo_shrink_kunit  ====================
[09:31:30] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:31:30] ================== [SKIPPED] xe_bo_shrink ==================
[09:31:30] ==================== xe_bo (2 subtests) ====================
[09:31:30] ================== xe_ccs_migrate_kunit  ===================
[09:31:30] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:31:30] ==================== xe_bo_evict_kunit  ====================
[09:31:30] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:31:30] ===================== [SKIPPED] xe_bo ======================
[09:31:30] ==================== args (13 subtests) ====================
[09:31:30] [PASSED] count_args_test
[09:31:30] [PASSED] call_args_example
[09:31:30] [PASSED] call_args_test
[09:31:30] [PASSED] drop_first_arg_example
[09:31:30] [PASSED] drop_first_arg_test
[09:31:30] [PASSED] first_arg_example
[09:31:30] [PASSED] first_arg_test
[09:31:30] [PASSED] last_arg_example
[09:31:30] [PASSED] last_arg_test
[09:31:30] [PASSED] pick_arg_example
[09:31:30] [PASSED] if_args_example
[09:31:30] [PASSED] if_args_test
[09:31:30] [PASSED] sep_comma_example
[09:31:30] ====================== [PASSED] args =======================
[09:31:30] =================== xe_pci (3 subtests) ====================
[09:31:30] ==================== check_graphics_ip  ====================
[09:31:30] [PASSED] 12.00 Xe_LP
[09:31:30] [PASSED] 12.10 Xe_LP+
[09:31:30] [PASSED] 12.55 Xe_HPG
[09:31:30] [PASSED] 12.60 Xe_HPC
[09:31:30] [PASSED] 12.70 Xe_LPG
[09:31:30] [PASSED] 12.71 Xe_LPG
[09:31:30] [PASSED] 12.74 Xe_LPG+
[09:31:30] [PASSED] 20.01 Xe2_HPG
[09:31:30] [PASSED] 20.02 Xe2_HPG
[09:31:30] [PASSED] 20.04 Xe2_LPG
[09:31:30] [PASSED] 30.00 Xe3_LPG
[09:31:30] [PASSED] 30.01 Xe3_LPG
[09:31:30] [PASSED] 30.03 Xe3_LPG
[09:31:30] [PASSED] 30.04 Xe3_LPG
[09:31:30] [PASSED] 30.05 Xe3_LPG
[09:31:30] [PASSED] 35.11 Xe3p_XPC
[09:31:30] ================ [PASSED] check_graphics_ip ================
[09:31:30] ===================== check_media_ip  ======================
[09:31:30] [PASSED] 12.00 Xe_M
[09:31:30] [PASSED] 12.55 Xe_HPM
[09:31:30] [PASSED] 13.00 Xe_LPM+
[09:31:30] [PASSED] 13.01 Xe2_HPM
[09:31:30] [PASSED] 20.00 Xe2_LPM
[09:31:30] [PASSED] 30.00 Xe3_LPM
[09:31:30] [PASSED] 30.02 Xe3_LPM
[09:31:30] [PASSED] 35.00 Xe3p_LPM
[09:31:30] [PASSED] 35.03 Xe3p_HPM
[09:31:30] ================= [PASSED] check_media_ip ==================
[09:31:30] =================== check_platform_desc  ===================
[09:31:30] [PASSED] 0x9A60 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A68 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A70 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A40 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A49 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A59 (TIGERLAKE)
[09:31:30] [PASSED] 0x9A78 (TIGERLAKE)
[09:31:30] [PASSED] 0x9AC0 (TIGERLAKE)
[09:31:30] [PASSED] 0x9AC9 (TIGERLAKE)
[09:31:30] [PASSED] 0x9AD9 (TIGERLAKE)
[09:31:30] [PASSED] 0x9AF8 (TIGERLAKE)
[09:31:30] [PASSED] 0x4C80 (ROCKETLAKE)
[09:31:30] [PASSED] 0x4C8A (ROCKETLAKE)
[09:31:30] [PASSED] 0x4C8B (ROCKETLAKE)
[09:31:30] [PASSED] 0x4C8C (ROCKETLAKE)
[09:31:30] [PASSED] 0x4C90 (ROCKETLAKE)
[09:31:30] [PASSED] 0x4C9A (ROCKETLAKE)
[09:31:30] [PASSED] 0x4680 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4682 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4688 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x468A (ALDERLAKE_S)
[09:31:30] [PASSED] 0x468B (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4690 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4692 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4693 (ALDERLAKE_S)
[09:31:30] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46AA (ALDERLAKE_P)
[09:31:30] [PASSED] 0x462A (ALDERLAKE_P)
[09:31:30] [PASSED] 0x4626 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[09:31:30] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:31:30] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:31:30] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:31:30] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:31:30] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:31:30] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:31:30] [PASSED] 0xA721 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA720 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:31:30] [PASSED] 0xA780 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA781 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA782 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA783 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA788 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA789 (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA78A (ALDERLAKE_S)
[09:31:30] [PASSED] 0xA78B (ALDERLAKE_S)
[09:31:30] [PASSED] 0x4905 (DG1)
[09:31:30] [PASSED] 0x4906 (DG1)
[09:31:30] [PASSED] 0x4907 (DG1)
[09:31:30] [PASSED] 0x4908 (DG1)
[09:31:30] [PASSED] 0x4909 (DG1)
[09:31:30] [PASSED] 0x56C0 (DG2)
[09:31:30] [PASSED] 0x56C2 (DG2)
[09:31:30] [PASSED] 0x56C1 (DG2)
[09:31:30] [PASSED] 0x7D51 (METEORLAKE)
[09:31:30] [PASSED] 0x7DD1 (METEORLAKE)
[09:31:30] [PASSED] 0x7D41 (METEORLAKE)
[09:31:30] [PASSED] 0x7D67 (METEORLAKE)
[09:31:30] [PASSED] 0xB640 (METEORLAKE)
[09:31:30] [PASSED] 0x56A0 (DG2)
[09:31:30] [PASSED] 0x56A1 (DG2)
[09:31:30] [PASSED] 0x56A2 (DG2)
[09:31:30] [PASSED] 0x56BE (DG2)
[09:31:30] [PASSED] 0x56BF (DG2)
[09:31:30] [PASSED] 0x5690 (DG2)
[09:31:30] [PASSED] 0x5691 (DG2)
[09:31:30] [PASSED] 0x5692 (DG2)
[09:31:30] [PASSED] 0x56A5 (DG2)
[09:31:30] [PASSED] 0x56A6 (DG2)
[09:31:30] [PASSED] 0x56B0 (DG2)
[09:31:30] [PASSED] 0x56B1 (DG2)
[09:31:30] [PASSED] 0x56BA (DG2)
[09:31:30] [PASSED] 0x56BB (DG2)
[09:31:30] [PASSED] 0x56BC (DG2)
[09:31:30] [PASSED] 0x56BD (DG2)
[09:31:30] [PASSED] 0x5693 (DG2)
[09:31:30] [PASSED] 0x5694 (DG2)
[09:31:30] [PASSED] 0x5695 (DG2)
[09:31:30] [PASSED] 0x56A3 (DG2)
[09:31:30] [PASSED] 0x56A4 (DG2)
[09:31:30] [PASSED] 0x56B2 (DG2)
[09:31:30] [PASSED] 0x56B3 (DG2)
[09:31:30] [PASSED] 0x5696 (DG2)
[09:31:30] [PASSED] 0x5697 (DG2)
[09:31:30] [PASSED] 0xB69 (PVC)
[09:31:30] [PASSED] 0xB6E (PVC)
[09:31:30] [PASSED] 0xBD4 (PVC)
[09:31:30] [PASSED] 0xBD5 (PVC)
[09:31:30] [PASSED] 0xBD6 (PVC)
[09:31:30] [PASSED] 0xBD7 (PVC)
[09:31:30] [PASSED] 0xBD8 (PVC)
[09:31:30] [PASSED] 0xBD9 (PVC)
[09:31:30] [PASSED] 0xBDA (PVC)
[09:31:30] [PASSED] 0xBDB (PVC)
[09:31:30] [PASSED] 0xBE0 (PVC)
[09:31:30] [PASSED] 0xBE1 (PVC)
[09:31:30] [PASSED] 0xBE5 (PVC)
[09:31:30] [PASSED] 0x7D40 (METEORLAKE)
[09:31:30] [PASSED] 0x7D45 (METEORLAKE)
[09:31:30] [PASSED] 0x7D55 (METEORLAKE)
[09:31:30] [PASSED] 0x7D60 (METEORLAKE)
[09:31:30] [PASSED] 0x7DD5 (METEORLAKE)
[09:31:30] [PASSED] 0x6420 (LUNARLAKE)
[09:31:30] [PASSED] 0x64A0 (LUNARLAKE)
[09:31:30] [PASSED] 0x64B0 (LUNARLAKE)
[09:31:30] [PASSED] 0xE202 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE209 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE20B (BATTLEMAGE)
[09:31:30] [PASSED] 0xE20C (BATTLEMAGE)
[09:31:30] [PASSED] 0xE20D (BATTLEMAGE)
[09:31:30] [PASSED] 0xE210 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE211 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE212 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE216 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE220 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE221 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE222 (BATTLEMAGE)
[09:31:30] [PASSED] 0xE223 (BATTLEMAGE)
[09:31:30] [PASSED] 0xB080 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB081 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB082 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB083 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB084 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB085 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB086 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB087 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB08F (PANTHERLAKE)
[09:31:30] [PASSED] 0xB090 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:31:30] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:31:30] [PASSED] 0xFD80 (PANTHERLAKE)
[09:31:30] [PASSED] 0xFD81 (PANTHERLAKE)
[09:31:30] [PASSED] 0xD740 (NOVALAKE_S)
[09:31:30] [PASSED] 0xD741 (NOVALAKE_S)
[09:31:30] [PASSED] 0xD742 (NOVALAKE_S)
[09:31:30] [PASSED] 0xD743 (NOVALAKE_S)
[09:31:30] [PASSED] 0xD744 (NOVALAKE_S)
[09:31:30] [PASSED] 0xD745 (NOVALAKE_S)
[09:31:30] [PASSED] 0x674C (CRESCENTISLAND)
[09:31:30] =============== [PASSED] check_platform_desc ===============
[09:31:30] ===================== [PASSED] xe_pci ======================
[09:31:30] =================== xe_rtp (2 subtests) ====================
[09:31:30] =============== xe_rtp_process_to_sr_tests  ================
[09:31:30] [PASSED] coalesce-same-reg
[09:31:30] [PASSED] no-match-no-add
[09:31:30] [PASSED] match-or
[09:31:30] [PASSED] match-or-xfail
[09:31:30] [PASSED] no-match-no-add-multiple-rules
[09:31:30] [PASSED] two-regs-two-entries
[09:31:30] [PASSED] clr-one-set-other
[09:31:30] [PASSED] set-field
[09:31:30] [PASSED] conflict-duplicate
[09:31:30] [PASSED] conflict-not-disjoint
[09:31:30] [PASSED] conflict-reg-type
[09:31:30] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:31:30] ================== xe_rtp_process_tests  ===================
[09:31:30] [PASSED] active1
[09:31:30] [PASSED] active2
[09:31:30] [PASSED] active-inactive
[09:31:30] [PASSED] inactive-active
[09:31:30] [PASSED] inactive-1st_or_active-inactive
[09:31:30] [PASSED] inactive-2nd_or_active-inactive
[09:31:30] [PASSED] inactive-last_or_active-inactive
[09:31:30] [PASSED] inactive-no_or_active-inactive
[09:31:30] ============== [PASSED] xe_rtp_process_tests ===============
[09:31:30] ===================== [PASSED] xe_rtp ======================
[09:31:30] ==================== xe_wa (1 subtest) =====================
[09:31:30] ======================== xe_wa_gt  =========================
[09:31:30] [PASSED] TIGERLAKE B0
[09:31:30] [PASSED] DG1 A0
[09:31:30] [PASSED] DG1 B0
[09:31:30] [PASSED] ALDERLAKE_S A0
[09:31:30] [PASSED] ALDERLAKE_S B0
[09:31:30] [PASSED] ALDERLAKE_S C0
[09:31:30] [PASSED] ALDERLAKE_S D0
[09:31:30] [PASSED] ALDERLAKE_P A0
[09:31:30] [PASSED] ALDERLAKE_P B0
[09:31:30] [PASSED] ALDERLAKE_P C0
[09:31:30] [PASSED] ALDERLAKE_S RPLS D0
[09:31:30] [PASSED] ALDERLAKE_P RPLU E0
[09:31:30] [PASSED] DG2 G10 C0
[09:31:30] [PASSED] DG2 G11 B1
[09:31:30] [PASSED] DG2 G12 A1
[09:31:30] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:31:30] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:31:30] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:31:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:31:30] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:31:30] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:31:30] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:31:30] ==================== [PASSED] xe_wa_gt =====================
[09:31:30] ====================== [PASSED] xe_wa ======================
[09:31:30] ============================================================
[09:31:30] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[09:31:30] Elapsed time: 36.299s total, 4.268s configuring, 31.559s building, 0.460s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
                   ` (4 preceding siblings ...)
  2026-01-23  9:32 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3) Patchwork
@ 2026-01-23 10:06 ` Patchwork
  2026-01-23 23:16 ` ✗ Xe.CI.Full: failure " Patchwork
       [not found] ` <176917430914.370852.15796836138983081414@gklab-002-034.igk.intel.com>
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-01-23 10:06 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
URL   : https://patchwork.freedesktop.org/series/158176/
State : success

== Summary ==

CI Bug Log - changes from xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff_BAT -> xe-pw-158176v3_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-158176v3_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@xe_waitfence@engine:
    - bat-dg2-oem2:       [FAIL][1] ([Intel XE#6519]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/bat-dg2-oem2/igt@xe_waitfence@engine.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/bat-dg2-oem2/igt@xe_waitfence@engine.html

  
  [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519


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

  * Linux: xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff -> xe-pw-158176v3

  IGT_8715: 8715
  xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff: 4a255b429d80f8b0800bdef43ba3175b771e77ff
  xe-pw-158176v3: 158176v3

== Logs ==

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

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

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

* ✗ Xe.CI.Full: failure for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
  2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
                   ` (5 preceding siblings ...)
  2026-01-23 10:06 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-23 23:16 ` Patchwork
       [not found] ` <176917430914.370852.15796836138983081414@gklab-002-034.igk.intel.com>
  7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-01-23 23:16 UTC (permalink / raw)
  To: Nitin Gote; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
URL   : https://patchwork.freedesktop.org/series/158176/
State : failure

== Summary ==

CI Bug Log - changes from xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff_FULL -> xe-pw-158176v3_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-158176v3_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-158176v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-158176v3_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@xe_module_load@force-load:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@xe_module_load@force-load.html

  * igt@xe_pm@s4-vm-bind-unbind-all:
    - shard-lnl:          [PASS][4] -> [DMESG-WARN][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html

  
Known issues
------------

  Here are the changes found in xe-pw-158176v3_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@hotunplug-rescan:
    - shard-bmg:          [PASS][6] -> [SKIP][7] ([Intel XE#6779])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@core_hotunplug@hotunplug-rescan.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2233])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_atomic@plane-invalid-params-fence@pipe-a-edp-1:
    - shard-lnl:          [PASS][9] -> [DMESG-WARN][10] ([Intel XE#7063])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-3/igt@kms_atomic@plane-invalid-params-fence@pipe-a-edp-1.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-5/igt@kms_atomic@plane-invalid-params-fence@pipe-a-edp-1.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
    - shard-bmg:          NOTRUN -> [ABORT][11] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4760])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [ABORT][12] ([Intel XE#2705] / [Intel XE#4760])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html

  * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][13] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#6819])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#7059])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#1124]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#607])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2887]) +5 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#3432])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_chamelium_edid@dp-edid-resolution-list:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2252]) +5 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2390] / [Intel XE#6974])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2321]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2320])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#4331])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][26] -> [FAIL][27] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][28] -> [FAIL][29] ([Intel XE#301]) +2 other tests fail
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

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

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2311]) +17 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#4141]) +10 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#7061]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2313]) +14 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-bmg:          [PASS][36] -> [SKIP][37] ([Intel XE#6693])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_pm_rpm@basic-pci-d3-state.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#6814])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_pm_rpm@package-g7.html

  * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#1406] / [Intel XE#2387])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_psr2_su@page_flip-xrgb8888.html

  * igt@kms_psr@fbc-pr-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_psr@fbc-pr-primary-blt.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#2330])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html

  * igt@kms_sharpness_filter@filter-rotations:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#6503])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_sharpness_filter@filter-rotations.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][44] -> [FAIL][45] ([Intel XE#4459]) +1 other test fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@flip-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#1499])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_vrr@flip-dpms.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#6599])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2504])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@vm-bind-clear:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#4837]) +3 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html

  * igt@xe_eudebug_online@pagefault-write:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@xe_eudebug_online@pagefault-write.html

  * igt@xe_evict@evict-small-external-multi-queue-cm:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7140])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue-cm.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race:
    - shard-bmg:          [PASS][52] -> [SKIP][53] ([Intel XE#6557] / [Intel XE#6703]) +3 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2322]) +6 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7136]) +7 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#6874]) +16 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-free-nomemset:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#6703]) +117 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_system_allocator@many-64k-mmap-free-nomemset.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-free-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#4943]) +11 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html

  * igt@xe_exec_threads@threads-multi-queue-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#7138]) +4 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-rebind.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#6964]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_pat@pat-index-xelp:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#2245])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_pat@pat-index-xelp.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2427] / [Intel XE#6953])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@xe_peer2peer@write.html

  * igt@xe_pm@vram-d3cold-threshold:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#579])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#4733])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#944]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-guc.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][67] ([Intel XE#5299]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [ABORT][69] ([Intel XE#5175]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-a-dp-2:
    - shard-bmg:          [ABORT][71] ([Intel XE#5545]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-a-dp-2.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4@pipe-c-hdmi-a-3-pipe-a-dp-2.html

  * igt@kms_plane_multiple@tiling-none:
    - shard-bmg:          [INCOMPLETE][73] ([Intel XE#5175]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-2/igt@kms_plane_multiple@tiling-none.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_plane_multiple@tiling-none.html

  * igt@kms_plane_multiple@tiling-none@pipe-d-hdmi-a-3:
    - shard-bmg:          [INCOMPLETE][75] -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-2/igt@kms_plane_multiple@tiling-none@pipe-d-hdmi-a-3.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-9/igt@kms_plane_multiple@tiling-none@pipe-d-hdmi-a-3.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][77] ([Intel XE#6321]) -> [PASS][78]
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_pmu@engine-activity-accuracy-50:
    - shard-lnl:          [FAIL][79] ([Intel XE#7072]) -> [PASS][80] +1 other test pass
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-50.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          [SKIP][81] ([Intel XE#2370]) -> [SKIP][82] ([Intel XE#6703])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-bmg:          [SKIP][83] ([Intel XE#2327]) -> [SKIP][84] ([Intel XE#6703]) +1 other test skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          [SKIP][85] ([Intel XE#1124]) -> [SKIP][86] ([Intel XE#6703]) +2 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_bw@linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          [SKIP][87] ([Intel XE#367]) -> [SKIP][88] ([Intel XE#6703])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-bmg:          [SKIP][89] ([Intel XE#2887]) -> [SKIP][90] ([Intel XE#6703]) +3 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          [SKIP][91] ([Intel XE#2252]) -> [SKIP][92] ([Intel XE#6703])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          [SKIP][93] ([Intel XE#4354]) -> [SKIP][94] ([Intel XE#6703])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          [SKIP][95] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][96] ([Intel XE#6703])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
    - shard-bmg:          [SKIP][97] ([Intel XE#2311]) -> [SKIP][98] ([Intel XE#6703]) +6 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][99] ([Intel XE#4141]) -> [ABORT][100] ([Intel XE#5545])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][101] ([Intel XE#4141]) -> [SKIP][102] ([Intel XE#6703]) +2 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
    - shard-bmg:          [SKIP][103] ([Intel XE#7061]) -> [SKIP][104] ([Intel XE#6703])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][105] ([Intel XE#2313]) -> [SKIP][106] ([Intel XE#6703]) +6 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          [SKIP][107] ([Intel XE#6901]) -> [SKIP][108] ([Intel XE#6703])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_joiner@invalid-modeset-big-joiner.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          [SKIP][109] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][110] ([Intel XE#1406] / [Intel XE#6703])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr@fbc-psr-basic:
    - shard-bmg:          [SKIP][111] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][112] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_psr@fbc-psr-basic.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_psr@fbc-psr-basic.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][113] ([Intel XE#2168]) -> [SKIP][114] ([Intel XE#6703])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@kms_vrr@lobf.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@kms_vrr@lobf.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-bmg:          [SKIP][115] ([Intel XE#4837]) -> [SKIP][116] ([Intel XE#6703])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_eudebug@basic-vm-bind-extended.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-extended.html

  * igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
    - shard-bmg:          [SKIP][117] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][118] ([Intel XE#6703]) +1 other test skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - shard-bmg:          [SKIP][119] ([Intel XE#2322]) -> [SKIP][120] ([Intel XE#6703])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          [SKIP][121] ([Intel XE#7136]) -> [SKIP][122] ([Intel XE#6703]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_multi_queue@two-queues-userptr:
    - shard-bmg:          [SKIP][123] ([Intel XE#6874]) -> [SKIP][124] ([Intel XE#6703]) +6 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-userptr.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-userptr.html

  * igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset:
    - shard-bmg:          [SKIP][125] ([Intel XE#4943]) -> [SKIP][126] ([Intel XE#6703]) +9 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-mmap-huge-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
    - shard-bmg:          [SKIP][127] ([Intel XE#7138]) -> [SKIP][128] ([Intel XE#6703]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          [SKIP][129] ([Intel XE#5742]) -> [SKIP][130] ([Intel XE#6703])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_pm@d3hot-i2c.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pxp@pxp-termination-key-update-post-suspend:
    - shard-bmg:          [SKIP][131] ([Intel XE#4733]) -> [SKIP][132] ([Intel XE#6703])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-bmg:          [SKIP][133] ([Intel XE#944]) -> [SKIP][134] ([Intel XE#6703])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/shard-bmg-9/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158176v3/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5175
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
  [Intel XE#7072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7072
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff -> xe-pw-158176v3

  IGT_8715: 8715
  xe-4441-4a255b429d80f8b0800bdef43ba3175b771e77ff: 4a255b429d80f8b0800bdef43ba3175b771e77ff
  xe-pw-158176v3: 158176v3

== Logs ==

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

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

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

* RE: CI.FULL: failure for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3)
       [not found] ` <176917430914.370852.15796836138983081414@gklab-002-034.igk.intel.com>
@ 2026-02-03 15:21   ` Gote, Nitin R
  0 siblings, 0 replies; 12+ messages in thread
From: Gote, Nitin R @ 2026-02-03 15:21 UTC (permalink / raw)
  To: sys_igkgfxci; +Cc: intel-xe@lists.freedesktop.org

Hi,

> -----Original Message-----
> From: sys_igkgfxci <sys_igkgfxci@intel.com>
> Sent: Friday, January 23, 2026 6:48 PM
> To: xe-on-upstream@eclists.intel.com; Gote, Nitin R <nitin.r.gote@intel.com>
> Subject: CI.FULL: failure for drm/xe: Use IS_ENABLED() for config checks instead
> of defined() (rev3)
> 
> 
> Patchwork series: https://patchwork.freedesktop.org/series/158176#rev3
> Results visualization: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-
> upstream-pw-158176v3/index.html
> 
> CI Bug Log - changes from xe-upstream-4441-
> 4a255b429d80f8b0800bdef43ba3175b771e77ff-full -> xe-upstream-pw-
> 158176v3-full ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with xe-upstream-pw-158176v3-full
> absolutely need to be
>   verified manually.
> 
>   If you think the reported changes have nothing to do with the changes
>   introduced in xe-upstream-pw-158176v3-full, please notify your bug team
> (https://goto.intel.com/lgci-bug-filing) to allow them
>   to document this new failure mode, which will reduce false positives in CI.
> 
> 
> 
> Participating hosts (2 -> 2)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in xe-upstream-
> pw-158176v3-full:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@kms_color@deep-color:
>     - NVL_S_EDP_BOM54-HW: [PASS][1] -> [SKIP][2]
>    [1]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-
> 4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/hwfull-
> NVL_S_EDP_BOM54-132/igt@kms_color@deep-color.html
>    [2]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-pw-
> 158176v3/hwfull-NVL_S_EDP_BOM54-133/igt@kms_color@deep-color.html
> 
>   * igt@kms_plane_cursor@viewport:
>     - NVL_S_EDP_BOM54-HW: [PASS][3] -> [INCOMPLETE][4] +1 other test
> incomplete
>    [3]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-
> 4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/hwfull-
> NVL_S_EDP_BOM54-132/igt@kms_plane_cursor@viewport.html
>    [4]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-pw-
> 158176v3/hwfull-NVL_S_EDP_BOM54-
> 133/igt@kms_plane_cursor@viewport.html
> 
>   * igt@xe_pm_residency@gt-c6-freeze@gt0:
>     - NVL_S_EDP_BOM54-HW: [PASS][5] -> [FAIL][6]
>    [5]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-
> 4441-4a255b429d80f8b0800bdef43ba3175b771e77ff/hwfull-
> NVL_S_EDP_BOM54-131/igt@xe_pm_residency@gt-c6-freeze@gt0.html
>    [6]: http://gfx-ci-internal.igk.intel.com/tree/xe-on-upstream/xe-upstream-pw-
> 158176v3/hwfull-NVL_S_EDP_BOM54-130/igt@xe_pm_residency@gt-c6-
> freeze@gt0.html
> 
> 

This is purely a cosmetic change and no functional change.
The reported issue is not related to my changes. Please re-report.
- Nitin



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

end of thread, other threads:[~2026-02-03 15:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-02  7:02 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
2025-12-02  7:41 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev2) Patchwork
2025-12-02  8:15 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-02  9:45 ` ✗ Xe.CI.Full: failure " Patchwork
2025-12-02 23:45 ` [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Lin, Shuicheng
2026-01-23  9:32 ` ✓ CI.KUnit: success for drm/xe: Use IS_ENABLED() for config checks instead of defined() (rev3) Patchwork
2026-01-23 10:06 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-23 23:16 ` ✗ Xe.CI.Full: failure " Patchwork
     [not found] ` <176917430914.370852.15796836138983081414@gklab-002-034.igk.intel.com>
2026-02-03 15:21   ` CI.FULL: " Gote, Nitin R
  -- strict thread matches above, loose matches on Subject: below --
2025-11-27 17:06 [PATCH] drm/xe: Use IS_ENABLED() for config checks instead of defined() Nitin Gote
2025-12-01 11:50 ` Upadhyay, Tejas
2025-12-01 13:55   ` Jani Nikula

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