Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe: replace format-less snprintf() with strscpy()
@ 2024-05-28 13:32 Arnd Bergmann
  2024-05-28 13:39 ` ✓ CI.Patch_applied: success for " Patchwork
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Arnd Bergmann @ 2024-05-28 13:32 UTC (permalink / raw)
  To: Lucas De Marchi, Oded Gabbay, Thomas Hellström
  Cc: Arnd Bergmann, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Daniel Vetter, Rodrigo Vivi,
	José Roberto de Souza, Matthew Brost, Francois Dugast,
	Himal Prasad Ghimiray, intel-xe, dri-devel, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

Using snprintf() with a format string from task->comm is a bit
dangerous since the string may be controlled by unprivileged
userspace:

drivers/gpu/drm/xe/xe_devcoredump.c: In function 'devcoredump_snapshot':
drivers/gpu/drm/xe/xe_devcoredump.c:184:9: error: format not a string literal and no format arguments [-Werror=format-security]
  184 |         snprintf(ss->process_name, sizeof(ss->process_name), process_name);
      |         ^~~~~~~~

In this case there is no reason for an snprintf(), so use a simpler
string copy.

Fixes: b10d0c5e9df7 ("drm/xe: Add process name to devcoredump")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c b/drivers/gpu/drm/xe/xe_devcoredump.c
index 1643d44f8bc4..1973bfaece40 100644
--- a/drivers/gpu/drm/xe/xe_devcoredump.c
+++ b/drivers/gpu/drm/xe/xe_devcoredump.c
@@ -181,7 +181,7 @@ static void devcoredump_snapshot(struct xe_devcoredump *coredump,
 		if (task)
 			process_name = task->comm;
 	}
-	snprintf(ss->process_name, sizeof(ss->process_name), process_name);
+	strscpy(ss->process_name, process_name);
 	if (task)
 		put_task_struct(task);
 
-- 
2.39.2


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

* ✓ CI.Patch_applied: success for drm/xe: replace format-less snprintf() with strscpy()
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
@ 2024-05-28 13:39 ` Patchwork
  2024-05-28 13:39 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-28 13:39 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy()
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 74ca368d029a drm-tip: 2024y-05m-28d-12h-57m-54s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: replace format-less snprintf() with strscpy()



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

* ✗ CI.checkpatch: warning for drm/xe: replace format-less snprintf() with strscpy()
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
  2024-05-28 13:39 ` ✓ CI.Patch_applied: success for " Patchwork
@ 2024-05-28 13:39 ` Patchwork
  2024-05-28 13:40 ` ✗ CI.KUnit: failure " Patchwork
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-28 13:39 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy()
URL   : https://patchwork.freedesktop.org/series/134140/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit e640d62e4f7fe7ff11315fcdde6d49c07f7fbbfa
Author: Arnd Bergmann <arnd@arndb.de>
Date:   Tue May 28 15:32:36 2024 +0200

    drm/xe: replace format-less snprintf() with strscpy()
    
    Using snprintf() with a format string from task->comm is a bit
    dangerous since the string may be controlled by unprivileged
    userspace:
    
    drivers/gpu/drm/xe/xe_devcoredump.c: In function 'devcoredump_snapshot':
    drivers/gpu/drm/xe/xe_devcoredump.c:184:9: error: format not a string literal and no format arguments [-Werror=format-security]
      184 |         snprintf(ss->process_name, sizeof(ss->process_name), process_name);
          |         ^~~~~~~~
    
    In this case there is no reason for an snprintf(), so use a simpler
    string copy.
    
    Fixes: b10d0c5e9df7 ("drm/xe: Add process name to devcoredump")
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
+ /mt/dim checkpatch 74ca368d029a2f7918fd2702caa402c156821cca drm-intel
e640d62e4f7f drm/xe: replace format-less snprintf() with strscpy()
-:12: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#12: 
  184 |         snprintf(ss->process_name, sizeof(ss->process_name), process_name);

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



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

* ✗ CI.KUnit: failure for drm/xe: replace format-less snprintf() with strscpy()
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
  2024-05-28 13:39 ` ✓ CI.Patch_applied: success for " Patchwork
  2024-05-28 13:39 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-28 13:40 ` Patchwork
  2024-05-28 14:46 ` [PATCH] " Thomas Hellström
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-28 13:40 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy()
URL   : https://patchwork.freedesktop.org/series/134140/
State : failure

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:39:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:39:19] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[13:39:46] Starting KUnit Kernel (1/1)...
[13:39:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:39:46] =================== guc_dbm (7 subtests) ===================
[13:39:46] [PASSED] test_empty
[13:39:46] [PASSED] test_default
[13:39:46] ======================== test_size  ========================
[13:39:46] [PASSED] 4
[13:39:46] [PASSED] 8
[13:39:46] [PASSED] 32
[13:39:46] [PASSED] 256
[13:39:46] ==================== [PASSED] test_size ====================
[13:39:46] ======================= test_reuse  ========================
[13:39:46] [PASSED] 4
[13:39:46] [PASSED] 8
[13:39:46] [PASSED] 32
[13:39:46] [PASSED] 256
[13:39:46] =================== [PASSED] test_reuse ====================
[13:39:46] =================== test_range_overlap  ====================
[13:39:46] [PASSED] 4
[13:39:46] [PASSED] 8
[13:39:46] [PASSED] 32
[13:39:46] [PASSED] 256
[13:39:46] =============== [PASSED] test_range_overlap ================
[13:39:46] =================== test_range_compact  ====================
[13:39:46] [PASSED] 4
[13:39:46] [PASSED] 8
[13:39:46] [PASSED] 32
[13:39:46] [PASSED] 256
[13:39:46] =============== [PASSED] test_range_compact ================
[13:39:46] ==================== test_range_spare  =====================
[13:39:46] [PASSED] 4
[13:39:46] [PASSED] 8
[13:39:46] [PASSED] 32
[13:39:46] [PASSED] 256
[13:39:46] ================ [PASSED] test_range_spare =================
[13:39:46] ===================== [PASSED] guc_dbm =====================
[13:39:46] =================== guc_idm (6 subtests) ===================
[13:39:46] [PASSED] bad_init
[13:39:46] [PASSED] no_init
[13:39:46] [PASSED] init_fini
[13:39:46] [PASSED] check_used
[13:39:46] [PASSED] check_quota
[13:39:46] [PASSED] check_all
[13:39:46] ===================== [PASSED] guc_idm =====================
[13:39:46] ================== no_relay (3 subtests) ===================
[13:39:46] [PASSED] xe_drops_guc2pf_if_not_ready
[13:39:46] [PASSED] xe_drops_guc2vf_if_not_ready
[13:39:46] [PASSED] xe_rejects_send_if_not_ready
[13:39:46] ==================== [PASSED] no_relay =====================
[13:39:46] ================== pf_relay (14 subtests) ==================
[13:39:46] [PASSED] pf_rejects_guc2pf_too_short
[13:39:46] [PASSED] pf_rejects_guc2pf_too_long
[13:39:46] [PASSED] pf_rejects_guc2pf_no_payload
[13:39:46] [PASSED] pf_fails_no_payload
[13:39:46] [PASSED] pf_fails_bad_origin
[13:39:46] [PASSED] pf_fails_bad_type
[13:39:46] [PASSED] pf_txn_reports_error
[13:39:46] [PASSED] pf_txn_sends_pf2guc
[13:39:46] [PASSED] pf_sends_pf2guc
[13:39:46] [SKIPPED] pf_loopback_nop
[13:39:46] [SKIPPED] pf_loopback_echo
[13:39:46] [SKIPPED] pf_loopback_fail
[13:39:46] [SKIPPED] pf_loopback_busy
[13:39:46] [SKIPPED] pf_loopback_retry
[13:39:46] ==================== [PASSED] pf_relay =====================
[13:39:46] ================== vf_relay (3 subtests) ===================
[13:39:46] [PASSED] vf_rejects_guc2vf_too_short
[13:39:46] [PASSED] vf_rejects_guc2vf_too_long
[13:39:46] [PASSED] vf_rejects_guc2vf_no_payload
[13:39:46] ==================== [PASSED] vf_relay =====================
[13:39:46] ================= pf_service (11 subtests) =================
[13:39:46] [PASSED] pf_negotiate_any
[13:39:46] [PASSED] pf_negotiate_base_match
[13:39:46] [PASSED] pf_negotiate_base_newer
[13:39:46] [PASSED] pf_negotiate_base_next
[13:39:46] [SKIPPED] pf_negotiate_base_older
[13:39:46] [PASSED] pf_negotiate_base_prev
[13:39:46] [PASSED] pf_negotiate_latest_match
[13:39:46] [PASSED] pf_negotiate_latest_newer
[13:39:46] [PASSED] pf_negotiate_latest_next
[13:39:46] [SKIPPED] pf_negotiate_latest_older
[13:39:46] [SKIPPED] pf_negotiate_latest_prev
[13:39:46] =================== [PASSED] pf_service ====================
[13:39:46] ===================== lmtt (1 subtest) =====================
[13:39:46] ======================== test_ops  =========================
[13:39:46] [PASSED] 2-level
[13:39:46] [PASSED] multi-level
[13:39:46] ==================== [PASSED] test_ops =====================
[13:39:46] ====================== [PASSED] lmtt =======================
[13:39:46] ==================== xe_bo (2 subtests) ====================
[13:39:46] [SKIPPED] xe_ccs_migrate_kunit
[13:39:46] [SKIPPED] xe_bo_evict_kunit
[13:39:46] ===================== [SKIPPED] xe_bo ======================
[13:39:46] ================== xe_dma_buf (1 subtest) ==================
[13:39:46] [SKIPPED] xe_dma_buf_kunit
[13:39:46] =================== [SKIPPED] xe_dma_buf ===================
[13:39:46] ================== xe_migrate (1 subtest) ==================
[13:39:46] [SKIPPED] xe_migrate_sanity_kunit
[13:39:46] =================== [SKIPPED] xe_migrate ===================
[13:39:46] =================== xe_mocs (2 subtests) ===================
[13:39:46] [SKIPPED] xe_live_mocs_kernel_kunit
[13:39:46] [SKIPPED] xe_live_mocs_reset_kunit
[13:39:46] ==================== [SKIPPED] xe_mocs =====================
[13:39:46] ==================== args (11 subtests) ====================
[13:39:46] [PASSED] count_args_test
[13:39:46] [PASSED] call_args_example
[13:39:46] [PASSED] call_args_test
[13:39:46] [PASSED] drop_first_arg_example
[13:39:46] [PASSED] drop_first_arg_test
[13:39:46] [PASSED] first_arg_example
[13:39:46] [PASSED] first_arg_test
[13:39:46] [PASSED] last_arg_example
[13:39:46] [PASSED] last_arg_test
[13:39:46] [PASSED] pick_arg_example
[13:39:46] [PASSED] sep_comma_example
[13:39:46] ====================== [PASSED] args =======================
[13:39:46] =================== xe_pci (2 subtests) ====================
[13:39:46] [PASSED] xe_gmdid_graphics_ip
[13:39:46] [PASSED] xe_gmdid_media_ip
[13:39:46] ===================== [PASSED] xe_pci ======================
[13:39:46] ==================== xe_rtp (1 subtest) ====================
[13:39:46] ================== xe_rtp_process_tests  ===================
[13:39:46] [PASSED] coalesce-same-reg
[13:39:46] [PASSED] no-match-no-add
[13:39:46] [PASSED] no-match-no-add-multiple-rules
[13:39:46] [PASSED] two-regs-two-entries
[13:39:46] [PASSED] clr-one-set-other
[13:39:46] [PASSED] set-field
[13:39:46] [PASSED] conflict-duplicate
[13:39:46] [PASSED] conflict-not-disjoint
[13:39:46] [PASSED] conflict-reg-type
[13:39:46] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[13:39:46] ===================== [PASSED] xe_rtp ======================
[13:39:46] ==================== xe_wa (1 subtest) =====================
[13:39:46] ======================== xe_wa_gt  =========================
[13:39:46] [PASSED] TIGERLAKE (B0)
[13:39:46] [PASSED] DG1 (A0)
[13:39:46] [PASSED] DG1 (B0)
[13:39:46] [PASSED] ALDERLAKE_S (A0)
[13:39:46] [PASSED] ALDERLAKE_S (B0)
[13:39:46] [PASSED] ALDERLAKE_S (C0)
[13:39:46] [PASSED] ALDERLAKE_S (D0)
[13:39:46] [PASSED] ALDERLAKE_P (A0)
[13:39:46] [PASSED] ALDERLAKE_P (B0)
[13:39:46] [PASSED] ALDERLAKE_P (C0)
[13:39:46] [PASSED] ALDERLAKE_S_RPLS (D0)
[13:39:46] [PASSED] ALDERLAKE_P_RPLU (E0)
[13:39:46] [PASSED] DG2_G10 (C0)
[13:39:46] [PASSED] DG2_G11 (B1)
[13:39:46] [PASSED] DG2_G12 (A1)
[13:39:46] [PASSED] METEORLAKE (g:A0, m:A0)
[13:39:46] [PASSED] METEORLAKE (g:A0, m:A0)
[13:39:46] [PASSED] METEORLAKE (g:A0, m:A0)
[13:39:46] [PASSED] LUNARLAKE (g:A0, m:A0)
[13:39:46] [PASSED] LUNARLAKE (g:B0, m:A0)
[13:39:46] ==================== [PASSED] xe_wa_gt =====================
[13:39:46] ====================== [PASSED] xe_wa ======================
[13:39:46] ============================================================
[13:39:46] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[13:39:46] Elapsed time: 31.153s total, 4.267s configuring, 26.565s building, 0.291s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
ERROR:root:
WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]

WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]

WARNING: unmet direct dependencies detected for DRM_DISPLAY_HDMI_STATE_HELPER
  Depends on [n]: HAS_IOMEM [=y] && DRM [=y] && DRM_DISPLAY_HELPER [=y] && DRM_DISPLAY_HDMI_HELPER [=n]
  Selected by [y]:
  - DRM_KUNIT_TEST [=y] && HAS_IOMEM [=y] && DRM [=y] && KUNIT [=y] && MMU [=y]
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc':
drm_connector_test.c:(.text+0x570): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc':
drm_connector_test.c:(.text+0x760): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc':
drm_connector_test.c:(.text+0x950): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc':
drm_connector_test.c:(.text+0xb40): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o: in function `drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc':
drm_connector_test.c:(.text+0xd30): undefined reference to `drm_hdmi_compute_mode_clock'
/usr/bin/ld: drivers/gpu/drm/tests/drm_connector_test.o:drm_connector_test.c:(.text+0xf26): more undefined references to `drm_hdmi_compute_mode_clock' follow
/usr/bin/ld: drivers/gpu/drm/display/drm_hdmi_state_helper.o: in function `drm_atomic_helper_connector_hdmi_check':
drm_hdmi_state_helper.c:(.text+0x9d8): undefined reference to `drm_hdmi_avi_infoframe_colorimetry'
/usr/bin/ld: drm_hdmi_state_helper.c:(.text+0x9ea): undefined reference to `drm_hdmi_avi_infoframe_bars'
/usr/bin/ld: drm_hdmi_state_helper.c:(.text+0xa54): undefined reference to `drm_hdmi_infoframe_set_hdr_metadata'
collect2: error: ld returned 1 exit status
make[3]: *** [../scripts/Makefile.vmlinux:34: vmlinux] Error 1
make[2]: *** [/kernel/Makefile:1171: vmlinux] Error 2
make[1]: *** [/kernel/Makefile:240: __sub-make] Error 2
make: *** [Makefile:240: __sub-make] Error 2

[13:39:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:39:48] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* Re: [PATCH] drm/xe: replace format-less snprintf() with strscpy()
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (2 preceding siblings ...)
  2024-05-28 13:40 ` ✗ CI.KUnit: failure " Patchwork
@ 2024-05-28 14:46 ` Thomas Hellström
  2024-05-29 17:40 ` ✓ CI.Patch_applied: success for drm/xe: replace format-less snprintf() with strscpy() (rev2) Patchwork
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Thomas Hellström @ 2024-05-28 14:46 UTC (permalink / raw)
  To: Arnd Bergmann, Lucas De Marchi, Oded Gabbay
  Cc: Arnd Bergmann, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Daniel Vetter, Rodrigo Vivi,
	José Roberto de Souza, Matthew Brost, Francois Dugast,
	Himal Prasad Ghimiray, intel-xe, dri-devel, linux-kernel

On Tue, 2024-05-28 at 15:32 +0200, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> Using snprintf() with a format string from task->comm is a bit
> dangerous since the string may be controlled by unprivileged
> userspace:
> 
> drivers/gpu/drm/xe/xe_devcoredump.c: In function
> 'devcoredump_snapshot':
> drivers/gpu/drm/xe/xe_devcoredump.c:184:9: error: format not a string
> literal and no format arguments [-Werror=format-security]
>   184 |         snprintf(ss->process_name, sizeof(ss->process_name),
> process_name);
>       |         ^~~~~~~~
> 
> In this case there is no reason for an snprintf(), so use a simpler
> string copy.
> 
> Fixes: b10d0c5e9df7 ("drm/xe: Add process name to devcoredump")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>

Thanks,

Will pick up and apply as soon as our CI is fit for fight.
/Thomas



> ---
>  drivers/gpu/drm/xe/xe_devcoredump.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_devcoredump.c
> b/drivers/gpu/drm/xe/xe_devcoredump.c
> index 1643d44f8bc4..1973bfaece40 100644
> --- a/drivers/gpu/drm/xe/xe_devcoredump.c
> +++ b/drivers/gpu/drm/xe/xe_devcoredump.c
> @@ -181,7 +181,7 @@ static void devcoredump_snapshot(struct
> xe_devcoredump *coredump,
>  		if (task)
>  			process_name = task->comm;
>  	}
> -	snprintf(ss->process_name, sizeof(ss->process_name),
> process_name);
> +	strscpy(ss->process_name, process_name);
>  	if (task)
>  		put_task_struct(task);
>  


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

* ✓ CI.Patch_applied: success for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (3 preceding siblings ...)
  2024-05-28 14:46 ` [PATCH] " Thomas Hellström
@ 2024-05-29 17:40 ` Patchwork
  2024-05-29 17:40 ` ✗ CI.checkpatch: warning " Patchwork
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:40 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 55d6179b96e0 drm-tip: 2024y-05m-29d-17h-29m-17s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: replace format-less snprintf() with strscpy()



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

* ✗ CI.checkpatch: warning for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (4 preceding siblings ...)
  2024-05-29 17:40 ` ✓ CI.Patch_applied: success for drm/xe: replace format-less snprintf() with strscpy() (rev2) Patchwork
@ 2024-05-29 17:40 ` Patchwork
  2024-05-29 17:41 ` ✓ CI.KUnit: success " Patchwork
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:40 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 6ace848605f9ac54bf691cb53c8386b6894898dd
Author: Arnd Bergmann <arnd@arndb.de>
Date:   Tue May 28 15:32:36 2024 +0200

    drm/xe: replace format-less snprintf() with strscpy()
    
    Using snprintf() with a format string from task->comm is a bit
    dangerous since the string may be controlled by unprivileged
    userspace:
    
    drivers/gpu/drm/xe/xe_devcoredump.c: In function 'devcoredump_snapshot':
    drivers/gpu/drm/xe/xe_devcoredump.c:184:9: error: format not a string literal and no format arguments [-Werror=format-security]
      184 |         snprintf(ss->process_name, sizeof(ss->process_name), process_name);
          |         ^~~~~~~~
    
    In this case there is no reason for an snprintf(), so use a simpler
    string copy.
    
    Fixes: b10d0c5e9df7 ("drm/xe: Add process name to devcoredump")
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
    Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
+ /mt/dim checkpatch 55d6179b96e0390025f2ba101c03b94b50cab7a1 drm-intel
6ace848605f9 drm/xe: replace format-less snprintf() with strscpy()
-:15: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#15: 
  184 |         snprintf(ss->process_name, sizeof(ss->process_name), process_name);

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



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

* ✓ CI.KUnit: success for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (5 preceding siblings ...)
  2024-05-29 17:40 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-29 17:41 ` Patchwork
  2024-05-29 17:53 ` ✓ CI.Build: " Patchwork
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:41 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:40:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:40:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

[17:41:25] Starting KUnit Kernel (1/1)...
[17:41:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:41:25] =================== guc_dbm (7 subtests) ===================
[17:41:25] [PASSED] test_empty
[17:41:25] [PASSED] test_default
[17:41:25] ======================== test_size  ========================
[17:41:25] [PASSED] 4
[17:41:25] [PASSED] 8
[17:41:25] [PASSED] 32
[17:41:25] [PASSED] 256
[17:41:25] ==================== [PASSED] test_size ====================
[17:41:25] ======================= test_reuse  ========================
[17:41:25] [PASSED] 4
[17:41:25] [PASSED] 8
[17:41:25] [PASSED] 32
[17:41:25] [PASSED] 256
[17:41:25] =================== [PASSED] test_reuse ====================
[17:41:25] =================== test_range_overlap  ====================
[17:41:25] [PASSED] 4
[17:41:25] [PASSED] 8
[17:41:25] [PASSED] 32
[17:41:25] [PASSED] 256
[17:41:25] =============== [PASSED] test_range_overlap ================
[17:41:25] =================== test_range_compact  ====================
[17:41:25] [PASSED] 4
[17:41:25] [PASSED] 8
[17:41:25] [PASSED] 32
[17:41:25] [PASSED] 256
[17:41:25] =============== [PASSED] test_range_compact ================
[17:41:25] ==================== test_range_spare  =====================
[17:41:25] [PASSED] 4
[17:41:25] [PASSED] 8
[17:41:25] [PASSED] 32
[17:41:25] [PASSED] 256
[17:41:25] ================ [PASSED] test_range_spare =================
[17:41:25] ===================== [PASSED] guc_dbm =====================
[17:41:25] =================== guc_idm (6 subtests) ===================
[17:41:25] [PASSED] bad_init
[17:41:25] [PASSED] no_init
[17:41:25] [PASSED] init_fini
[17:41:25] [PASSED] check_used
[17:41:25] [PASSED] check_quota
[17:41:25] [PASSED] check_all
[17:41:25] ===================== [PASSED] guc_idm =====================
[17:41:25] ================== no_relay (3 subtests) ===================
[17:41:25] [PASSED] xe_drops_guc2pf_if_not_ready
[17:41:25] [PASSED] xe_drops_guc2vf_if_not_ready
[17:41:25] [PASSED] xe_rejects_send_if_not_ready
[17:41:25] ==================== [PASSED] no_relay =====================
[17:41:25] ================== pf_relay (14 subtests) ==================
[17:41:25] [PASSED] pf_rejects_guc2pf_too_short
[17:41:25] [PASSED] pf_rejects_guc2pf_too_long
[17:41:25] [PASSED] pf_rejects_guc2pf_no_payload
[17:41:25] [PASSED] pf_fails_no_payload
[17:41:25] [PASSED] pf_fails_bad_origin
[17:41:25] [PASSED] pf_fails_bad_type
[17:41:25] [PASSED] pf_txn_reports_error
[17:41:25] [PASSED] pf_txn_sends_pf2guc
[17:41:25] [PASSED] pf_sends_pf2guc
[17:41:25] [SKIPPED] pf_loopback_nop
[17:41:25] [SKIPPED] pf_loopback_echo
[17:41:25] [SKIPPED] pf_loopback_fail
[17:41:25] [SKIPPED] pf_loopback_busy
[17:41:25] [SKIPPED] pf_loopback_retry
[17:41:25] ==================== [PASSED] pf_relay =====================
[17:41:25] ================== vf_relay (3 subtests) ===================
[17:41:25] [PASSED] vf_rejects_guc2vf_too_short
[17:41:25] [PASSED] vf_rejects_guc2vf_too_long
[17:41:25] [PASSED] vf_rejects_guc2vf_no_payload
[17:41:25] ==================== [PASSED] vf_relay =====================
[17:41:25] ================= pf_service (11 subtests) =================
[17:41:25] [PASSED] pf_negotiate_any
[17:41:25] [PASSED] pf_negotiate_base_match
[17:41:25] [PASSED] pf_negotiate_base_newer
[17:41:25] [PASSED] pf_negotiate_base_next
[17:41:25] [SKIPPED] pf_negotiate_base_older
[17:41:25] [PASSED] pf_negotiate_base_prev
[17:41:25] [PASSED] pf_negotiate_latest_match
[17:41:25] [PASSED] pf_negotiate_latest_newer
[17:41:25] [PASSED] pf_negotiate_latest_next
[17:41:25] [SKIPPED] pf_negotiate_latest_older
[17:41:25] [SKIPPED] pf_negotiate_latest_prev
[17:41:25] =================== [PASSED] pf_service ====================
[17:41:25] ===================== lmtt (1 subtest) =====================
[17:41:25] ======================== test_ops  =========================
[17:41:25] [PASSED] 2-level
[17:41:25] [PASSED] multi-level
[17:41:25] ==================== [PASSED] test_ops =====================
[17:41:25] ====================== [PASSED] lmtt =======================
[17:41:25] ==================== xe_bo (2 subtests) ====================
[17:41:25] [SKIPPED] xe_ccs_migrate_kunit
[17:41:25] [SKIPPED] xe_bo_evict_kunit
[17:41:25] ===================== [SKIPPED] xe_bo ======================
[17:41:25] ================== xe_dma_buf (1 subtest) ==================
[17:41:25] [SKIPPED] xe_dma_buf_kunit
[17:41:25] =================== [SKIPPED] xe_dma_buf ===================
[17:41:25] ================== xe_migrate (1 subtest) ==================
[17:41:25] [SKIPPED] xe_migrate_sanity_kunit
[17:41:25] =================== [SKIPPED] xe_migrate ===================
[17:41:25] =================== xe_mocs (2 subtests) ===================
[17:41:25] [SKIPPED] xe_live_mocs_kernel_kunit
[17:41:25] [SKIPPED] xe_live_mocs_reset_kunit
[17:41:25] ==================== [SKIPPED] xe_mocs =====================
[17:41:25] ==================== args (11 subtests) ====================
[17:41:25] [PASSED] count_args_test
[17:41:25] [PASSED] call_args_example
[17:41:25] [PASSED] call_args_test
[17:41:25] [PASSED] drop_first_arg_example
[17:41:25] [PASSED] drop_first_arg_test
[17:41:25] [PASSED] first_arg_example
[17:41:25] [PASSED] first_arg_test
[17:41:25] [PASSED] last_arg_example
[17:41:25] [PASSED] last_arg_test
[17:41:25] [PASSED] pick_arg_example
[17:41:25] [PASSED] sep_comma_example
[17:41:25] ====================== [PASSED] args =======================
[17:41:25] =================== xe_pci (2 subtests) ====================
[17:41:25] [PASSED] xe_gmdid_graphics_ip
[17:41:25] [PASSED] xe_gmdid_media_ip
[17:41:25] ===================== [PASSED] xe_pci ======================
[17:41:25] ==================== xe_rtp (1 subtest) ====================
[17:41:25] ================== xe_rtp_process_tests  ===================
[17:41:25] [PASSED] coalesce-same-reg
[17:41:25] [PASSED] no-match-no-add
[17:41:25] [PASSED] no-match-no-add-multiple-rules
[17:41:25] [PASSED] two-regs-two-entries
[17:41:25] [PASSED] clr-one-set-other
[17:41:25] [PASSED] set-field
[17:41:25] [PASSED] conflict-duplicate
[17:41:25] [PASSED] conflict-not-disjoint
[17:41:25] [PASSED] conflict-reg-type
[17:41:25] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[17:41:25] ===================== [PASSED] xe_rtp ======================
[17:41:25] ==================== xe_wa (1 subtest) =====================
[17:41:25] ======================== xe_wa_gt  =========================
[17:41:25] [PASSED] TIGERLAKE (B0)
[17:41:25] [PASSED] DG1 (A0)
[17:41:25] [PASSED] DG1 (B0)
[17:41:25] [PASSED] ALDERLAKE_S (A0)
[17:41:25] [PASSED] ALDERLAKE_S (B0)
[17:41:25] [PASSED] ALDERLAKE_S (C0)
[17:41:25] [PASSED] ALDERLAKE_S (D0)
[17:41:25] [PASSED] ALDERLAKE_P (A0)
[17:41:25] [PASSED] ALDERLAKE_P (B0)
[17:41:25] [PASSED] ALDERLAKE_P (C0)
[17:41:25] [PASSED] ALDERLAKE_S_RPLS (D0)
[17:41:25] [PASSED] ALDERLAKE_P_RPLU (E0)
[17:41:25] [PASSED] DG2_G10 (C0)
[17:41:25] [PASSED] DG2_G11 (B1)
[17:41:25] [PASSED] DG2_G12 (A1)
[17:41:25] [PASSED] METEORLAKE (g:A0, m:A0)
[17:41:25] [PASSED] METEORLAKE (g:A0, m:A0)
[17:41:25] [PASSED] METEORLAKE (g:A0, m:A0)
[17:41:25] [PASSED] LUNARLAKE (g:A0, m:A0)
[17:41:25] [PASSED] LUNARLAKE (g:B0, m:A0)
[17:41:25] ==================== [PASSED] xe_wa_gt =====================
[17:41:25] ====================== [PASSED] xe_wa ======================
[17:41:25] ============================================================
[17:41:25] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[17:41:25] Elapsed time: 30.820s total, 4.304s configuring, 26.245s building, 0.220s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:41:25] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:41:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
  156 | u64 ioread64_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
  163 | u64 ioread64_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
  170 | u64 ioread64be_lo_hi(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
  178 | u64 ioread64be_hi_lo(const void __iomem *addr)
      |     ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
  264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
  272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
  280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
  288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
      |      ^~~~~~~~~~~~~~~~~

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

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



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

* ✓ CI.Build: success for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (6 preceding siblings ...)
  2024-05-29 17:41 ` ✓ CI.KUnit: success " Patchwork
@ 2024-05-29 17:53 ` Patchwork
  2024-05-29 17:54 ` ✗ CI.Hooks: failure " Patchwork
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:53 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/
lib/modules/6.10.0-rc1-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc1-xe/build
lib/modules/6.10.0-rc1-xe/modules.alias.bin
lib/modules/6.10.0-rc1-xe/modules.builtin
lib/modules/6.10.0-rc1-xe/modules.softdep
lib/modules/6.10.0-rc1-xe/modules.alias
lib/modules/6.10.0-rc1-xe/modules.order
lib/modules/6.10.0-rc1-xe/modules.symbols
lib/modules/6.10.0-rc1-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
^[[0Ksection_end:1717005207:package_x86_64_nodebug
^[[0K
+ echo -e '\e[0Ksection_end:1717005207:package_x86_64_nodebug\r\e[0K'
+ sync
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



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

* ✗ CI.Hooks: failure for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (7 preceding siblings ...)
  2024-05-29 17:53 ` ✓ CI.Build: " Patchwork
@ 2024-05-29 17:54 ` Patchwork
  2024-05-29 17:55 ` ✓ CI.checksparse: success " Patchwork
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:54 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : failure

== Summary ==

run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
  GEN     Makefile
  UPD     include/generated/compile.h
  UPD     include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool 
  UPD     include/generated/utsrelease.h
  HOSTCC  /workspace/kernel/build64-default/tools/objtool/fixdep.o
  CALL    ../scripts/checksyscalls.sh
  HOSTLD  /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/fixdep
  INSTALL libsubcmd_headers
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
  CC      /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
  LD      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
  AR      /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
  CC      /workspace/kernel/build64-default/tools/objtool/weak.o
  CC      /workspace/kernel/build64-default/tools/objtool/check.o
  CC      /workspace/kernel/build64-default/tools/objtool/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/builtin-check.o
  CC      /workspace/kernel/build64-default/tools/objtool/elf.o
  CC      /workspace/kernel/build64-default/tools/objtool/objtool.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_gen.o
  CC      /workspace/kernel/build64-default/tools/objtool/orc_dump.o
  CC      /workspace/kernel/build64-default/tools/objtool/libstring.o
  CC      /workspace/kernel/build64-default/tools/objtool/libctype.o
  CC      /workspace/kernel/build64-default/tools/objtool/str_error_r.o
  CC      /workspace/kernel/build64-default/tools/objtool/librbtree.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
  CC      /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
  LD      /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
  LD      /workspace/kernel/build64-default/tools/objtool/objtool-in.o
  LINK    /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'.  Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2



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

* ✓ CI.checksparse: success for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (8 preceding siblings ...)
  2024-05-29 17:54 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-05-29 17:55 ` Patchwork
  2024-05-29 18:19 ` ✓ CI.BAT: " Patchwork
  2024-05-29 20:30 ` ✗ CI.FULL: failure " Patchwork
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 17:55 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 55d6179b96e0390025f2ba101c03b94b50cab7a1
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!

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



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

* ✓ CI.BAT: success for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (9 preceding siblings ...)
  2024-05-29 17:55 ` ✓ CI.checksparse: success " Patchwork
@ 2024-05-29 18:19 ` Patchwork
  2024-05-29 20:30 ` ✗ CI.FULL: failure " Patchwork
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 18:19 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : success

== Summary ==

CI Bug Log - changes from xe-1373-04a18ea4732fe1473b708b39411684662aced11d_BAT -> xe-pw-134140v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (5 -> 5)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-134140v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
    - bat-atsm-2:         NOTRUN -> [SKIP][1] ([Intel XE#288]) +32 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-atsm-2:         [INCOMPLETE][2] ([Intel XE#1972]) -> [PASS][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html

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

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


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

  * Linux: xe-1373-04a18ea4732fe1473b708b39411684662aced11d -> xe-pw-134140v2

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1373-04a18ea4732fe1473b708b39411684662aced11d: 04a18ea4732fe1473b708b39411684662aced11d
  xe-pw-134140v2: 134140v2

== Logs ==

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

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

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

* ✗ CI.FULL: failure for drm/xe: replace format-less snprintf() with strscpy() (rev2)
  2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
                   ` (10 preceding siblings ...)
  2024-05-29 18:19 ` ✓ CI.BAT: " Patchwork
@ 2024-05-29 20:30 ` Patchwork
  11 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-29 20:30 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe: replace format-less snprintf() with strscpy() (rev2)
URL   : https://patchwork.freedesktop.org/series/134140/
State : failure

== Summary ==

CI Bug Log - changes from xe-1373-04a18ea4732fe1473b708b39411684662aced11d_full -> xe-pw-134140v2_full
====================================================

Summary
-------

  **WARNING**

  Minor unknown changes coming with xe-pw-134140v2_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-134140v2_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 (3 -> 3)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-134140v2_full:

### IGT changes ###

#### Warnings ####

  * igt@xe_exec_threads@threads-hang-shared-vm-basic:
    - shard-adlp:         [DMESG-WARN][1] ([Intel XE#1214] / [Intel XE#358]) -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-6/igt@xe_exec_threads@threads-hang-shared-vm-basic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-2/igt@xe_exec_threads@threads-hang-shared-vm-basic.html

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

  Here are the changes found in xe-pw-134140v2_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@intel_hwmon@hwmon-read:
    - shard-adlp:         NOTRUN -> [SKIP][3] ([Intel XE#1125] / [Intel XE#1201])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][4] ([Intel XE#1201] / [Intel XE#619])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#607])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][6] ([Intel XE#1201] / [Intel XE#316]) +4 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         NOTRUN -> [FAIL][7] ([Intel XE#1242])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-adlp:         NOTRUN -> [FAIL][8] ([Intel XE#1874]) +7 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][9] ([Intel XE#1124] / [Intel XE#1201]) +10 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_bw@linear-tiling-1-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
    - shard-adlp:         NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +37 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html

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

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#1252])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-adlp:         NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
    - shard-adlp:         NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#373]) +10 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html

  * igt@kms_content_protection@legacy:
    - shard-adlp:         NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#455]) +29 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-dg2-set2:     [PASS][18] -> [DMESG-WARN][19] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#323]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-dg2-set2:     [PASS][21] -> [DMESG-WARN][22] ([Intel XE#1214] / [Intel XE#282]) +3 other tests dmesg-warn
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#309]) +7 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2-set2:     [PASS][24] -> [DMESG-WARN][25] ([Intel XE#282]) +1 other test dmesg-warn
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_feature_discovery@display-4x:
    - shard-adlp:         NOTRUN -> [SKIP][26] ([Intel XE#1138] / [Intel XE#1201])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_feature_discovery@display-4x.html

  * igt@kms_flip@2x-nonexisting-fb-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#310]) +7 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][28] ([Intel XE#651]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [FAIL][29] ([Intel XE#1861]) +1 other test fail
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#651]) +17 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-adlp:         NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#653]) +19 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-adlp:         NOTRUN -> [SKIP][32] ([Intel XE#1151] / [Intel XE#1201])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#656]) +47 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#356])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-source-clamping@pipe-a:
    - shard-adlp:         NOTRUN -> [FAIL][35] ([Intel XE#1331] / [Intel XE#1978]) +2 other tests fail
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-a.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
    - shard-dg2-set2:     [PASS][36] -> [FAIL][37] ([Intel XE#361])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#305]) +5 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html

  * igt@kms_pm_backlight@fade:
    - shard-adlp:         NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#870])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#734])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-adlp:         NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#836])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][43] ([Intel XE#1201]) +5 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html

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

  * igt@kms_psr@psr2-cursor-plane-move:
    - shard-dg2-set2:     NOTRUN -> [SKIP][45] ([Intel XE#929]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-move.html

  * igt@kms_psr@psr2-primary-page-flip:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#929]) +20 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_psr@psr2-primary-page-flip.html

  * igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][47] ([Intel XE#294]) +1 other test fail
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_rmfb@close-fd@pipe-a-hdmi-a-1.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-adlp:         NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#327])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_rotation_crc@bad-pixel-format.html

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

  * igt@kms_sysfs_edid_timing:
    - shard-adlp:         NOTRUN -> [FAIL][50] ([Intel XE#1174])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_sysfs_edid_timing.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#330])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vblank@ts-continuation-suspend:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][52] ([Intel XE#1034] / [Intel XE#1195]) +1 other test incomplete
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@kms_vblank@ts-continuation-suspend.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-adlp:         NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@xe_ccs@block-multicopy-inplace:
    - shard-adlp:         NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_ccs@block-multicopy-inplace.html

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

  * igt@xe_copy_basic@mem-set-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][56] ([Intel XE#1126] / [Intel XE#1201])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_copy_basic@mem-set-linear-0xfd.html

  * igt@xe_evict@evict-large-cm:
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#261]) +6 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_evict@evict-large-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-dg2-set2:     [PASS][58] -> [TIMEOUT][59] ([Intel XE#1473])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-small.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-mixed-threads-large:
    - shard-dg2-set2:     [PASS][60] -> [TIMEOUT][61] ([Intel XE#1473] / [Intel XE#392])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html

  * igt@xe_evict@evict-small-external-cm:
    - shard-adlp:         NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_evict@evict-small-external-cm.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
    - shard-adlp:         NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#688]) +1 other test skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#1392]) +8 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate:
    - shard-dg2-set2:     NOTRUN -> [SKIP][65] ([Intel XE#288]) +1 other test skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@once-bindexecqueue:
    - shard-adlp:         NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#288]) +30 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_exec_fault_mode@once-bindexecqueue.html

  * igt@xe_exec_reset@cat-error:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][67] ([Intel XE#1214] / [Intel XE#1638] / [Intel XE#358])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_exec_reset@cat-error.html

  * igt@xe_exec_reset@gt-reset-stress:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][68] ([Intel XE#1214] / [Intel XE#1638])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_noexec_ping_pong:
    - shard-adlp:         NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#379])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_noexec_ping_pong.html

  * igt@xe_pat@pat-index-xehpc:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#979])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_pat@pat-index-xehpc.html

  * igt@xe_peer2peer@write:
    - shard-adlp:         NOTRUN -> [SKIP][71] ([Intel XE#1061] / [Intel XE#1201])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_peer2peer@write.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s2idle-vm-bind-prefetch:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][73] ([Intel XE#1195])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-9/igt@xe_pm@s2idle-vm-bind-prefetch.html

  * igt@xe_pm@s4-basic-exec:
    - shard-dg2-set2:     [PASS][74] -> [INCOMPLETE][75] ([Intel XE#1195] / [Intel XE#1358])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-464/igt@xe_pm@s4-basic-exec.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-433/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pm@s4-vm-bind-userptr:
    - shard-adlp:         [PASS][76] -> [DMESG-WARN][77] ([Intel XE#1214])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-2/igt@xe_pm@s4-vm-bind-userptr.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@xe_pm@s4-vm-bind-userptr.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#944]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_wedged@basic-wedged:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][79] ([Intel XE#1214] / [Intel XE#1760])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-1/igt@xe_wedged@basic-wedged.html

  
#### Possible fixes ####

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-adlp:         [DMESG-FAIL][80] ([Intel XE#324]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][82] ([Intel XE#827]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1:
    - shard-adlp:         [DMESG-WARN][84] ([Intel XE#1214] / [Intel XE#324]) -> [PASS][85] +1 other test pass
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - {shard-lnl}:        [FAIL][86] ([Intel XE#1659]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
    - shard-dg2-set2:     [DMESG-WARN][88] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][89] +4 other tests pass
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html

  * igt@kms_cursor_legacy@cursor-vs-flip-legacy:
    - shard-dg2-set2:     [DMESG-WARN][90] ([Intel XE#282]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-adlp:         [DMESG-WARN][92] ([Intel XE#1191] / [Intel XE#1214]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-6/igt@kms_fbcon_fbt@fbc-suspend.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-9/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank:
    - shard-dg2-set2:     [INCOMPLETE][94] ([Intel XE#1195]) -> [PASS][95] +1 other test pass
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_flip@flip-vs-blocking-wf-vblank.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_flip@flip-vs-blocking-wf-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - {shard-lnl}:        [FAIL][96] ([Intel XE#480] / [Intel XE#886]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - {shard-lnl}:        [FAIL][98] ([Intel XE#886]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip@flip-vs-suspend:
    - {shard-lnl}:        [INCOMPLETE][100] -> [PASS][101] +2 other tests pass
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1:
    - {shard-lnl}:        [DMESG-WARN][102] ([Intel XE#1595]) -> [PASS][103] +1 other test pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-5/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [FAIL][104] ([Intel XE#361]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [FAIL][106] ([Intel XE#1729]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_evict@evict-beng-cm-threads-large:
    - shard-dg2-set2:     [TIMEOUT][108] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-436/igt@xe_evict@evict-beng-cm-threads-large.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-dg2-set2:     [TIMEOUT][110] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_reset@gt-reset-stress:
    - {shard-lnl}:        [DMESG-WARN][112] ([Intel XE#1638]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-lnl-8/igt@xe_exec_reset@gt-reset-stress.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-lnl-8/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_gt_freq@freq_fixed_exec:
    - shard-dg2-set2:     [FAIL][114] -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_gt_freq@freq_fixed_exec.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_gt_freq@freq_fixed_exec.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-adlp:         [DMESG-WARN][116] ([Intel XE#1214]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-6/igt@xe_pm@s4-multiple-execs.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-2/igt@xe_pm@s4-multiple-execs.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][118] ([Intel XE#316]) -> [SKIP][119] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-8bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][120] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][121] ([Intel XE#316]) +1 other test skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#1124]) -> [SKIP][123] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2-set2:     [SKIP][124] ([Intel XE#619]) -> [SKIP][125] ([Intel XE#1201] / [Intel XE#619])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     [SKIP][126] ([Intel XE#610]) -> [SKIP][127] ([Intel XE#1201] / [Intel XE#610])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-dg2-set2:     [SKIP][128] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][129] ([Intel XE#1124]) +9 other tests skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_bw@linear-tiling-2-displays-1920x1080p:
    - shard-dg2-set2:     [SKIP][130] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][131] ([Intel XE#367]) +2 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     [SKIP][132] ([Intel XE#367]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][134] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +19 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][136] ([Intel XE#787]) -> [SKIP][137] ([Intel XE#1201] / [Intel XE#787]) +69 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [SKIP][138] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][139] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][140] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][141] ([Intel XE#787]) +34 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][142] -> [INCOMPLETE][143] ([Intel XE#1195]) +1 other test incomplete
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][144] ([Intel XE#1252]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#1252])
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
    - shard-dg2-set2:     [SKIP][146] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][147] ([Intel XE#1252])
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html

  * igt@kms_cdclk@mode-transition@pipe-c-dp-4:
    - shard-dg2-set2:     [SKIP][148] ([Intel XE#314]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-dg2-set2:     [SKIP][150] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][151] ([Intel XE#306])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_chamelium_color@ctm-0-25.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     [SKIP][152] ([Intel XE#306]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#306]) +1 other test skip
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_chamelium_color@ctm-red-to-blue.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@dp-edid-change-during-suspend:
    - shard-dg2-set2:     [SKIP][154] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][155] ([Intel XE#373]) +7 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html

  * igt@kms_chamelium_hpd@vga-hpd:
    - shard-dg2-set2:     [SKIP][156] ([Intel XE#373]) -> [SKIP][157] ([Intel XE#1201] / [Intel XE#373]) +9 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-dg2-set2:     [SKIP][158] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][159] ([Intel XE#307]) +1 other test skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-dg2-set2:     [SKIP][160] ([Intel XE#307]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#307])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2-set2:     [SKIP][162] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][163] ([Intel XE#308])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     [SKIP][164] ([Intel XE#308]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#308])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - shard-dg2-set2:     [SKIP][166] ([Intel XE#323]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#323])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-dg2-set2:     [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][169] ([Intel XE#282]) +6 other tests dmesg-warn
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     [SKIP][170] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][171] ([Intel XE#323])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@single-bo@all-pipes:
    - shard-dg2-set2:     [DMESG-WARN][172] ([Intel XE#282]) -> [DMESG-WARN][173] ([Intel XE#1214] / [Intel XE#282]) +7 other tests dmesg-warn
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_cursor_legacy@single-bo@all-pipes.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_cursor_legacy@single-bo@all-pipes.html

  * igt@kms_feature_discovery@display-4x:
    - shard-dg2-set2:     [SKIP][174] ([Intel XE#1138] / [Intel XE#1201]) -> [SKIP][175] ([Intel XE#1138])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_feature_discovery@display-4x.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_feature_discovery@display-4x.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-dg2-set2:     [SKIP][176] ([Intel XE#1137] / [Intel XE#1201]) -> [SKIP][177] ([Intel XE#1137])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#1135]) -> [SKIP][179] ([Intel XE#1135] / [Intel XE#1201])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_feature_discovery@psr1.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_feature_discovery@psr1.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][180] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][181] ([Intel XE#1135])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_feature_discovery@psr2.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-dg2-set2:     [SKIP][182] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][183] ([Intel XE#455]) +10 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-dg2-set2:     [SKIP][184] ([Intel XE#1201] / [i915#5274]) -> [SKIP][185] ([i915#5274])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
    - shard-dg2-set2:     [SKIP][186] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][187] ([Intel XE#651]) +19 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-dg2-set2:     [SKIP][188] ([Intel XE#658]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#658])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-dg2-set2:     [SKIP][190] ([Intel XE#651]) -> [SKIP][191] ([Intel XE#1201] / [Intel XE#651]) +29 other tests skip
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][192] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][193] ([Intel XE#653]) +22 other tests skip
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-dg2-set2:     [SKIP][194] ([Intel XE#653]) -> [SKIP][195] ([Intel XE#1201] / [Intel XE#653]) +28 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - shard-dg2-set2:     [DMESG-WARN][196] ([Intel XE#1162]) -> [DMESG-WARN][197] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
    - shard-dg2-set2:     [SKIP][198] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][200] ([Intel XE#498]) -> [SKIP][201] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
    - shard-dg2-set2:     [SKIP][202] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][203] ([Intel XE#305] / [Intel XE#455]) +4 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
    - shard-dg2-set2:     [SKIP][204] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][205] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][206] ([Intel XE#305]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [SKIP][208] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][209] ([Intel XE#305]) +8 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-dg2-set2:     [SKIP][210] ([Intel XE#870]) -> [SKIP][211] ([Intel XE#1201] / [Intel XE#870]) +1 other test skip
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2-set2:     [SKIP][212] ([Intel XE#1129]) -> [SKIP][213] ([Intel XE#1129] / [Intel XE#1201])
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     [SKIP][214] ([Intel XE#929]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#929]) +19 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][216] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][217] ([Intel XE#929]) +11 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_psr@pr-cursor-plane-onoff.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_rotation_crc@bad-tiling:
    - shard-dg2-set2:     [SKIP][218] ([Intel XE#327]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][220] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][221] ([Intel XE#327]) +3 other tests skip
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-dg2-set2:     [SKIP][222] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][223] ([Intel XE#330])
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flipline:
    - shard-dg2-set2:     [SKIP][224] ([Intel XE#455]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#455]) +25 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_vrr@flipline.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_vrr@flipline.html

  * igt@kms_writeback@writeback-check-output-xrgb2101010:
    - shard-dg2-set2:     [SKIP][226] ([Intel XE#756]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#756])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-dg2-set2:     [SKIP][228] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][229] ([Intel XE#756])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@sriov_basic@enable-vfs-autoprobe-on:
    - shard-dg2-set2:     [SKIP][230] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][231] ([Intel XE#1091])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-on.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][232] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][233] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_compute_preempt@compute-preempt-many:
    - shard-dg2-set2:     [SKIP][234] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][235] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][236] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][237] ([Intel XE#1126])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_copy_basic@mem-set-linear-0xfffe:
    - shard-dg2-set2:     [SKIP][238] ([Intel XE#1126]) -> [SKIP][239] ([Intel XE#1126] / [Intel XE#1201]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html

  * igt@xe_exec_fault_mode@once-basic-imm:
    - shard-dg2-set2:     [SKIP][240] ([Intel XE#288]) -> [SKIP][241] ([Intel XE#1201] / [Intel XE#288]) +24 other tests skip
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_exec_fault_mode@once-basic-imm.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
    - shard-dg2-set2:     [SKIP][242] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][243] ([Intel XE#288]) +16 other tests skip
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html

  * igt@xe_exec_reset@gt-reset-stress:
    - shard-dg2-set2:     [DMESG-WARN][244] ([Intel XE#1214] / [Intel XE#1638]) -> [DMESG-WARN][245] ([Intel XE#1638])
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_exec_reset@gt-reset-stress.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_exec_reset@gt-reset-stress.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     [SKIP][246] ([Intel XE#560]) -> [SKIP][247] ([Intel XE#1201] / [Intel XE#560])
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_media_fill@media-fill.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_media_fill@media-fill.html

  * igt@xe_mmap@small-bar:
    - shard-dg2-set2:     [SKIP][248] ([Intel XE#512]) -> [SKIP][249] ([Intel XE#1201] / [Intel XE#512])
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_mmap@small-bar.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@force-load:
    - shard-dg2-set2:     [SKIP][250] ([Intel XE#1201] / [Intel XE#378]) -> [SKIP][251] ([Intel XE#378])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_module_load@force-load.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_module_load@force-load.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     [SKIP][252] ([Intel XE#378]) -> [SKIP][253] ([Intel XE#1201] / [Intel XE#378])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_module_load@load.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_module_load@load.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][254] ([Intel XE#366]) -> [SKIP][255] ([Intel XE#1201] / [Intel XE#366])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     [SKIP][256] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][257] ([Intel XE#366]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_pm@s2idle-d3cold-basic-exec.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s3-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][258] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][259] ([Intel XE#1162])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_pm@s3-basic-exec.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_pm@s3-basic-exec.html

  * igt@xe_pm@s3-d3hot-basic-exec:
    - shard-dg2-set2:     [DMESG-WARN][260] ([Intel XE#1162] / [Intel XE#1214]) -> [INCOMPLETE][261] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358] / [Intel XE#569])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-adlp:         [INCOMPLETE][262] ([Intel XE#1195]) -> [DMESG-WARN][263] ([Intel XE#1214])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-9/igt@xe_pm@s3-vm-bind-prefetch.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-6/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_pm@s4-d3hot-basic-exec:
    - shard-adlp:         [ABORT][264] ([Intel XE#1358]) -> [DMESG-WARN][265] ([Intel XE#1214])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-adlp-9/igt@xe_pm@s4-d3hot-basic-exec.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-adlp-8/igt@xe_pm@s4-d3hot-basic-exec.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][266] ([Intel XE#944]) -> [SKIP][267] ([Intel XE#1201] / [Intel XE#944]) +2 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-466/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-uc-fw-version-guc:
    - shard-dg2-set2:     [SKIP][268] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][269] ([Intel XE#944]) +1 other test skip
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1373-04a18ea4732fe1473b708b39411684662aced11d/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134140v2/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html

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

  [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
  [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
  [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
  [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
  [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
  [Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
  [Intel XE#1191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1191
  [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
  [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
  [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
  [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
  [Intel XE#1242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1242
  [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1331
  [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
  [Intel XE#1388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1388
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
  [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
  [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
  [Intel XE#1494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1494
  [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
  [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
  [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
  [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
  [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
  [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
  [Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
  [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1978]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1978
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
  [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
  [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358
  [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
  [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
  [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
  [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
  [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274


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

  * Linux: xe-1373-04a18ea4732fe1473b708b39411684662aced11d -> xe-pw-134140v2

  IGT_7873: b9bcded9123ac56ce05748de6c4870fb49451b87 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1373-04a18ea4732fe1473b708b39411684662aced11d: 04a18ea4732fe1473b708b39411684662aced11d
  xe-pw-134140v2: 134140v2

== Logs ==

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

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

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

end of thread, other threads:[~2024-05-29 20:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-28 13:32 [PATCH] drm/xe: replace format-less snprintf() with strscpy() Arnd Bergmann
2024-05-28 13:39 ` ✓ CI.Patch_applied: success for " Patchwork
2024-05-28 13:39 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-28 13:40 ` ✗ CI.KUnit: failure " Patchwork
2024-05-28 14:46 ` [PATCH] " Thomas Hellström
2024-05-29 17:40 ` ✓ CI.Patch_applied: success for drm/xe: replace format-less snprintf() with strscpy() (rev2) Patchwork
2024-05-29 17:40 ` ✗ CI.checkpatch: warning " Patchwork
2024-05-29 17:41 ` ✓ CI.KUnit: success " Patchwork
2024-05-29 17:53 ` ✓ CI.Build: " Patchwork
2024-05-29 17:54 ` ✗ CI.Hooks: failure " Patchwork
2024-05-29 17:55 ` ✓ CI.checksparse: success " Patchwork
2024-05-29 18:19 ` ✓ CI.BAT: " Patchwork
2024-05-29 20:30 ` ✗ CI.FULL: failure " Patchwork

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