* [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs
@ 2024-06-05 15:08 Jonathan Cavitt
2024-06-05 15:28 ` ✓ CI.Patch_applied: success for " Patchwork
` (9 more replies)
0 siblings, 10 replies; 18+ messages in thread
From: Jonathan Cavitt @ 2024-06-05 15:08 UTC (permalink / raw)
To: intel-xe
Cc: saurabhg.gupta, jonathan.cavitt, matthew.brost, john.c.harrison,
stuart.summers
We currently have debugfs support that allows the userspace to initiate
an asynchronous gt reset on command. However, userspace may also wish
to wait for the completion of the gt reset before performing any
additional work. To that end, add a version of the force_reset gt
debugfs function that operates synchronously.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068
Suggested-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: John Harrison <john.c.harrison@intel.com>
CC: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c
index 66f897a9b6ca9..5e7fd937917a1 100644
--- a/drivers/gpu/drm/xe/xe_gt_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c
@@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p)
return 0;
}
+static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p)
+{
+ xe_pm_runtime_get(gt_to_xe(gt));
+ xe_gt_reset_async(gt);
+ xe_pm_runtime_put(gt_to_xe(gt));
+
+ flush_work(>->reset.worker);
+
+ return 0;
+}
+
static int sa_info(struct xe_gt *gt, struct drm_printer *p)
{
struct xe_tile *tile = gt_to_tile(gt);
@@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p)
static const struct drm_info_list debugfs_list[] = {
{"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines},
{"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset},
+ {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync},
{"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info},
{"topology", .show = xe_gt_debugfs_simple_show, .data = topology},
{"steering", .show = xe_gt_debugfs_simple_show, .data = steering},
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* ✓ CI.Patch_applied: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt @ 2024-06-05 15:28 ` Patchwork 2024-06-05 15:28 ` ✓ CI.checkpatch: " Patchwork ` (8 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:28 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : success == Summary == === Applying kernel patches on branch 'drm-tip' with base: === Base commit: a49454548363 drm-tip: 2024y-06m-05d-12h-34m-40s UTC integration manifest === git am output follows === Applying: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.checkpatch: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt 2024-06-05 15:28 ` ✓ CI.Patch_applied: success for " Patchwork @ 2024-06-05 15:28 ` Patchwork 2024-06-05 15:29 ` ✓ CI.KUnit: " Patchwork ` (7 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:28 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : success == 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 46a5917198a6ee030bfa72e6e86cec86ca31e33f Author: Jonathan Cavitt <jonathan.cavitt@intel.com> Date: Wed Jun 5 08:08:28 2024 -0700 drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs We currently have debugfs support that allows the userspace to initiate an asynchronous gt reset on command. However, userspace may also wish to wait for the completion of the gt reset before performing any additional work. To that end, add a version of the force_reset gt debugfs function that operates synchronously. Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 Suggested-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> CC: John Harrison <john.c.harrison@intel.com> CC: Stuart Summers <stuart.summers@intel.com> + /mt/dim checkpatch a494545483635d3d93d19e8f483f61e7d4198383 drm-intel 46a5917198a6 drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.KUnit: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt 2024-06-05 15:28 ` ✓ CI.Patch_applied: success for " Patchwork 2024-06-05 15:28 ` ✓ CI.checkpatch: " Patchwork @ 2024-06-05 15:29 ` Patchwork 2024-06-05 15:41 ` ✓ CI.Build: " Patchwork ` (6 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:29 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [15:28:45] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [15:28:50] 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) | ^~~~~~~~~~~~~~~~~ [15:29:15] Starting KUnit Kernel (1/1)... [15:29:15] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [15:29:15] =================== guc_dbm (7 subtests) =================== [15:29:15] [PASSED] test_empty [15:29:15] [PASSED] test_default [15:29:15] ======================== test_size ======================== [15:29:15] [PASSED] 4 [15:29:15] [PASSED] 8 [15:29:15] [PASSED] 32 [15:29:15] [PASSED] 256 [15:29:15] ==================== [PASSED] test_size ==================== [15:29:15] ======================= test_reuse ======================== [15:29:15] [PASSED] 4 [15:29:15] [PASSED] 8 [15:29:15] [PASSED] 32 [15:29:15] [PASSED] 256 [15:29:15] =================== [PASSED] test_reuse ==================== [15:29:15] =================== test_range_overlap ==================== [15:29:15] [PASSED] 4 [15:29:15] [PASSED] 8 [15:29:15] [PASSED] 32 [15:29:15] [PASSED] 256 [15:29:15] =============== [PASSED] test_range_overlap ================ [15:29:15] =================== test_range_compact ==================== [15:29:15] [PASSED] 4 [15:29:15] [PASSED] 8 [15:29:15] [PASSED] 32 [15:29:15] [PASSED] 256 [15:29:15] =============== [PASSED] test_range_compact ================ [15:29:15] ==================== test_range_spare ===================== [15:29:15] [PASSED] 4 [15:29:15] [PASSED] 8 [15:29:15] [PASSED] 32 [15:29:15] [PASSED] 256 [15:29:15] ================ [PASSED] test_range_spare ================= [15:29:15] ===================== [PASSED] guc_dbm ===================== [15:29:15] =================== guc_idm (6 subtests) =================== [15:29:15] [PASSED] bad_init [15:29:15] [PASSED] no_init [15:29:15] [PASSED] init_fini [15:29:15] [PASSED] check_used [15:29:15] [PASSED] check_quota [15:29:15] [PASSED] check_all [15:29:15] ===================== [PASSED] guc_idm ===================== [15:29:15] ================== no_relay (3 subtests) =================== [15:29:15] [PASSED] xe_drops_guc2pf_if_not_ready [15:29:15] [PASSED] xe_drops_guc2vf_if_not_ready [15:29:15] [PASSED] xe_rejects_send_if_not_ready [15:29:15] ==================== [PASSED] no_relay ===================== [15:29:15] ================== pf_relay (14 subtests) ================== [15:29:15] [PASSED] pf_rejects_guc2pf_too_short [15:29:15] [PASSED] pf_rejects_guc2pf_too_long [15:29:15] [PASSED] pf_rejects_guc2pf_no_payload [15:29:15] [PASSED] pf_fails_no_payload [15:29:15] [PASSED] pf_fails_bad_origin [15:29:15] [PASSED] pf_fails_bad_type [15:29:15] [PASSED] pf_txn_reports_error [15:29:15] [PASSED] pf_txn_sends_pf2guc [15:29:15] [PASSED] pf_sends_pf2guc [15:29:15] [SKIPPED] pf_loopback_nop [15:29:15] [SKIPPED] pf_loopback_echo [15:29:15] [SKIPPED] pf_loopback_fail [15:29:15] [SKIPPED] pf_loopback_busy [15:29:15] [SKIPPED] pf_loopback_retry [15:29:15] ==================== [PASSED] pf_relay ===================== [15:29:15] ================== vf_relay (3 subtests) =================== [15:29:15] [PASSED] vf_rejects_guc2vf_too_short [15:29:15] [PASSED] vf_rejects_guc2vf_too_long [15:29:15] [PASSED] vf_rejects_guc2vf_no_payload [15:29:15] ==================== [PASSED] vf_relay ===================== [15:29:15] ================= pf_service (11 subtests) ================= [15:29:15] [PASSED] pf_negotiate_any [15:29:15] [PASSED] pf_negotiate_base_match [15:29:15] [PASSED] pf_negotiate_base_newer [15:29:15] [PASSED] pf_negotiate_base_next [15:29:15] [SKIPPED] pf_negotiate_base_older [15:29:15] [PASSED] pf_negotiate_base_prev [15:29:15] [PASSED] pf_negotiate_latest_match [15:29:15] [PASSED] pf_negotiate_latest_newer [15:29:15] [PASSED] pf_negotiate_latest_next [15:29:15] [SKIPPED] pf_negotiate_latest_older [15:29:15] [SKIPPED] pf_negotiate_latest_prev [15:29:15] =================== [PASSED] pf_service ==================== [15:29:15] ===================== lmtt (1 subtest) ===================== [15:29:15] ======================== test_ops ========================= [15:29:15] [PASSED] 2-level [15:29:15] [PASSED] multi-level [15:29:15] ==================== [PASSED] test_ops ===================== [15:29:15] ====================== [PASSED] lmtt ======================= [15:29:15] ==================== xe_bo (2 subtests) ==================== [15:29:15] [SKIPPED] xe_ccs_migrate_kunit [15:29:15] [SKIPPED] xe_bo_evict_kunit [15:29:15] ===================== [SKIPPED] xe_bo ====================== [15:29:15] ================== xe_dma_buf (1 subtest) ================== [15:29:15] [SKIPPED] xe_dma_buf_kunit [15:29:15] =================== [SKIPPED] xe_dma_buf =================== [15:29:15] ================== xe_migrate (1 subtest) ================== [15:29:15] [SKIPPED] xe_migrate_sanity_kunit [15:29:15] =================== [SKIPPED] xe_migrate =================== [15:29:15] =================== xe_mocs (2 subtests) =================== [15:29:15] [SKIPPED] xe_live_mocs_kernel_kunit [15:29:15] [SKIPPED] xe_live_mocs_reset_kunit [15:29:15] ==================== [SKIPPED] xe_mocs ===================== [15:29:15] ==================== args (11 subtests) ==================== [15:29:15] [PASSED] count_args_test [15:29:15] [PASSED] call_args_example [15:29:15] [PASSED] call_args_test [15:29:15] [PASSED] drop_first_arg_example [15:29:15] [PASSED] drop_first_arg_test [15:29:15] [PASSED] first_arg_example [15:29:15] [PASSED] first_arg_test [15:29:15] [PASSED] last_arg_example [15:29:15] [PASSED] last_arg_test [15:29:15] [PASSED] pick_arg_example [15:29:15] [PASSED] sep_comma_example [15:29:15] ====================== [PASSED] args ======================= [15:29:15] =================== xe_pci (2 subtests) ==================== [15:29:15] [PASSED] xe_gmdid_graphics_ip [15:29:15] [PASSED] xe_gmdid_media_ip [15:29:15] ===================== [PASSED] xe_pci ====================== [15:29:15] ==================== xe_rtp (1 subtest) ==================== [15:29:15] ================== xe_rtp_process_tests =================== [15:29:15] [PASSED] coalesce-same-reg [15:29:15] [PASSED] no-match-no-add [15:29:15] [PASSED] no-match-no-add-multiple-rules [15:29:15] [PASSED] two-regs-two-entries [15:29:15] [PASSED] clr-one-set-other [15:29:15] [PASSED] set-field [15:29:15] [PASSED] conflict-duplicate [15:29:15] [PASSED] conflict-not-disjoint [15:29:15] [PASSED] conflict-reg-type [15:29:15] ============== [PASSED] xe_rtp_process_tests =============== stty: 'standard input': Inappropriate ioctl for device [15:29:15] ===================== [PASSED] xe_rtp ====================== [15:29:15] ==================== xe_wa (1 subtest) ===================== [15:29:15] ======================== xe_wa_gt ========================= [15:29:15] [PASSED] TIGERLAKE (B0) [15:29:15] [PASSED] DG1 (A0) [15:29:15] [PASSED] DG1 (B0) [15:29:15] [PASSED] ALDERLAKE_S (A0) [15:29:15] [PASSED] ALDERLAKE_S (B0) [15:29:15] [PASSED] ALDERLAKE_S (C0) [15:29:15] [PASSED] ALDERLAKE_S (D0) [15:29:15] [PASSED] ALDERLAKE_P (A0) [15:29:15] [PASSED] ALDERLAKE_P (B0) [15:29:15] [PASSED] ALDERLAKE_P (C0) [15:29:15] [PASSED] ALDERLAKE_S_RPLS (D0) [15:29:15] [PASSED] ALDERLAKE_P_RPLU (E0) [15:29:15] [PASSED] DG2_G10 (C0) [15:29:15] [PASSED] DG2_G11 (B1) [15:29:15] [PASSED] DG2_G12 (A1) [15:29:15] [PASSED] METEORLAKE (g:A0, m:A0) [15:29:15] [PASSED] METEORLAKE (g:A0, m:A0) [15:29:15] [PASSED] METEORLAKE (g:A0, m:A0) [15:29:15] [PASSED] LUNARLAKE (g:A0, m:A0) [15:29:15] [PASSED] LUNARLAKE (g:B0, m:A0) [15:29:15] ==================== [PASSED] xe_wa_gt ===================== [15:29:15] ====================== [PASSED] xe_wa ====================== [15:29:15] ============================================================ [15:29:15] Testing complete. Ran 109 tests: passed: 95, skipped: 14 [15:29:15] Elapsed time: 29.614s total, 4.217s configuring, 25.127s building, 0.216s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [15:29:15] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [15:29:17] 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) | ^~~~~~~~~~~~~~~~~ [15:29:38] Starting KUnit Kernel (1/1)... [15:29:38] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [15:29:38] ============ drm_test_pick_cmdline (2 subtests) ============ [15:29:38] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [15:29:38] =============== drm_test_pick_cmdline_named =============== [15:29:38] [PASSED] NTSC [15:29:38] [PASSED] NTSC-J [15:29:38] [PASSED] PAL [15:29:38] [PASSED] PAL-M [15:29:38] =========== [PASSED] drm_test_pick_cmdline_named =========== [15:29:38] ============== [PASSED] drm_test_pick_cmdline ============== [15:29:38] ================== drm_buddy (7 subtests) ================== [15:29:38] [PASSED] drm_test_buddy_alloc_limit [15:29:38] [PASSED] drm_test_buddy_alloc_optimistic [15:29:38] [PASSED] drm_test_buddy_alloc_pessimistic [15:29:38] [PASSED] drm_test_buddy_alloc_pathological [15:29:38] [PASSED] drm_test_buddy_alloc_contiguous [15:29:38] [PASSED] drm_test_buddy_alloc_clear [15:29:38] [PASSED] drm_test_buddy_alloc_range_bias [15:29:38] ==================== [PASSED] drm_buddy ==================== [15:29:38] ============= drm_cmdline_parser (40 subtests) ============= [15:29:38] [PASSED] drm_test_cmdline_force_d_only [15:29:38] [PASSED] drm_test_cmdline_force_D_only_dvi [15:29:38] [PASSED] drm_test_cmdline_force_D_only_hdmi [15:29:38] [PASSED] drm_test_cmdline_force_D_only_not_digital [15:29:38] [PASSED] drm_test_cmdline_force_e_only [15:29:38] [PASSED] drm_test_cmdline_res [15:29:38] [PASSED] drm_test_cmdline_res_vesa [15:29:38] [PASSED] drm_test_cmdline_res_vesa_rblank [15:29:38] [PASSED] drm_test_cmdline_res_rblank [15:29:38] [PASSED] drm_test_cmdline_res_bpp [15:29:38] [PASSED] drm_test_cmdline_res_refresh [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [15:29:38] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [15:29:38] [PASSED] drm_test_cmdline_res_margins_force_on [15:29:38] [PASSED] drm_test_cmdline_res_vesa_margins [15:29:38] [PASSED] drm_test_cmdline_name [15:29:38] [PASSED] drm_test_cmdline_name_bpp [15:29:38] [PASSED] drm_test_cmdline_name_option [15:29:38] [PASSED] drm_test_cmdline_name_bpp_option [15:29:38] [PASSED] drm_test_cmdline_rotate_0 [15:29:38] [PASSED] drm_test_cmdline_rotate_90 [15:29:38] [PASSED] drm_test_cmdline_rotate_180 [15:29:38] [PASSED] drm_test_cmdline_rotate_270 [15:29:38] [PASSED] drm_test_cmdline_hmirror [15:29:38] [PASSED] drm_test_cmdline_vmirror [15:29:38] [PASSED] drm_test_cmdline_margin_options [15:29:38] [PASSED] drm_test_cmdline_multiple_options [15:29:38] [PASSED] drm_test_cmdline_bpp_extra_and_option [15:29:38] [PASSED] drm_test_cmdline_extra_and_option [15:29:38] [PASSED] drm_test_cmdline_freestanding_options [15:29:38] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [15:29:38] [PASSED] drm_test_cmdline_panel_orientation [15:29:38] ================ drm_test_cmdline_invalid ================= [15:29:38] [PASSED] margin_only [15:29:38] [PASSED] interlace_only [15:29:38] [PASSED] res_missing_x [15:29:38] [PASSED] res_missing_y [15:29:38] [PASSED] res_bad_y [15:29:38] [PASSED] res_missing_y_bpp [15:29:38] [PASSED] res_bad_bpp [15:29:38] [PASSED] res_bad_refresh [15:29:38] [PASSED] res_bpp_refresh_force_on_off [15:29:38] [PASSED] res_invalid_mode [15:29:38] [PASSED] res_bpp_wrong_place_mode [15:29:38] [PASSED] name_bpp_refresh [15:29:38] [PASSED] name_refresh [15:29:38] [PASSED] name_refresh_wrong_mode [15:29:38] [PASSED] name_refresh_invalid_mode [15:29:38] [PASSED] rotate_multiple [15:29:38] [PASSED] rotate_invalid_val [15:29:38] [PASSED] rotate_truncated [15:29:38] [PASSED] invalid_option [15:29:38] [PASSED] invalid_tv_option [15:29:38] [PASSED] truncated_tv_option [15:29:38] ============ [PASSED] drm_test_cmdline_invalid ============= [15:29:38] =============== drm_test_cmdline_tv_options =============== [15:29:38] [PASSED] NTSC [15:29:38] [PASSED] NTSC_443 [15:29:38] [PASSED] NTSC_J [15:29:38] [PASSED] PAL [15:29:38] [PASSED] PAL_M [15:29:38] [PASSED] PAL_N [15:29:38] [PASSED] SECAM [15:29:38] =========== [PASSED] drm_test_cmdline_tv_options =========== [15:29:38] =============== [PASSED] drm_cmdline_parser ================ [15:29:38] ========== drmm_connector_hdmi_init (19 subtests) ========== [15:29:38] [PASSED] drm_test_connector_hdmi_init_valid [15:29:38] [PASSED] drm_test_connector_hdmi_init_bpc_8 [15:29:38] [PASSED] drm_test_connector_hdmi_init_bpc_10 [15:29:38] [PASSED] drm_test_connector_hdmi_init_bpc_12 [15:29:38] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [15:29:38] [PASSED] drm_test_connector_hdmi_init_bpc_null [15:29:38] [PASSED] drm_test_connector_hdmi_init_formats_empty [15:29:38] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [15:29:38] [PASSED] drm_test_connector_hdmi_init_null_ddc [15:29:38] [PASSED] drm_test_connector_hdmi_init_null_product [15:29:38] [PASSED] drm_test_connector_hdmi_init_null_vendor [15:29:38] [PASSED] drm_test_connector_hdmi_init_product_length_exact [15:29:38] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [15:29:38] [PASSED] drm_test_connector_hdmi_init_product_valid [15:29:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [15:29:38] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [15:29:38] [PASSED] drm_test_connector_hdmi_init_vendor_valid [15:29:38] ========= drm_test_connector_hdmi_init_type_valid ========= [15:29:38] [PASSED] HDMI-A [15:29:38] [PASSED] HDMI-B [15:29:38] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [15:29:38] ======== drm_test_connector_hdmi_init_type_invalid ======== [15:29:38] [PASSED] Unknown [15:29:38] [PASSED] VGA [15:29:38] [PASSED] DVI-I [15:29:38] [PASSED] DVI-D [15:29:38] [PASSED] DVI-A [15:29:38] [PASSED] Composite [15:29:38] [PASSED] SVIDEO [15:29:38] [PASSED] LVDS [15:29:38] [PASSED] Component [15:29:38] [PASSED] DIN [15:29:38] [PASSED] DP [15:29:38] [PASSED] TV [15:29:38] [PASSED] eDP [15:29:38] [PASSED] Virtual [15:29:38] [PASSED] DSI [15:29:38] [PASSED] DPI [15:29:38] [PASSED] Writeback [15:29:38] [PASSED] SPI [15:29:38] [PASSED] USB [15:29:38] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [15:29:38] ============ [PASSED] drmm_connector_hdmi_init ============= [15:29:38] ============= drmm_connector_init (3 subtests) ============= [15:29:38] [PASSED] drm_test_drmm_connector_init [15:29:38] [PASSED] drm_test_drmm_connector_init_null_ddc [15:29:38] ========= drm_test_drmm_connector_init_type_valid ========= [15:29:38] [PASSED] Unknown [15:29:38] [PASSED] VGA [15:29:38] [PASSED] DVI-I [15:29:38] [PASSED] DVI-D [15:29:38] [PASSED] DVI-A [15:29:38] [PASSED] Composite [15:29:38] [PASSED] SVIDEO [15:29:38] [PASSED] LVDS [15:29:38] [PASSED] Component [15:29:38] [PASSED] DIN [15:29:38] [PASSED] DP [15:29:38] [PASSED] HDMI-A [15:29:38] [PASSED] HDMI-B [15:29:38] [PASSED] TV [15:29:38] [PASSED] eDP [15:29:38] [PASSED] Virtual [15:29:38] [PASSED] DSI [15:29:38] [PASSED] DPI [15:29:38] [PASSED] Writeback [15:29:38] [PASSED] SPI [15:29:38] [PASSED] USB [15:29:38] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [15:29:38] =============== [PASSED] drmm_connector_init =============== [15:29:38] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [15:29:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [15:29:38] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [15:29:38] === [PASSED] drm_connector_attach_broadcast_rgb_property === [15:29:38] ========== drm_get_tv_mode_from_name (2 subtests) ========== [15:29:38] ========== drm_test_get_tv_mode_from_name_valid =========== [15:29:38] [PASSED] NTSC [15:29:38] [PASSED] NTSC-443 [15:29:38] [PASSED] NTSC-J [15:29:38] [PASSED] PAL [15:29:38] [PASSED] PAL-M [15:29:38] [PASSED] PAL-N [15:29:38] [PASSED] SECAM [15:29:38] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [15:29:38] [PASSED] drm_test_get_tv_mode_from_name_truncated [15:29:38] ============ [PASSED] drm_get_tv_mode_from_name ============ [15:29:38] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [15:29:38] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [15:29:38] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [15:29:38] [PASSED] VIC 96 [15:29:38] [PASSED] VIC 97 [15:29:38] [PASSED] VIC 101 [15:29:38] [PASSED] VIC 102 [15:29:38] [PASSED] VIC 106 [15:29:38] [PASSED] VIC 107 [15:29:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [15:29:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [15:29:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [15:29:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [15:29:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [15:29:38] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [15:29:38] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [15:29:38] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [15:29:38] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [15:29:38] [PASSED] Automatic [15:29:38] [PASSED] Full [15:29:38] [PASSED] Limited 16:235 [15:29:38] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [15:29:38] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [15:29:38] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [15:29:38] == drm_hdmi_connector_get_output_format_name (2 subtests) == [15:29:38] === drm_test_drm_hdmi_connector_get_output_format_name ==== [15:29:38] [PASSED] RGB [15:29:38] [PASSED] YUV 4:2:0 [15:29:38] [PASSED] YUV 4:2:2 [15:29:38] [PASSED] YUV 4:4:4 [15:29:38] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [15:29:38] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [15:29:38] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [15:29:38] ============= drm_damage_helper (21 subtests) ============== [15:29:38] [PASSED] drm_test_damage_iter_no_damage [15:29:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src [15:29:38] [PASSED] drm_test_damage_iter_no_damage_src_moved [15:29:38] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [15:29:38] [PASSED] drm_test_damage_iter_no_damage_not_visible [15:29:38] [PASSED] drm_test_damage_iter_no_damage_no_crtc [15:29:38] [PASSED] drm_test_damage_iter_no_damage_no_fb [15:29:38] [PASSED] drm_test_damage_iter_simple_damage [15:29:38] [PASSED] drm_test_damage_iter_single_damage [15:29:38] [PASSED] drm_test_damage_iter_single_damage_intersect_src [15:29:38] [PASSED] drm_test_damage_iter_single_damage_outside_src [15:29:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src [15:29:38] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [15:29:38] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [15:29:38] [PASSED] drm_test_damage_iter_single_damage_src_moved [15:29:38] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [15:29:38] [PASSED] drm_test_damage_iter_damage [15:29:38] [PASSED] drm_test_damage_iter_damage_one_intersect [15:29:38] [PASSED] drm_test_damage_iter_damage_one_outside [15:29:38] [PASSED] drm_test_damage_iter_damage_src_moved [15:29:38] [PASSED] drm_test_damage_iter_damage_not_visible [15:29:38] ================ [PASSED] drm_damage_helper ================ [15:29:38] ============== drm_dp_mst_helper (3 subtests) ============== [15:29:38] ============== drm_test_dp_mst_calc_pbn_mode ============== [15:29:38] [PASSED] Clock 154000 BPP 30 DSC disabled [15:29:38] [PASSED] Clock 234000 BPP 30 DSC disabled [15:29:38] [PASSED] Clock 297000 BPP 24 DSC disabled [15:29:38] [PASSED] Clock 332880 BPP 24 DSC enabled [15:29:38] [PASSED] Clock 324540 BPP 24 DSC enabled [15:29:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [15:29:38] ============== drm_test_dp_mst_calc_pbn_div =============== [15:29:38] [PASSED] Link rate 2000000 lane count 4 [15:29:38] [PASSED] Link rate 2000000 lane count 2 [15:29:38] [PASSED] Link rate 2000000 lane count 1 [15:29:38] [PASSED] Link rate 1350000 lane count 4 [15:29:38] [PASSED] Link rate 1350000 lane count 2 [15:29:38] [PASSED] Link rate 1350000 lane count 1 [15:29:38] [PASSED] Link rate 1000000 lane count 4 [15:29:38] [PASSED] Link rate 1000000 lane count 2 [15:29:38] [PASSED] Link rate 1000000 lane count 1 [15:29:38] [PASSED] Link rate 810000 lane count 4 [15:29:38] [PASSED] Link rate 810000 lane count 2 [15:29:38] [PASSED] Link rate 810000 lane count 1 [15:29:38] [PASSED] Link rate 540000 lane count 4 [15:29:38] [PASSED] Link rate 540000 lane count 2 [15:29:38] [PASSED] Link rate 540000 lane count 1 [15:29:38] [PASSED] Link rate 270000 lane count 4 [15:29:38] [PASSED] Link rate 270000 lane count 2 [15:29:38] [PASSED] Link rate 270000 lane count 1 [15:29:38] [PASSED] Link rate 162000 lane count 4 [15:29:38] [PASSED] Link rate 162000 lane count 2 [15:29:38] [PASSED] Link rate 162000 lane count 1 [15:29:38] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [15:29:38] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [15:29:38] [PASSED] DP_ENUM_PATH_RESOURCES with port number [15:29:38] [PASSED] DP_POWER_UP_PHY with port number [15:29:38] [PASSED] DP_POWER_DOWN_PHY with port number [15:29:38] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [15:29:38] [PASSED] DP_ALLOCATE_PAYLOAD with port number [15:29:38] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [15:29:38] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [15:29:38] [PASSED] DP_QUERY_PAYLOAD with port number [15:29:38] [PASSED] DP_QUERY_PAYLOAD with VCPI [15:29:38] [PASSED] DP_REMOTE_DPCD_READ with port number [15:29:38] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [15:29:38] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [15:29:38] [PASSED] DP_REMOTE_DPCD_WRITE with port number [15:29:38] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [15:29:38] [PASSED] DP_REMOTE_DPCD_WRITE with data array [15:29:38] [PASSED] DP_REMOTE_I2C_READ with port number [15:29:38] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [15:29:38] [PASSED] DP_REMOTE_I2C_READ with transactions array [15:29:38] [PASSED] DP_REMOTE_I2C_WRITE with port number [15:29:38] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [15:29:38] [PASSED] DP_REMOTE_I2C_WRITE with data array [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [15:29:38] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [15:29:38] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [15:29:38] ================ [PASSED] drm_dp_mst_helper ================ [15:29:38] ================== drm_exec (7 subtests) =================== [15:29:38] [PASSED] sanitycheck [15:29:38] [PASSED] test_lock [15:29:38] [PASSED] test_lock_unlock [15:29:38] [PASSED] test_duplicates [15:29:38] [PASSED] test_prepare [15:29:38] [PASSED] test_prepare_array [15:29:38] [PASSED] test_multiple_loops [15:29:38] ==================== [PASSED] drm_exec ===================== [15:29:38] =========== drm_format_helper_test (17 subtests) =========== [15:29:38] ============== drm_test_fb_xrgb8888_to_gray8 ============== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [15:29:38] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [15:29:38] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [15:29:38] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [15:29:38] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [15:29:38] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [15:29:38] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [15:29:38] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [15:29:38] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [15:29:38] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [15:29:38] ============== drm_test_fb_xrgb8888_to_mono =============== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [15:29:38] ==================== drm_test_fb_swab ===================== [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ================ [PASSED] drm_test_fb_swab ================= [15:29:38] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [15:29:38] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [15:29:38] [PASSED] single_pixel_source_buffer [15:29:38] [PASSED] single_pixel_clip_rectangle [15:29:38] [PASSED] well_known_colors [15:29:38] [PASSED] destination_pitch [15:29:38] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [15:29:38] ================= drm_test_fb_clip_offset ================= [15:29:38] [PASSED] pass through [15:29:38] [PASSED] horizontal offset [15:29:38] [PASSED] vertical offset [15:29:38] [PASSED] horizontal and vertical offset [15:29:38] [PASSED] horizontal offset (custom pitch) [15:29:38] [PASSED] vertical offset (custom pitch) [15:29:38] [PASSED] horizontal and vertical offset (custom pitch) [15:29:38] ============= [PASSED] drm_test_fb_clip_offset ============= [15:29:38] ============== drm_test_fb_build_fourcc_list ============== [15:29:38] [PASSED] no native formats [15:29:38] [PASSED] XRGB8888 as native format [15:29:38] [PASSED] remove duplicates [15:29:38] [PASSED] convert alpha formats [15:29:38] [PASSED] random formats [15:29:38] ========== [PASSED] drm_test_fb_build_fourcc_list ========== [15:29:38] =================== drm_test_fb_memcpy ==================== [15:29:38] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [15:29:38] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [15:29:38] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [15:29:38] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [15:29:38] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [15:29:38] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [15:29:38] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [15:29:38] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [15:29:38] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [15:29:38] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [15:29:38] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [15:29:38] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [15:29:38] =============== [PASSED] drm_test_fb_memcpy ================ [15:29:38] ============= [PASSED] drm_format_helper_test ============== [15:29:38] ================= drm_format (18 subtests) ================= [15:29:38] [PASSED] drm_test_format_block_width_invalid [15:29:38] [PASSED] drm_test_format_block_width_one_plane [15:29:38] [PASSED] drm_test_format_block_width_two_plane [15:29:38] [PASSED] drm_test_format_block_width_three_plane [15:29:38] [PASSED] drm_test_format_block_width_tiled [15:29:38] [PASSED] drm_test_format_block_height_invalid [15:29:38] [PASSED] drm_test_format_block_height_one_plane [15:29:38] [PASSED] drm_test_format_block_height_two_plane [15:29:38] [PASSED] drm_test_format_block_height_three_plane [15:29:38] [PASSED] drm_test_format_block_height_tiled [15:29:38] [PASSED] drm_test_format_min_pitch_invalid [15:29:38] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [15:29:38] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [15:29:38] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [15:29:38] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [15:29:38] [PASSED] drm_test_format_min_pitch_two_plane [15:29:38] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [15:29:38] [PASSED] drm_test_format_min_pitch_tiled [15:29:38] =================== [PASSED] drm_format ==================== [15:29:38] =============== drm_framebuffer (1 subtest) ================ [15:29:38] =============== drm_test_framebuffer_create =============== [15:29:38] [PASSED] ABGR8888 normal sizes [15:29:38] [PASSED] ABGR8888 max sizes [15:29:38] [PASSED] ABGR8888 pitch greater than min required [15:29:38] [PASSED] ABGR8888 pitch less than min required [15:29:38] [PASSED] ABGR8888 Invalid width [15:29:38] [PASSED] ABGR8888 Invalid buffer handle [15:29:38] [PASSED] No pixel format [15:29:38] [PASSED] ABGR8888 Width 0 [15:29:38] [PASSED] ABGR8888 Height 0 [15:29:38] [PASSED] ABGR8888 Out of bound height * pitch combination [15:29:38] [PASSED] ABGR8888 Large buffer offset [15:29:38] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [15:29:38] [PASSED] ABGR8888 Valid buffer modifier [15:29:38] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [15:29:38] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] NV12 Normal sizes [15:29:38] [PASSED] NV12 Max sizes [15:29:38] [PASSED] NV12 Invalid pitch [15:29:38] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [15:29:38] [PASSED] NV12 different modifier per-plane [15:29:38] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [15:29:38] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] NV12 Modifier for inexistent plane [15:29:38] [PASSED] NV12 Handle for inexistent plane [15:29:38] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [15:29:38] [PASSED] YVU420 Normal sizes [15:29:38] [PASSED] YVU420 Max sizes [15:29:38] [PASSED] YVU420 Invalid pitch [15:29:38] [PASSED] YVU420 Different pitches [15:29:38] [PASSED] YVU420 Different buffer offsets/pitches [15:29:38] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [15:29:38] [PASSED] YVU420 Valid modifier [15:29:38] [PASSED] YVU420 Different modifiers per plane [15:29:38] [PASSED] YVU420 Modifier for inexistent plane [15:29:38] [PASSED] X0L2 Normal sizes [15:29:38] [PASSED] X0L2 Max sizes [15:29:38] [PASSED] X0L2 Invalid pitch [15:29:38] [PASSED] X0L2 Pitch greater than minimum required [15:29:38] [PASSED] X0L2 Handle for inexistent plane [15:29:38] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [15:29:38] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [15:29:38] [PASSED] X0L2 Valid modifier [15:29:38] [PASSED] X0L2 Modifier for inexistent plane [15:29:38] =========== [PASSED] drm_test_framebuffer_create =========== [15:29:38] ================= [PASSED] drm_framebuffer ================= [15:29:38] ================ drm_gem_shmem (8 subtests) ================ [15:29:38] [PASSED] drm_gem_shmem_test_obj_create [15:29:38] [PASSED] drm_gem_shmem_test_obj_create_private [15:29:38] [PASSED] drm_gem_shmem_test_pin_pages [15:29:38] [PASSED] drm_gem_shmem_test_vmap [15:29:38] [PASSED] drm_gem_shmem_test_get_pages_sgt [15:29:38] [PASSED] drm_gem_shmem_test_get_sg_table [15:29:38] [PASSED] drm_gem_shmem_test_madvise [15:29:38] [PASSED] drm_gem_shmem_test_purge [15:29:38] ================== [PASSED] drm_gem_shmem ================== [15:29:38] === drm_atomic_helper_connector_hdmi_check (22 subtests) === [15:29:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [15:29:38] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [15:29:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [15:29:38] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [15:29:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [15:29:38] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [15:29:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [15:29:38] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [15:29:38] [PASSED] drm_test_check_hdmi_funcs_reject_rate [15:29:38] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback [15:29:38] [PASSED] drm_test_check_max_tmds_rate_format_fallback [15:29:38] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [15:29:38] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [15:29:38] [PASSED] drm_test_check_output_bpc_dvi [15:29:38] [PASSED] drm_test_check_output_bpc_format_vic_1 [15:29:38] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [15:29:38] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [15:29:38] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [15:29:38] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [15:29:38] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [15:29:38] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [15:29:38] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [15:29:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [15:29:38] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [15:29:38] [PASSED] drm_test_check_broadcast_rgb_value [15:29:38] [PASSED] drm_test_check_bpc_8_value [15:29:38] [PASSED] drm_test_check_bpc_10_value [15:29:38] [PASSED] drm_test_check_bpc_12_value [15:29:38] [PASSED] drm_test_check_format_value [15:29:38] [PASSED] drm_test_check_tmds_char_value [15:29:38] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [15:29:38] ================= drm_managed (2 subtests) ================= [15:29:38] [PASSED] drm_test_managed_release_action [15:29:38] [PASSED] drm_test_managed_run_action [15:29:38] =================== [PASSED] drm_managed =================== [15:29:38] =================== drm_mm (6 subtests) ==================== [15:29:38] [PASSED] drm_test_mm_init [15:29:38] [PASSED] drm_test_mm_debug [15:29:38] [PASSED] drm_test_mm_align32 [15:29:38] [PASSED] drm_test_mm_align64 [15:29:38] [PASSED] drm_test_mm_lowest [15:29:38] [PASSED] drm_test_mm_highest [15:29:38] ===================== [PASSED] drm_mm ====================== [15:29:38] ============= drm_modes_analog_tv (4 subtests) ============= [15:29:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i [15:29:38] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [15:29:38] [PASSED] drm_test_modes_analog_tv_pal_576i [15:29:38] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [15:29:38] =============== [PASSED] drm_modes_analog_tv =============== [15:29:38] ============== drm_plane_helper (2 subtests) =============== [15:29:38] =============== drm_test_check_plane_state ================ [15:29:38] [PASSED] clipping_simple [15:29:38] [PASSED] clipping_rotate_reflect [15:29:38] [PASSED] positioning_simple [15:29:38] [PASSED] upscaling [15:29:38] [PASSED] downscaling [15:29:38] [PASSED] rounding1 [15:29:38] [PASSED] rounding2 [15:29:38] [PASSED] rounding3 [15:29:38] [PASSED] rounding4 [15:29:38] =========== [PASSED] drm_test_check_plane_state ============ [15:29:38] =========== drm_test_check_invalid_plane_state ============ [15:29:38] [PASSED] positioning_invalid [15:29:38] [PASSED] upscaling_invalid [15:29:38] [PASSED] downscaling_invalid [15:29:38] ======= [PASSED] drm_test_check_invalid_plane_state ======== [15:29:38] ================ [PASSED] drm_plane_helper ================= stty: 'standard input': Inappropriate ioctl for device [15:29:38] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [15:29:38] ====== drm_test_connector_helper_tv_get_modes_check ======= [15:29:38] [PASSED] None [15:29:38] [PASSED] PAL [15:29:38] [PASSED] NTSC [15:29:38] [PASSED] Both, NTSC Default [15:29:38] [PASSED] Both, PAL Default [15:29:38] [PASSED] Both, NTSC Default, with PAL on command-line [15:29:38] [PASSED] Both, PAL Default, with NTSC on command-line [15:29:38] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [15:29:38] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [15:29:38] ================== drm_rect (9 subtests) =================== [15:29:38] [PASSED] drm_test_rect_clip_scaled_div_by_zero [15:29:38] [PASSED] drm_test_rect_clip_scaled_not_clipped [15:29:38] [PASSED] drm_test_rect_clip_scaled_clipped [15:29:38] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [15:29:38] ================= drm_test_rect_intersect ================= [15:29:38] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [15:29:38] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [15:29:38] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [15:29:38] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [15:29:38] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [15:29:38] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [15:29:38] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [15:29:38] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [15:29:38] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [15:29:38] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [15:29:38] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [15:29:38] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [15:29:38] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [15:29:38] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [15:29:38] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [15:29:38] ============= [PASSED] drm_test_rect_intersect ============= [15:29:38] ================ drm_test_rect_calc_hscale ================ [15:29:38] [PASSED] normal use [15:29:38] [PASSED] out of max range [15:29:38] [PASSED] out of min range [15:29:38] [PASSED] zero dst [15:29:38] [PASSED] negative src [15:29:38] [PASSED] negative dst [15:29:38] ============ [PASSED] drm_test_rect_calc_hscale ============ [15:29:38] ================ drm_test_rect_calc_vscale ================ [15:29:38] [PASSED] normal use [15:29:38] [PASSED] out of max range [15:29:38] [PASSED] out of min range [15:29:38] [PASSED] zero dst [15:29:38] [PASSED] negative src [15:29:38] [PASSED] negative dst [15:29:38] ============ [PASSED] drm_test_rect_calc_vscale ============ [15:29:38] ================== drm_test_rect_rotate =================== [15:29:38] [PASSED] reflect-x [15:29:38] [PASSED] reflect-y [15:29:38] [PASSED] rotate-0 [15:29:38] [PASSED] rotate-90 [15:29:38] [PASSED] rotate-180 [15:29:38] [PASSED] rotate-270 [15:29:38] ============== [PASSED] drm_test_rect_rotate =============== [15:29:38] ================ drm_test_rect_rotate_inv ================= [15:29:38] [PASSED] reflect-x [15:29:38] [PASSED] reflect-y [15:29:38] [PASSED] rotate-0 [15:29:38] [PASSED] rotate-90 [15:29:38] [PASSED] rotate-180 [15:29:38] [PASSED] rotate-270 [15:29:38] ============ [PASSED] drm_test_rect_rotate_inv ============= [15:29:38] ==================== [PASSED] drm_rect ===================== [15:29:38] ============================================================ [15:29:38] Testing complete. Ran 511 tests: passed: 511 [15:29:38] Elapsed time: 23.281s total, 1.729s configuring, 21.332s building, 0.206s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.Build: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (2 preceding siblings ...) 2024-06-05 15:29 ` ✓ CI.KUnit: " Patchwork @ 2024-06-05 15:41 ` Patchwork 2024-06-05 15:41 ` ✗ CI.Hooks: failure " Patchwork ` (5 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:41 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : success == Summary == lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/ lib/modules/6.10.0-rc2-xe/kernel/sound/core/seq/snd-seq.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-seq-device.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-hwdep.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-pcm.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-compress.ko lib/modules/6.10.0-rc2-xe/kernel/sound/core/snd-timer.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soundcore.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/amd/snd-acp-config.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-utils.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-pci.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/snd-sof-probes.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-core.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/snd-soc-acpi.ko lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/ lib/modules/6.10.0-rc2-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/ lib/modules/6.10.0-rc2-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-intel-dspcfg.ko lib/modules/6.10.0-rc2-xe/kernel/sound/hda/snd-hda-core.ko lib/modules/6.10.0-rc2-xe/kernel/arch/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/msr.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kernel/cpuid.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha512-ssse3.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha1-ssse3.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/crc32-pclmul.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/sha256-ssse3.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/aesni-intel.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/crypto/polyval-clmulni.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/intel/intel-cstate.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/events/rapl.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/ lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm.ko lib/modules/6.10.0-rc2-xe/kernel/arch/x86/kvm/kvm-intel.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/ lib/modules/6.10.0-rc2-xe/kernel/crypto/crypto_simd.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/cmac.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/ccm.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/cryptd.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/polyval-generic.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/ lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_xor.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_tx.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_memcpy.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_pq.ko lib/modules/6.10.0-rc2-xe/kernel/crypto/async_tx/async_raid6_recov.ko lib/modules/6.10.0-rc2-xe/build lib/modules/6.10.0-rc2-xe/modules.alias.bin lib/modules/6.10.0-rc2-xe/modules.builtin lib/modules/6.10.0-rc2-xe/modules.softdep lib/modules/6.10.0-rc2-xe/modules.alias lib/modules/6.10.0-rc2-xe/modules.order lib/modules/6.10.0-rc2-xe/modules.symbols lib/modules/6.10.0-rc2-xe/modules.dep.bin + mv kernel-nodebug.tar.gz .. + cd .. + rm -rf archive ++ date +%s + echo -e '\e[0Ksection_end:1717602064:package_x86_64_nodebug\r\e[0K' + sync ^[[0Ksection_end:1717602064:package_x86_64_nodebug ^[[0K + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.Hooks: failure for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (3 preceding siblings ...) 2024-06-05 15:41 ` ✓ CI.Build: " Patchwork @ 2024-06-05 15:41 ` Patchwork 2024-06-05 15:42 ` ✓ CI.checksparse: success " Patchwork ` (4 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:41 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ 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] 18+ messages in thread
* ✓ CI.checksparse: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (4 preceding siblings ...) 2024-06-05 15:41 ` ✗ CI.Hooks: failure " Patchwork @ 2024-06-05 15:42 ` Patchwork 2024-06-05 16:19 ` [PATCH] " Matthew Brost ` (3 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 15:42 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ 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 a494545483635d3d93d19e8f483f61e7d4198383 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] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (5 preceding siblings ...) 2024-06-05 15:42 ` ✓ CI.checksparse: success " Patchwork @ 2024-06-05 16:19 ` Matthew Brost 2024-06-05 16:26 ` ✓ CI.BAT: success for " Patchwork ` (2 subsequent siblings) 9 siblings, 0 replies; 18+ messages in thread From: Matthew Brost @ 2024-06-05 16:19 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe, saurabhg.gupta, john.c.harrison, stuart.summers On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > We currently have debugfs support that allows the userspace to initiate > an asynchronous gt reset on command. However, userspace may also wish > to wait for the completion of the gt reset before performing any > additional work. To that end, add a version of the force_reset gt > debugfs function that operates synchronously. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > Suggested-by: Matthew Brost <matthew.brost@intel.com> Longterm we may want to switch resets to a single debugfs entry which accepts a write value and takes actions based on this. I am ok with this going in but something to keep in mind. With that: Reviewed-by: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > CC: John Harrison <john.c.harrison@intel.com> > CC: Stuart Summers <stuart.summers@intel.com> > --- > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > index 66f897a9b6ca9..5e7fd937917a1 100644 > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > return 0; > } > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > +{ > + xe_pm_runtime_get(gt_to_xe(gt)); > + xe_gt_reset_async(gt); > + xe_pm_runtime_put(gt_to_xe(gt)); > + > + flush_work(>->reset.worker); > + > + return 0; > +} > + > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > { > struct xe_tile *tile = gt_to_tile(gt); > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > static const struct drm_info_list debugfs_list[] = { > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✓ CI.BAT: success for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (6 preceding siblings ...) 2024-06-05 16:19 ` [PATCH] " Matthew Brost @ 2024-06-05 16:26 ` Patchwork 2024-06-05 22:09 ` [PATCH] " Rodrigo Vivi 2024-06-06 9:45 ` ✗ CI.FULL: failure for " Patchwork 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-05 16:26 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1098 bytes --] == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : success == Summary == CI Bug Log - changes from xe-1405-a494545483635d3d93d19e8f483f61e7d4198383_BAT -> xe-pw-134508v1_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 4) ------------------------------ Missing (1): bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_7878 -> IGT_7879 * Linux: xe-1405-a494545483635d3d93d19e8f483f61e7d4198383 -> xe-pw-134508v1 IGT_7878: eecd5683bd98cee3fc6bd3f26a1f053c897f6bdf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1405-a494545483635d3d93d19e8f483f61e7d4198383: a494545483635d3d93d19e8f483f61e7d4198383 xe-pw-134508v1: 134508v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/index.html [-- Attachment #2: Type: text/html, Size: 1660 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (7 preceding siblings ...) 2024-06-05 16:26 ` ✓ CI.BAT: success for " Patchwork @ 2024-06-05 22:09 ` Rodrigo Vivi 2024-06-06 14:11 ` Cavitt, Jonathan 2024-06-06 9:45 ` ✗ CI.FULL: failure for " Patchwork 9 siblings, 1 reply; 18+ messages in thread From: Rodrigo Vivi @ 2024-06-05 22:09 UTC (permalink / raw) To: Jonathan Cavitt Cc: intel-xe, saurabhg.gupta, matthew.brost, john.c.harrison, stuart.summers On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > We currently have debugfs support that allows the userspace to initiate > an asynchronous gt reset on command. However, userspace may also wish > to wait for the completion of the gt reset before performing any > additional work. To that end, add a version of the force_reset gt > debugfs function that operates synchronously. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 do we already have the igt changes that really closes this? > Suggested-by: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > CC: John Harrison <john.c.harrison@intel.com> > CC: Stuart Summers <stuart.summers@intel.com> > --- > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > index 66f897a9b6ca9..5e7fd937917a1 100644 > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > return 0; > } > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > +{ > + xe_pm_runtime_get(gt_to_xe(gt)); > + xe_gt_reset_async(gt); > + xe_pm_runtime_put(gt_to_xe(gt)); > + > + flush_work(>->reset.worker); > + > + return 0; > +} > + > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > { > struct xe_tile *tile = gt_to_tile(gt); > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > static const struct drm_info_list debugfs_list[] = { > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 18+ messages in thread
* RE: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 22:09 ` [PATCH] " Rodrigo Vivi @ 2024-06-06 14:11 ` Cavitt, Jonathan 2024-06-06 16:25 ` Rodrigo Vivi 0 siblings, 1 reply; 18+ messages in thread From: Cavitt, Jonathan @ 2024-06-06 14:11 UTC (permalink / raw) To: Vivi, Rodrigo Cc: intel-xe@lists.freedesktop.org, Gupta, saurabhg, Brost, Matthew, Harrison, John C, Summers, Stuart, Cavitt, Jonathan -----Original Message----- From: Vivi, Rodrigo <rodrigo.vivi@intel.com> Sent: Wednesday, June 5, 2024 3:10 PM To: Cavitt, Jonathan <jonathan.cavitt@intel.com> Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > We currently have debugfs support that allows the userspace to initiate > > an asynchronous gt reset on command. However, userspace may also wish > > to wait for the completion of the gt reset before performing any > > additional work. To that end, add a version of the force_reset gt > > debugfs function that operates synchronously. > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > do we already have the igt changes that really closes this? The IGT change that closes this issue has not yet landed. It relies on using the new debugfs, so if it landed first, we'd be attempting to call a nonexistent debugfs function. -Jonathan Cavitt > > > Suggested-by: Matthew Brost <matthew.brost@intel.com> > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > CC: John Harrison <john.c.harrison@intel.com> > > CC: Stuart Summers <stuart.summers@intel.com> > > --- > > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > > 1 file changed, 12 insertions(+) > > > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > index 66f897a9b6ca9..5e7fd937917a1 100644 > > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > return 0; > > } > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > +{ > > + xe_pm_runtime_get(gt_to_xe(gt)); > > + xe_gt_reset_async(gt); > > + xe_pm_runtime_put(gt_to_xe(gt)); > > + > > + flush_work(>->reset.worker); > > + > > + return 0; > > +} > > + > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > { > > struct xe_tile *tile = gt_to_tile(gt); > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > static const struct drm_info_list debugfs_list[] = { > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > -- > > 2.25.1 > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 14:11 ` Cavitt, Jonathan @ 2024-06-06 16:25 ` Rodrigo Vivi 2024-06-06 16:38 ` Cavitt, Jonathan 0 siblings, 1 reply; 18+ messages in thread From: Rodrigo Vivi @ 2024-06-06 16:25 UTC (permalink / raw) To: Cavitt, Jonathan Cc: intel-xe@lists.freedesktop.org, Gupta, saurabhg, Brost, Matthew, Harrison, John C, Summers, Stuart On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: > -----Original Message----- > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > Sent: Wednesday, June 5, 2024 3:10 PM > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > > We currently have debugfs support that allows the userspace to initiate > > > an asynchronous gt reset on command. However, userspace may also wish > > > to wait for the completion of the gt reset before performing any > > > additional work. To that end, add a version of the force_reset gt > > > debugfs function that operates synchronously. > > > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > > > do we already have the igt changes that really closes this? > > The IGT change that closes this issue has not yet landed. It relies on > using the new debugfs, so if it landed first, we'd be attempting to call > a nonexistent debugfs function. Please provide the IGT and the kernel patch at the same time. you can copy patchwork or lore links in the one or the other cover letter to explain and justify each other. In the current way we cannot simply merge this because the 'Closes:' tag is a lie. Also, there's always the risk if doing the IGT in a later stage you realize that you need slightly different and cause unnecessary rounds. > -Jonathan Cavitt > > > > > > Suggested-by: Matthew Brost <matthew.brost@intel.com> > > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > > CC: John Harrison <john.c.harrison@intel.com> > > > CC: Stuart Summers <stuart.summers@intel.com> > > > --- > > > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > > > 1 file changed, 12 insertions(+) > > > > > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > index 66f897a9b6ca9..5e7fd937917a1 100644 > > > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > > return 0; > > > } > > > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > > +{ > > > + xe_pm_runtime_get(gt_to_xe(gt)); > > > + xe_gt_reset_async(gt); > > > + xe_pm_runtime_put(gt_to_xe(gt)); > > > + > > > + flush_work(>->reset.worker); > > > + > > > + return 0; > > > +} > > > + > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > > { > > > struct xe_tile *tile = gt_to_tile(gt); > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > > static const struct drm_info_list debugfs_list[] = { > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > > -- > > > 2.25.1 > > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* RE: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 16:25 ` Rodrigo Vivi @ 2024-06-06 16:38 ` Cavitt, Jonathan 2024-06-06 17:33 ` Rodrigo Vivi 2024-06-06 17:35 ` Lucas De Marchi 0 siblings, 2 replies; 18+ messages in thread From: Cavitt, Jonathan @ 2024-06-06 16:38 UTC (permalink / raw) To: Vivi, Rodrigo Cc: intel-xe@lists.freedesktop.org, Gupta, saurabhg, Brost, Matthew, Harrison, John C, Summers, Stuart, Cavitt, Jonathan -----Original Message----- From: Vivi, Rodrigo <rodrigo.vivi@intel.com> Sent: Thursday, June 6, 2024 9:26 AM To: Cavitt, Jonathan <jonathan.cavitt@intel.com> Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: > > -----Original Message----- > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > Sent: Wednesday, June 5, 2024 3:10 PM > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > > > We currently have debugfs support that allows the userspace to initiate > > > > an asynchronous gt reset on command. However, userspace may also wish > > > > to wait for the completion of the gt reset before performing any > > > > additional work. To that end, add a version of the force_reset gt > > > > debugfs function that operates synchronously. > > > > > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > > > > > do we already have the igt changes that really closes this? > > > > The IGT change that closes this issue has not yet landed. It relies on > > using the new debugfs, so if it landed first, we'd be attempting to call > > a nonexistent debugfs function. > > Please provide the IGT and the kernel patch at the same time. > you can copy patchwork or lore links in the one or the other cover letter > to explain and justify each other. Here's the related IGT change: https://patchwork.freedesktop.org/series/134509/ -Jonathan Cavitt > > In the current way we cannot simply merge this because the 'Closes:' tag > is a lie. > > Also, there's always the risk if doing the IGT in a later stage you realize > that you need slightly different and cause unnecessary rounds. > > > -Jonathan Cavitt > > > > > > > > > Suggested-by: Matthew Brost <matthew.brost@intel.com> > > > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > > > CC: John Harrison <john.c.harrison@intel.com> > > > > CC: Stuart Summers <stuart.summers@intel.com> > > > > --- > > > > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > > > > 1 file changed, 12 insertions(+) > > > > > > > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > index 66f897a9b6ca9..5e7fd937917a1 100644 > > > > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > > > return 0; > > > > } > > > > > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > > > +{ > > > > + xe_pm_runtime_get(gt_to_xe(gt)); > > > > + xe_gt_reset_async(gt); > > > > + xe_pm_runtime_put(gt_to_xe(gt)); > > > > + > > > > + flush_work(>->reset.worker); > > > > + > > > > + return 0; > > > > +} > > > > + > > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > > > { > > > > struct xe_tile *tile = gt_to_tile(gt); > > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > > > static const struct drm_info_list debugfs_list[] = { > > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > > > -- > > > > 2.25.1 > > > > > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 16:38 ` Cavitt, Jonathan @ 2024-06-06 17:33 ` Rodrigo Vivi 2024-06-06 17:35 ` Lucas De Marchi 1 sibling, 0 replies; 18+ messages in thread From: Rodrigo Vivi @ 2024-06-06 17:33 UTC (permalink / raw) To: Cavitt, Jonathan Cc: intel-xe@lists.freedesktop.org, Gupta, saurabhg, Brost, Matthew, Harrison, John C, Summers, Stuart On Thu, Jun 06, 2024 at 04:38:49PM +0000, Cavitt, Jonathan wrote: > -----Original Message----- > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > Sent: Thursday, June 6, 2024 9:26 AM > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: > > > -----Original Message----- > > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > > Sent: Wednesday, June 5, 2024 3:10 PM > > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > > > > We currently have debugfs support that allows the userspace to initiate > > > > > an asynchronous gt reset on command. However, userspace may also wish > > > > > to wait for the completion of the gt reset before performing any > > > > > additional work. To that end, add a version of the force_reset gt > > > > > debugfs function that operates synchronously. > > > > > > > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > > > > > > > do we already have the igt changes that really closes this? > > > > > > The IGT change that closes this issue has not yet landed. It relies on > > > using the new debugfs, so if it landed first, we'd be attempting to call > > > a nonexistent debugfs function. > > > > Please provide the IGT and the kernel patch at the same time. > > you can copy patchwork or lore links in the one or the other cover letter > > to explain and justify each other. > > Here's the related IGT change: > https://patchwork.freedesktop.org/series/134509/ doh! I had missed that, I'm sorry. I just pushed both sides, kernel and igt, since they were all reviewed. > -Jonathan Cavitt > > > > > In the current way we cannot simply merge this because the 'Closes:' tag > > is a lie. > > > > Also, there's always the risk if doing the IGT in a later stage you realize > > that you need slightly different and cause unnecessary rounds. > > > > > -Jonathan Cavitt > > > > > > > > > > > > Suggested-by: Matthew Brost <matthew.brost@intel.com> > > > > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > > > > CC: John Harrison <john.c.harrison@intel.com> > > > > > CC: Stuart Summers <stuart.summers@intel.com> > > > > > --- > > > > > drivers/gpu/drm/xe/xe_gt_debugfs.c | 12 ++++++++++++ > > > > > 1 file changed, 12 insertions(+) > > > > > > > > > > diff --git a/drivers/gpu/drm/xe/xe_gt_debugfs.c b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > > index 66f897a9b6ca9..5e7fd937917a1 100644 > > > > > --- a/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > > +++ b/drivers/gpu/drm/xe/xe_gt_debugfs.c > > > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > > > > return 0; > > > > > } > > > > > > > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > > > > +{ > > > > > + xe_pm_runtime_get(gt_to_xe(gt)); > > > > > + xe_gt_reset_async(gt); > > > > > + xe_pm_runtime_put(gt_to_xe(gt)); > > > > > + > > > > > + flush_work(>->reset.worker); > > > > > + > > > > > + return 0; > > > > > +} > > > > > + > > > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > > > > { > > > > > struct xe_tile *tile = gt_to_tile(gt); > > > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > > > > static const struct drm_info_list debugfs_list[] = { > > > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > > > > -- > > > > > 2.25.1 > > > > > > > > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 16:38 ` Cavitt, Jonathan 2024-06-06 17:33 ` Rodrigo Vivi @ 2024-06-06 17:35 ` Lucas De Marchi 2024-06-06 17:37 ` Matthew Brost 1 sibling, 1 reply; 18+ messages in thread From: Lucas De Marchi @ 2024-06-06 17:35 UTC (permalink / raw) To: Cavitt, Jonathan Cc: Vivi, Rodrigo, intel-xe@lists.freedesktop.org, Gupta, saurabhg, Brost, Matthew, Harrison, John C, Summers, Stuart On Thu, Jun 06, 2024 at 04:38:49PM GMT, Cavitt, Jonathan wrote: >-----Original Message----- >From: Vivi, Rodrigo <rodrigo.vivi@intel.com> >Sent: Thursday, June 6, 2024 9:26 AM >To: Cavitt, Jonathan <jonathan.cavitt@intel.com> >Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> >Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs >> >> On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: >> > -----Original Message----- >> > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> >> > Sent: Wednesday, June 5, 2024 3:10 PM >> > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> >> > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> >> > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs >> > > >> > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: >> > > > We currently have debugfs support that allows the userspace to initiate >> > > > an asynchronous gt reset on command. However, userspace may also wish >> > > > to wait for the completion of the gt reset before performing any >> > > > additional work. To that end, add a version of the force_reset gt >> > > > debugfs function that operates synchronously. >> > > > >> > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 >> > > >> > > do we already have the igt changes that really closes this? >> > >> > The IGT change that closes this issue has not yet landed. It relies on >> > using the new debugfs, so if it landed first, we'd be attempting to call >> > a nonexistent debugfs function. >> >> Please provide the IGT and the kernel patch at the same time. >> you can copy patchwork or lore links in the one or the other cover letter >> to explain and justify each other. > >Here's the related IGT change: >https://patchwork.freedesktop.org/series/134509/ great. Let's remove the Closes from this patch then. We can do that while applying, but... >> > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) >> > > > return 0; >> > > > } >> > > > >> > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) >> > > > +{ >> > > > + xe_pm_runtime_get(gt_to_xe(gt)); >> > > > + xe_gt_reset_async(gt); >> > > > + xe_pm_runtime_put(gt_to_xe(gt)); >> > > > + why aren't we just calling force_reset(gt, p); here? Lucas De Marchi >> > > > + flush_work(>->reset.worker); >> > > > + >> > > > + return 0; >> > > > +} >> > > > + >> > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) >> > > > { >> > > > struct xe_tile *tile = gt_to_tile(gt); >> > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) >> > > > static const struct drm_info_list debugfs_list[] = { >> > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, >> > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, >> > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, >> > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, >> > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, >> > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, >> > > > -- >> > > > 2.25.1 >> > > > >> > > >> ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 17:35 ` Lucas De Marchi @ 2024-06-06 17:37 ` Matthew Brost 2024-06-06 17:45 ` Cavitt, Jonathan 0 siblings, 1 reply; 18+ messages in thread From: Matthew Brost @ 2024-06-06 17:37 UTC (permalink / raw) To: Lucas De Marchi Cc: Cavitt, Jonathan, Vivi, Rodrigo, intel-xe@lists.freedesktop.org, Gupta, saurabhg, Harrison, John C, Summers, Stuart On Thu, Jun 06, 2024 at 12:35:42PM -0500, Lucas De Marchi wrote: > On Thu, Jun 06, 2024 at 04:38:49PM GMT, Cavitt, Jonathan wrote: > > -----Original Message----- > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > Sent: Thursday, June 6, 2024 9:26 AM > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: > > > > -----Original Message----- > > > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > > > Sent: Wednesday, June 5, 2024 3:10 PM > > > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > > > > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > > > > > We currently have debugfs support that allows the userspace to initiate > > > > > > an asynchronous gt reset on command. However, userspace may also wish > > > > > > to wait for the completion of the gt reset before performing any > > > > > > additional work. To that end, add a version of the force_reset gt > > > > > > debugfs function that operates synchronously. > > > > > > > > > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > > > > > > > > > do we already have the igt changes that really closes this? > > > > > > > > The IGT change that closes this issue has not yet landed. It relies on > > > > using the new debugfs, so if it landed first, we'd be attempting to call > > > > a nonexistent debugfs function. > > > > > > Please provide the IGT and the kernel patch at the same time. > > > you can copy patchwork or lore links in the one or the other cover letter > > > to explain and justify each other. > > > > Here's the related IGT change: > > https://patchwork.freedesktop.org/series/134509/ > > great. Let's remove the Closes from this patch then. > We can do that while applying, but... > I think Rodrigo just pushed these... > > > > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > > > > > return 0; > > > > > > } > > > > > > > > > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > > > > > +{ > > > > > > + xe_pm_runtime_get(gt_to_xe(gt)); > > > > > > + xe_gt_reset_async(gt); > > > > > > + xe_pm_runtime_put(gt_to_xe(gt)); > > > > > > + > > why aren't we just calling force_reset(gt, p); here? > Opps, I missed that in my review and agree what you suggest is better. Given that Rodrigo just pushed this, let's do a quick follow up to fix? Matt > Lucas De Marchi > > > > > > > + flush_work(>->reset.worker); > > > > > > + > > > > > > + return 0; > > > > > > +} > > > > > > + > > > > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > > > > > { > > > > > > struct xe_tile *tile = gt_to_tile(gt); > > > > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > > > > > static const struct drm_info_list debugfs_list[] = { > > > > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > > > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > > > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > > > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > > > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > > > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > > > > > -- > > > > > > 2.25.1 > > > > > > > > > > > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* RE: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-06 17:37 ` Matthew Brost @ 2024-06-06 17:45 ` Cavitt, Jonathan 0 siblings, 0 replies; 18+ messages in thread From: Cavitt, Jonathan @ 2024-06-06 17:45 UTC (permalink / raw) To: Brost, Matthew, De Marchi, Lucas Cc: Vivi, Rodrigo, intel-xe@lists.freedesktop.org, Gupta, saurabhg, Harrison, John C, Summers, Stuart -----Original Message----- From: Brost, Matthew <matthew.brost@intel.com> Sent: Thursday, June 6, 2024 10:38 AM To: De Marchi, Lucas <lucas.demarchi@intel.com> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com>; intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > On Thu, Jun 06, 2024 at 12:35:42PM -0500, Lucas De Marchi wrote: > > On Thu, Jun 06, 2024 at 04:38:49PM GMT, Cavitt, Jonathan wrote: > > > -----Original Message----- > > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > > Sent: Thursday, June 6, 2024 9:26 AM > > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > > > On Thu, Jun 06, 2024 at 02:11:02PM +0000, Cavitt, Jonathan wrote: > > > > > -----Original Message----- > > > > > From: Vivi, Rodrigo <rodrigo.vivi@intel.com> > > > > > Sent: Wednesday, June 5, 2024 3:10 PM > > > > > To: Cavitt, Jonathan <jonathan.cavitt@intel.com> > > > > > Cc: intel-xe@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Harrison, John C <john.c.harrison@intel.com>; Summers, Stuart <stuart.summers@intel.com> > > > > > Subject: Re: [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs > > > > > > > > > > > > On Wed, Jun 05, 2024 at 08:08:28AM -0700, Jonathan Cavitt wrote: > > > > > > > We currently have debugfs support that allows the userspace to initiate > > > > > > > an asynchronous gt reset on command. However, userspace may also wish > > > > > > > to wait for the completion of the gt reset before performing any > > > > > > > additional work. To that end, add a version of the force_reset gt > > > > > > > debugfs function that operates synchronously. > > > > > > > > > > > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/1068 > > > > > > > > > > > > do we already have the igt changes that really closes this? > > > > > > > > > > The IGT change that closes this issue has not yet landed. It relies on > > > > > using the new debugfs, so if it landed first, we'd be attempting to call > > > > > a nonexistent debugfs function. > > > > > > > > Please provide the IGT and the kernel patch at the same time. > > > > you can copy patchwork or lore links in the one or the other cover letter > > > > to explain and justify each other. > > > > > > Here's the related IGT change: > > > https://patchwork.freedesktop.org/series/134509/ > > > > great. Let's remove the Closes from this patch then. > > We can do that while applying, but... > > > > I think Rodrigo just pushed these... > > > > > > > > @@ -116,6 +116,17 @@ static int force_reset(struct xe_gt *gt, struct drm_printer *p) > > > > > > > return 0; > > > > > > > } > > > > > > > > > > > > > > +static int force_reset_sync(struct xe_gt *gt, struct drm_printer *p) > > > > > > > +{ > > > > > > > + xe_pm_runtime_get(gt_to_xe(gt)); > > > > > > > + xe_gt_reset_async(gt); > > > > > > > + xe_pm_runtime_put(gt_to_xe(gt)); > > > > > > > + > > > > why aren't we just calling force_reset(gt, p); here? > > > > Opps, I missed that in my review and agree what you suggest is better. > Given that Rodrigo just pushed this, let's do a quick follow up to fix? > Will post follow-up later today. -Jonathan Cavitt > Matt > > > Lucas De Marchi > > > > > > > > > + flush_work(>->reset.worker); > > > > > > > + > > > > > > > + return 0; > > > > > > > +} > > > > > > > + > > > > > > > static int sa_info(struct xe_gt *gt, struct drm_printer *p) > > > > > > > { > > > > > > > struct xe_tile *tile = gt_to_tile(gt); > > > > > > > @@ -261,6 +272,7 @@ static int vecs_default_lrc(struct xe_gt *gt, struct drm_printer *p) > > > > > > > static const struct drm_info_list debugfs_list[] = { > > > > > > > {"hw_engines", .show = xe_gt_debugfs_simple_show, .data = hw_engines}, > > > > > > > {"force_reset", .show = xe_gt_debugfs_simple_show, .data = force_reset}, > > > > > > > + {"force_reset_sync", .show = xe_gt_debugfs_simple_show, .data = force_reset_sync}, > > > > > > > {"sa_info", .show = xe_gt_debugfs_simple_show, .data = sa_info}, > > > > > > > {"topology", .show = xe_gt_debugfs_simple_show, .data = topology}, > > > > > > > {"steering", .show = xe_gt_debugfs_simple_show, .data = steering}, > > > > > > > -- > > > > > > > 2.25.1 > > > > > > > > > > > > > > > > > > ^ permalink raw reply [flat|nested] 18+ messages in thread
* ✗ CI.FULL: failure for drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt ` (8 preceding siblings ...) 2024-06-05 22:09 ` [PATCH] " Rodrigo Vivi @ 2024-06-06 9:45 ` Patchwork 9 siblings, 0 replies; 18+ messages in thread From: Patchwork @ 2024-06-06 9:45 UTC (permalink / raw) To: Cavitt, Jonathan; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 68228 bytes --] == Series Details == Series: drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs URL : https://patchwork.freedesktop.org/series/134508/ State : failure == Summary == CI Bug Log - changes from xe-1405-a494545483635d3d93d19e8f483f61e7d4198383_full -> xe-pw-134508v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-134508v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-134508v1_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 (0 -> 3) ------------------------------ Additional (3): shard-dg2-set2 shard-adlp shard-lnl Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-134508v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html * igt@xe_pm@s2idle-basic: - shard-adlp: NOTRUN -> [DMESG-FAIL][2] +3 other tests dmesg-fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_pm@s2idle-basic.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_cursor_crc: - {shard-lnl}: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-lnl-6/igt@kms_cursor_crc.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - {shard-lnl}: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * {igt@kms_plane@pixel-format@pipe-a-plane-0}: - shard-adlp: NOTRUN -> [WARN][5] +1 other test warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_plane@pixel-format@pipe-a-plane-0.html * igt@kms_psr@psr2-suspend: - {shard-lnl}: NOTRUN -> [DMESG-FAIL][6] +4 other tests dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-lnl-5/igt@kms_psr@psr2-suspend.html * igt@xe_module_load@reload: - {shard-lnl}: NOTRUN -> [DMESG-WARN][7] +9 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-lnl-4/igt@xe_module_load@reload.html Known issues ------------ Here are the changes found in xe-pw-134508v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#1125] / [Intel XE#1201]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-adlp: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#660]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y: - shard-adlp: NOTRUN -> [DMESG-WARN][10] ([Intel XE#1033] / [Intel XE#1214]) +1 other test dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#801]) +23 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#455]) +40 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1124] / [Intel XE#1201]) +59 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#607]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#316]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124] / [Intel XE#1201]) +25 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#316]) +22 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#619]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#607]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-adlp: NOTRUN -> [FAIL][21] ([Intel XE#1204]) +4 other tests fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-adlp: NOTRUN -> [DMESG-FAIL][22] ([Intel XE#1033]) +1 other test dmesg-fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-adlp: NOTRUN -> [FAIL][23] ([Intel XE#1231]) +5 other tests fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#619]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_big_fb@yf-tiled-addfb.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#619]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#610]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#346]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#346]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@kms_big_joiner@invalid-modeset.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#367]) +13 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#367]) +8 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#787]) +254 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#1252]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +169 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#787]) +188 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +13 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#1252]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +53 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html * igt@kms_cdclk@mode-transition: - shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#314] / [Intel XE#455]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#314]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#1152] / [Intel XE#1201] / [Intel XE#455]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#1152] / [Intel XE#1201]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#306]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#306]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#373]) +53 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#373]) +27 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#307]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +5 other tests fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#455]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#308]) +6 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#308]) +9 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][57] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][58] ([Intel XE#1195]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#323]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#309]) +27 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][61] ([Intel XE#1214] / [Intel XE#282]) +26 other tests dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#323]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#455]) +129 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#1927]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#776]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_fbcon_fbt@psr.html - shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#776]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#701]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_feature_discovery@chamelium.html - shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#701]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#1201] / [Intel XE#702]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#703]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#1138] / [Intel XE#1201]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1138] / [Intel XE#1201]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#1137] / [Intel XE#1201]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_feature_discovery@dp-mst.html - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1137] / [Intel XE#1201]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#1135] / [Intel XE#1201]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1135] / [Intel XE#1201]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#1201] / [Intel XE#310]) +40 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][79] ([Intel XE#1162]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-adlp: NOTRUN -> [DMESG-FAIL][80] ([Intel XE#324]) +4 other tests dmesg-fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-adlp: NOTRUN -> [DMESG-FAIL][81] ([Intel XE#1033] / [Intel XE#324]) +1 other test dmesg-fail [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1201] / [i915#5274]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#1201] / [Intel XE#656]) +229 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#651]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#651]) +79 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-adlp: NOTRUN -> [FAIL][86] ([Intel XE#1861]) +7 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#616]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-adlp: NOTRUN -> [INCOMPLETE][88] ([Intel XE#1195] / [Intel XE#927]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-adlp: NOTRUN -> [SKIP][89] ([Intel XE#1201] / [Intel XE#651]) +81 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1201] / [Intel XE#653]) +80 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-adlp: NOTRUN -> [SKIP][92] ([Intel XE#1201] / [Intel XE#653]) +80 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-adlp: NOTRUN -> [SKIP][93] ([Intel XE#1151] / [Intel XE#1201]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1201] / [Intel XE#658]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#1158] / [Intel XE#1201]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_getfb@getfb-reject-ccs: - shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#1201] / [Intel XE#1341]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#1339]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-adlp: NOTRUN -> [SKIP][98] ([Intel XE#1201] / [Intel XE#417]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#1201] / [Intel XE#356]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1201] / [Intel XE#356]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format: - shard-adlp: NOTRUN -> [INCOMPLETE][101] ([Intel XE#1035] / [Intel XE#1195]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_plane@pixel-format.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [FAIL][102] ([Intel XE#361]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/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-b-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#1201] / [Intel XE#498]) +8 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#305]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#1201] / [Intel XE#305]) +20 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +13 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1201] / [Intel XE#870]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html - shard-adlp: NOTRUN -> [SKIP][110] ([Intel XE#1201] / [Intel XE#870]) +4 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-adlp: NOTRUN -> [SKIP][111] ([Intel XE#1122] / [Intel XE#1201]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1201] / [Intel XE#908]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html - shard-adlp: NOTRUN -> [FAIL][113] ([Intel XE#718]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#1129] / [Intel XE#1201]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1129] / [Intel XE#1201]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#1201] / [Intel XE#2007]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-adlp: NOTRUN -> [SKIP][117] ([Intel XE#1201] / [Intel XE#836]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#1201] / [Intel XE#1211]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-adlp: NOTRUN -> [FAIL][119] ([Intel XE#2027]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#1201]) +25 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1122]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#1122] / [Intel XE#1201]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-no-drrs: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1201] / [Intel XE#929]) +52 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#929]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#1201] / [Intel XE#929]) +82 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1149] / [Intel XE#1201]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#1149] / [Intel XE#1201]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rmfb@close-fd: - shard-adlp: NOTRUN -> [FAIL][128] ([Intel XE#294]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_rmfb@close-fd.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-adlp: NOTRUN -> [FAIL][129] ([Intel XE#1874]) +18 other tests fail [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#1127] / [Intel XE#1201]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#1201] / [Intel XE#327]) +9 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_sysfs_edid_timing: - shard-adlp: NOTRUN -> [FAIL][134] ([Intel XE#1174]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#1201] / [Intel XE#362]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: NOTRUN -> [FAIL][136] ([Intel XE#1729]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-adlp: NOTRUN -> [SKIP][137] ([Intel XE#1201] / [Intel XE#330]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_tv_load_detect@load-detect.html - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1201] / [Intel XE#330]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: NOTRUN -> [FAIL][139] ([Intel XE#771] / [Intel XE#899]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][140] ([Intel XE#899]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-adlp: NOTRUN -> [INCOMPLETE][141] ([Intel XE#1034] / [Intel XE#1195]) +1 other test incomplete [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#756]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#1201] / [Intel XE#756]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1201] / [Intel XE#756]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1091] / [Intel XE#1201]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#1201] / [Intel XE#1932]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@xe_ccs@block-copy-compressed-inc-dimension: - shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_ccs@block-copy-compressed-inc-dimension.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#1201] / [Intel XE#1447]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#1123] / [Intel XE#1201]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-adlp: NOTRUN -> [SKIP][152] ([Intel XE#1126] / [Intel XE#1201]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1126]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1126] / [Intel XE#1201]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@create-big-vram: - shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#1062] / [Intel XE#1201]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_create@create-big-vram.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][156] ([Intel XE#1600]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][157] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#1201] / [Intel XE#261]) +32 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][159] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_evict@evict-small-external-cm: - shard-adlp: NOTRUN -> [SKIP][160] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +15 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_evict@evict-small-external-cm.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][161] ([Intel XE#1473] / [Intel XE#392]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@xe_evict@evict-threads-large.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#1201] / [Intel XE#688]) +8 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#1201] / [Intel XE#1392]) +51 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_basic@once-userptr-rebind: - shard-adlp: NOTRUN -> [DMESG-FAIL][164] ([Intel XE#1638]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_exec_basic@once-userptr-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1201] / [Intel XE#288]) +69 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind: - shard-adlp: NOTRUN -> [SKIP][166] ([Intel XE#1201] / [Intel XE#288]) +143 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind.html * igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#288]) +5 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch.html * igt@xe_exec_reset@cat-error: - shard-adlp: NOTRUN -> [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#1638] / [Intel XE#358]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_exec_reset@cat-error.html * igt@xe_exec_reset@cm-cat-error: - shard-adlp: NOTRUN -> [DMESG-FAIL][169] ([Intel XE#1962]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html * igt@xe_exec_reset@cm-gt-reset: - shard-adlp: NOTRUN -> [FAIL][170] ([Intel XE#1068]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_exec_reset@gt-reset-stress: - shard-adlp: NOTRUN -> [DMESG-WARN][171] ([Intel XE#1214] / [Intel XE#1638]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_exec_reset@gt-reset-stress.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][172] ([Intel XE#1214] / [Intel XE#1638]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_gt_freq@freq_fixed_exec: - shard-adlp: NOTRUN -> [FAIL][173] ([Intel XE#1414]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_gt_freq@freq_fixed_exec.html * igt@xe_gt_freq@freq_fixed_idle: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#1201]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_gt_freq@freq_low_max: - shard-dg2-set2: NOTRUN -> [FAIL][175] ([Intel XE#1045] / [Intel XE#1204]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@xe_gt_freq@freq_low_max.html * igt@xe_gt_freq@freq_reset_multiple: - shard-adlp: NOTRUN -> [DMESG-WARN][176] ([Intel XE#1214] / [Intel XE#1975]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_gt_freq@freq_suspend: - shard-adlp: NOTRUN -> [FAIL][177] ([Intel XE#2028]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_bo: - shard-adlp: NOTRUN -> [SKIP][178] ([Intel XE#1192] / [Intel XE#1201]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-adlp: NOTRUN -> [FAIL][179] ([Intel XE#1999]) +2 other tests fail [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#1201] / [Intel XE#560]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-463/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-adlp: NOTRUN -> [SKIP][181] ([Intel XE#1201] / [Intel XE#512]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_mmap@small-bar.html - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1201] / [Intel XE#512]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@xe_mmap@small-bar.html * igt@xe_mmap@vram: - shard-adlp: NOTRUN -> [SKIP][183] ([Intel XE#1008] / [Intel XE#1201]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_mmap@vram.html * igt@xe_module_load@load: - shard-adlp: NOTRUN -> [SKIP][184] ([Intel XE#1201] / [Intel XE#378]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_module_load@load.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][185] ([Intel XE#1162] / [Intel XE#1214]) +8 other tests dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-436/igt@xe_module_load@reload-no-display.html * igt@xe_noexec_ping_pong: - shard-adlp: NOTRUN -> [SKIP][186] ([Intel XE#1201] / [Intel XE#379]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_noexec_ping_pong.html * igt@xe_pat@display-vs-wb-transient: - shard-adlp: NOTRUN -> [SKIP][187] ([Intel XE#1201] / [Intel XE#1337]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xe2: - shard-adlp: NOTRUN -> [SKIP][188] ([Intel XE#1201] / [Intel XE#977]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_pat@pat-index-xe2.html - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#1201] / [Intel XE#977]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-adlp: NOTRUN -> [SKIP][190] ([Intel XE#1201] / [Intel XE#979]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#1201] / [Intel XE#979]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-433/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-adlp: NOTRUN -> [SKIP][192] ([Intel XE#1061] / [Intel XE#1201]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#1201] / [Intel XE#366]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-multiple-execs: - shard-adlp: NOTRUN -> [SKIP][194] ([Intel XE#1201] / [Intel XE#366]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-4/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-adlp: NOTRUN -> [FAIL][195] ([Intel XE#1924]) +7 other tests fail [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-mocs: - shard-adlp: NOTRUN -> [DMESG-FAIL][196] ([Intel XE#1608]) +24 other tests dmesg-fail [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-6/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][197] ([Intel XE#1162] / [Intel XE#1551]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-adlp: NOTRUN -> [DMESG-WARN][198] ([Intel XE#1214]) +3 other tests dmesg-warn [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#1201] / [Intel XE#579]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-2/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#944]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-432/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-cs-cycles: - shard-adlp: NOTRUN -> [SKIP][201] ([Intel XE#1201] / [Intel XE#944]) +14 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#1201] / [Intel XE#944]) +7 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_wedged@basic-wedged: - shard-adlp: NOTRUN -> [DMESG-WARN][203] ([Intel XE#1214] / [Intel XE#1760]) +1 other test dmesg-warn [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/shard-adlp-8/igt@xe_wedged@basic-wedged.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068 [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [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#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [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#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231 [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#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1339 [Intel XE#1341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1341 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [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#1414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1414 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1602 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608 [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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [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#1899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1899 [Intel XE#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901 [Intel XE#1924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1924 [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927 [Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#1962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1962 [Intel XE#1975]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1975 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007 [Intel XE#2022]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2022 [Intel XE#2023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2023 [Intel XE#2024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2024 [Intel XE#2027]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2027 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [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#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [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#660]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/660 [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#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927 [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#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [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 ------------- * IGT: IGT_7878 -> IGT_7879 * Linux: xe-1405-a494545483635d3d93d19e8f483f61e7d4198383 -> xe-pw-134508v1 IGT_7878: eecd5683bd98cee3fc6bd3f26a1f053c897f6bdf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1405-a494545483635d3d93d19e8f483f61e7d4198383: a494545483635d3d93d19e8f483f61e7d4198383 xe-pw-134508v1: 134508v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134508v1/index.html [-- Attachment #2: Type: text/html, Size: 86513 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2024-06-06 17:46 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-05 15:08 [PATCH] drm/xe/xe_gt_debugfs: Add synchronous gt reset debugfs Jonathan Cavitt 2024-06-05 15:28 ` ✓ CI.Patch_applied: success for " Patchwork 2024-06-05 15:28 ` ✓ CI.checkpatch: " Patchwork 2024-06-05 15:29 ` ✓ CI.KUnit: " Patchwork 2024-06-05 15:41 ` ✓ CI.Build: " Patchwork 2024-06-05 15:41 ` ✗ CI.Hooks: failure " Patchwork 2024-06-05 15:42 ` ✓ CI.checksparse: success " Patchwork 2024-06-05 16:19 ` [PATCH] " Matthew Brost 2024-06-05 16:26 ` ✓ CI.BAT: success for " Patchwork 2024-06-05 22:09 ` [PATCH] " Rodrigo Vivi 2024-06-06 14:11 ` Cavitt, Jonathan 2024-06-06 16:25 ` Rodrigo Vivi 2024-06-06 16:38 ` Cavitt, Jonathan 2024-06-06 17:33 ` Rodrigo Vivi 2024-06-06 17:35 ` Lucas De Marchi 2024-06-06 17:37 ` Matthew Brost 2024-06-06 17:45 ` Cavitt, Jonathan 2024-06-06 9:45 ` ✗ CI.FULL: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox