* [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug
@ 2023-06-28 6:47 Anshuman Gupta
2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Anshuman Gupta @ 2023-06-28 6:47 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
This series enhance PM Suspend/Resume debug.
1. Disables console_suspend.
v1: https://patchwork.freedesktop.org/series/114517/
2. Enables /sys/power/pm_debug_messages.
v5 has fixed some nits.
Anshuman Gupta (2):
lib/igt_aux: Disable console suspend for suspend test
lib/igt_aux: Enable PM Suspend dbg messages
lib/igt_aux.c | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t v5 1/2] lib/igt_aux: Disable console suspend for suspend test 2023-06-28 6:47 [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug Anshuman Gupta @ 2023-06-28 6:47 ` Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Anshuman Gupta @ 2023-06-28 6:47 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar We need no_console_suspend to be enable in order to dump the suspend logs over serial console before attempting the suspend during CI Execution. Therefore disable the console_suspend using printk module parameters while executing suspend test. v2: - Keep console_suspend restore only in exit handler. [Ashutosh] - Don't skip the test on open error, while opening printk parameters, instead print warning. [Kmail] v3: - Fixed cosmetics and return value comment. [Ashutosh] v4: - Added igt_aux_enable_pm_suspend_dbg() function doc. [Kmail] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- lib/igt_aux.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 386e257834..dca559384e 100644 --- a/lib/igt_aux.c +++ b/lib/igt_aux.c @@ -702,6 +702,10 @@ void igt_print_activity(void) } static int autoresume_delay; +bool __console_suspend_saved_state; + +#define SYSFS_MODULE_PRINTK "/sys/module/printk/parameters/" +#define CONSOLE_SUSPEND_DISABLE false static const char *suspend_state_name[] = { [SUSPEND_STATE_FREEZE] = "freeze", @@ -907,6 +911,45 @@ static bool is_mem_sleep_state_supported(int power_dir, enum igt_mem_sleep state return str; } +static void igt_aux_pm_suspend_dbg_restore_exit_handler(int sig) +{ + int sysfs_fd; + + sysfs_fd = open(SYSFS_MODULE_PRINTK, O_RDONLY); + if (sysfs_fd < 0) + return; + + igt_sysfs_set_boolean(sysfs_fd, "console_suspend", __console_suspend_saved_state); + close(sysfs_fd); +} + +/** + * igt_aux_enable_pm_suspend_dbg: + * + * Enhance the System wide suspend/resume debugging by + * disabling console suspend. Disabling console suspend dump the suspend/resume + * logs over serial console. That will be useful to debug CI Suspend/Resume issues + * tagged with 'Incomplete' result. + */ +static void igt_aux_enable_pm_suspend_dbg(void) +{ + int sysfs_fd; + + sysfs_fd = open(SYSFS_MODULE_PRINTK, O_RDONLY); + if (sysfs_fd > 0) { + __console_suspend_saved_state = igt_sysfs_get_boolean(sysfs_fd, "console_suspend"); + + if (!igt_sysfs_set_boolean(sysfs_fd, "console_suspend", CONSOLE_SUSPEND_DISABLE)) + igt_warn("Unable to disable console suspend\n"); + + igt_install_exit_handler(igt_aux_pm_suspend_dbg_restore_exit_handler); + } else { + igt_warn("Unable to open printk parameters Err:%d\n", errno); + } + + close(sysfs_fd); +} + /** * igt_system_suspend_autoresume: * @state: an #igt_suspend_state, the target suspend state @@ -945,6 +988,7 @@ void igt_system_suspend_autoresume(enum igt_suspend_state state, "Suspend to disk requires swap space.\n"); orig_test = get_suspend_test(power_dir); + igt_aux_enable_pm_suspend_dbg(); if (state == SUSPEND_STATE_S3) { orig_mem_sleep = get_mem_sleep(); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t v5 2/2] lib/igt_aux: Enable PM Suspend dbg messages 2023-06-28 6:47 [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta @ 2023-06-28 6:47 ` Anshuman Gupta 2023-06-28 7:43 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) Patchwork 2023-06-28 19:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Anshuman Gupta @ 2023-06-28 6:47 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar Enabling PM Suspend dbg messages by turning on /sys/power/pm_debug_messages switch also adding an exit handler provision to restore the pm_debug_messages state. v2: - Fixed sysfs_fd leak. [Badal] v3: - Added igt_aux_enable_pm_suspend_dbg() function doc. [Kmail] v4: - Fixed some nits. [Ashutosh] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- lib/igt_aux.c | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index dca559384e..fd51030430 100644 --- a/lib/igt_aux.c +++ b/lib/igt_aux.c @@ -703,6 +703,7 @@ void igt_print_activity(void) static int autoresume_delay; bool __console_suspend_saved_state; +bool __pm_debug_messages_state; #define SYSFS_MODULE_PRINTK "/sys/module/printk/parameters/" #define CONSOLE_SUSPEND_DISABLE false @@ -913,7 +914,7 @@ static bool is_mem_sleep_state_supported(int power_dir, enum igt_mem_sleep state static void igt_aux_pm_suspend_dbg_restore_exit_handler(int sig) { - int sysfs_fd; + int sysfs_fd, power_dir; sysfs_fd = open(SYSFS_MODULE_PRINTK, O_RDONLY); if (sysfs_fd < 0) @@ -921,17 +922,30 @@ static void igt_aux_pm_suspend_dbg_restore_exit_handler(int sig) igt_sysfs_set_boolean(sysfs_fd, "console_suspend", __console_suspend_saved_state); close(sysfs_fd); + + power_dir = open("/sys/power", O_RDONLY); + if (power_dir < 0) + return; + + if (!faccessat(power_dir, "pm_debug_messages", R_OK | W_OK, 0)) + igt_sysfs_set_boolean(power_dir, "pm_debug_messages", __pm_debug_messages_state); + + close(power_dir); } /** * igt_aux_enable_pm_suspend_dbg: + * @power_dir: /sys/power/ dir fd * * Enhance the System wide suspend/resume debugging by - * disabling console suspend. Disabling console suspend dump the suspend/resume - * logs over serial console. That will be useful to debug CI Suspend/Resume issues - * tagged with 'Incomplete' result. + * disabling console suspend and enabling PM debug messages. + * Disabling console suspend dump the suspend/resume logs over serial console. + * That will be useful to debug CI Suspend/Resume issues tagged + * with 'Incomplete' result. + * pm_debug_messages sysfs enables Linux PM Core debug messages, which will + * be useful to debug system wide suspend/resume related issues. */ -static void igt_aux_enable_pm_suspend_dbg(void) +static void igt_aux_enable_pm_suspend_dbg(int power_dir) { int sysfs_fd; @@ -942,11 +956,18 @@ static void igt_aux_enable_pm_suspend_dbg(void) if (!igt_sysfs_set_boolean(sysfs_fd, "console_suspend", CONSOLE_SUSPEND_DISABLE)) igt_warn("Unable to disable console suspend\n"); - igt_install_exit_handler(igt_aux_pm_suspend_dbg_restore_exit_handler); } else { igt_warn("Unable to open printk parameters Err:%d\n", errno); } + /* pm_debug_messages depends on CONFIG_PM_SLEEP_DEBUG */ + if (!faccessat(power_dir, "pm_debug_messages", R_OK | W_OK, 0)) { + __pm_debug_messages_state = igt_sysfs_get_boolean(sysfs_fd, "pm_debug_messages"); + igt_sysfs_set_boolean(power_dir, "pm_debug_messages", true); + } + + igt_install_exit_handler(igt_aux_pm_suspend_dbg_restore_exit_handler); + close(sysfs_fd); } @@ -988,7 +1009,7 @@ void igt_system_suspend_autoresume(enum igt_suspend_state state, "Suspend to disk requires swap space.\n"); orig_test = get_suspend_test(power_dir); - igt_aux_enable_pm_suspend_dbg(); + igt_aux_enable_pm_suspend_dbg(power_dir); if (state == SUSPEND_STATE_S3) { orig_mem_sleep = get_mem_sleep(); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) 2023-06-28 6:47 [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta @ 2023-06-28 7:43 ` Patchwork 2023-06-30 10:43 ` Gupta, Anshuman 2023-06-28 19:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 1 reply; 6+ messages in thread From: Patchwork @ 2023-06-28 7:43 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10697 bytes --] == Series Details == Series: PM Suspend debug (rev6) URL : https://patchwork.freedesktop.org/series/119371/ State : success == Summary == CI Bug Log - changes from IGT_7352 -> IGTPW_9285 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html Participating hosts (41 -> 41) ------------------------------ Additional (1): bat-adlp-11 Missing (1): fi-snb-2520m New tests --------- New tests have been introduced between IGT_7352 and IGTPW_9285: ### New IGT tests (12) ### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9285 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: NOTRUN -> [ABORT][1] ([i915#4423] / [i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - bat-adlp-11: NOTRUN -> [DMESG-WARN][3] ([i915#4423]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#6621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][5] ([i915#7059]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][6] ([i915#8497]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][7] ([i915#6367]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][8] ([i915#1982]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#6645]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#7828]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#1845] / [i915#5354]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [ABORT][12] ([i915#8442]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#3708]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#3708] / [i915#4077]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][15] ([i915#7077] / [i915#7977]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_engines: - bat-atsm-1: [FAIL][17] ([i915#6268]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-atsm-1/igt@i915_selftest@live@gt_engines.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-atsm-1/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [DMESG-FAIL][19] ([i915#5334]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][21] ([i915#7059]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: [DMESG-FAIL][23] ([i915#4258] / [i915#7913]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [DMESG-FAIL][25] ([i915#8497]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@requests.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][27] ([i915#6367]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@slpc.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-rpls-1: [DMESG-WARN][29] ([i915#6367]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-1/igt@i915_selftest@live@slpc.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][31] ([i915#6763]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [ABORT][33] ([i915#8442] / [i915#8712]) -> [SKIP][34] ([i915#1072]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9285 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9285: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html [-- Attachment #2: Type: text/html, Size: 12722 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) 2023-06-28 7:43 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) Patchwork @ 2023-06-30 10:43 ` Gupta, Anshuman 0 siblings, 0 replies; 6+ messages in thread From: Gupta, Anshuman @ 2023-06-30 10:43 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Dixit, Ashutosh, Nilawar, Badal Patch is pushed to origin/master. https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-2/igt@i915_pm_rpm@sysfs-read.html Above FULL IGT failure is not related to series. Thanks for review. Br, Anshuman. From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Wednesday, June 28, 2023 1:13 PM To: Gupta, Anshuman <anshuman.gupta@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) Patch Details Series: PM Suspend debug (rev6) URL: https://patchwork.freedesktop.org/series/119371/ State: success Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html CI Bug Log - changes from IGT_7352 -> IGTPW_9285 Summary SUCCESS No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html Participating hosts (41 -> 41) Additional (1): bat-adlp-11 Missing (1): fi-snb-2520m New tests New tests have been introduced between IGT_7352 and IGTPW_9285: New IGT tests (12) • igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-hdmi-a-1: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-hdmi-a-1: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-hdmi-a-1: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-hdmi-a-1: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-1: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s • igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-3: o Statuses : 1 pass(s) o Exec time: [0.0] s Known issues Here are the changes found in IGTPW_9285 that come from known issues: IGT changes Issues hit • igt@core_auth@basic-auth: o bat-adlp-11: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-adlp-11/igt@core_auth@basic-auth.html (https://gitlab.freedesktop.org/drm/intel/issues/4423 / https://gitlab.freedesktop.org/drm/intel/issues/8011) • igt@gem_lmem_swapping@parallel-random-engines: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html (https://gitlab.freedesktop.org/drm/intel/issues/4613) +3 similar issues • igt@i915_module_load@load: o bat-adlp-11: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-adlp-11/igt@i915_module_load@load.html (https://gitlab.freedesktop.org/drm/intel/issues/4423) • igt@i915_pm_rps@basic-api: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_pm_rps@basic-api.html (https://gitlab.freedesktop.org/drm/intel/issues/6621) • igt@i915_selftest@live@gt_mocs: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html (https://gitlab.freedesktop.org/drm/intel/issues/7059) • igt@i915_selftest@live@requests: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@requests.html (https://gitlab.freedesktop.org/drm/intel/issues/8497) • igt@i915_selftest@live@slpc: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_selftest@live@slpc.html (https://gitlab.freedesktop.org/drm/intel/issues/6367) • igt@i915_suspend@basic-s2idle-without-i915: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html (https://gitlab.freedesktop.org/drm/intel/issues/1982) • igt@i915_suspend@basic-s3-without-i915: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html (https://gitlab.freedesktop.org/drm/intel/issues/6645) • igt@kms_chamelium_hpd@common-hpd-after-suspend: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html (https://gitlab.freedesktop.org/drm/intel/issues/7828) • igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: o bat-dg2-11: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html (https://gitlab.freedesktop.org/drm/intel/issues/1845 / https://gitlab.freedesktop.org/drm/intel/issues/5354) +3 similar issues • igt@kms_psr@primary_mmap_gtt: o bat-rplp-1: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html (https://gitlab.freedesktop.org/drm/intel/issues/8442) • igt@prime_vgem@basic-fence-read: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html (https://gitlab.freedesktop.org/drm/intel/issues/3708) +2 similar issues • igt@prime_vgem@basic-gtt: o bat-mtlp-8: NOTRUN -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@prime_vgem@basic-gtt.html (https://gitlab.freedesktop.org/drm/intel/issues/3708 / https://gitlab.freedesktop.org/drm/intel/issues/4077) +1 similar issue Possible fixes • igt@i915_pm_rpm@basic-pci-d3-state: o bat-mtlp-8: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html (https://gitlab.freedesktop.org/drm/intel/issues/7077 / https://gitlab.freedesktop.org/drm/intel/issues/7977) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html • igt@i915_selftest@live@gt_engines: o bat-atsm-1: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-atsm-1/igt@i915_selftest@live@gt_engines.html (https://gitlab.freedesktop.org/drm/intel/issues/6268) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-atsm-1/igt@i915_selftest@live@gt_engines.html • igt@i915_selftest@live@gt_heartbeat: o fi-glk-j4005: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html (https://gitlab.freedesktop.org/drm/intel/issues/5334) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html • igt@i915_selftest@live@gt_mocs: o bat-mtlp-6: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html (https://gitlab.freedesktop.org/drm/intel/issues/7059) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html • igt@i915_selftest@live@gt_pm: o bat-rpls-2: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-2/igt@i915_selftest@live@gt_pm.html (https://gitlab.freedesktop.org/drm/intel/issues/4258 / https://gitlab.freedesktop.org/drm/intel/issues/7913) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rpls-2/igt@i915_selftest@live@gt_pm.html • igt@i915_selftest@live@requests: o bat-mtlp-6: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@requests.html (https://gitlab.freedesktop.org/drm/intel/issues/8497) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@requests.html • igt@i915_selftest@live@slpc: o bat-mtlp-6: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@slpc.html (https://gitlab.freedesktop.org/drm/intel/issues/6367) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@slpc.html o bat-rpls-1: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rpls-1/igt@i915_selftest@live@slpc.html (https://gitlab.freedesktop.org/drm/intel/issues/6367) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rpls-1/igt@i915_selftest@live@slpc.html • igt@i915_selftest@live@workarounds: o bat-mtlp-6: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-mtlp-6/igt@i915_selftest@live@workarounds.html (https://gitlab.freedesktop.org/drm/intel/issues/6763) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-mtlp-6/igt@i915_selftest@live@workarounds.html Warnings • igt@kms_psr@sprite_plane_onoff: o bat-rplp-1: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html (https://gitlab.freedesktop.org/drm/intel/issues/8442 / https://gitlab.freedesktop.org/drm/intel/issues/8712) -> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html (https://gitlab.freedesktop.org/drm/intel/issues/1072) Build changes • CI: CI-20190529 -> None • IGT: IGT_7352 -> IGTPW_9285 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9285: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for PM Suspend debug (rev6) 2023-06-28 6:47 [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug Anshuman Gupta ` (2 preceding siblings ...) 2023-06-28 7:43 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) Patchwork @ 2023-06-28 19:51 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-06-28 19:51 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 76186 bytes --] == Series Details == Series: PM Suspend debug (rev6) URL : https://patchwork.freedesktop.org/series/119371/ State : failure == Summary == CI Bug Log - changes from IGT_7352_full -> IGTPW_9285_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9285_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9285_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9285_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@sysfs-read: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-1/igt@i915_pm_rpm@sysfs-read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-2/igt@i915_pm_rpm@sysfs-read.html New tests --------- New tests have been introduced between IGT_7352_full and IGTPW_9285_full: ### New IGT tests (1) ### * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9285_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +4 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@ccs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#4579] / [i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@drm_fdinfo@busy-idle@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][8] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4854]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@feature_discovery@chamelium.html * igt@gem_barrier_race@remote-request@rcs0: - shard-dg2: [PASS][10] -> [ABORT][11] ([i915#7461] / [i915#8211] / [i915#8234]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@gem_barrier_race@remote-request@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@gem_caching@reads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][16] ([fdo#109314]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-7/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][17] ([fdo#109314]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#2410]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][20] ([i915#7975] / [i915#8213]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#5784]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@gem_eio@reset-stress.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@gem_eio@reset-stress.html * igt@gem_eio@suspend: - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#6121] / [i915#7052]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_eio@suspend.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#4475]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@gem_exec_capture@pi@vcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [PASS][29] -> [FAIL][30] ([i915#2842]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-3/igt@gem_exec_fair@basic-flow@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][31] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473] / [i915#4771]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][35] ([fdo#109313]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglu: NOTRUN -> [SKIP][36] ([fdo#109313]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3711]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#7697]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-2/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@deep@vcs1: - shard-mtlp: [PASS][42] -> [FAIL][43] ([i915#8545]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vcs1.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@gem_exec_schedule@deep@vcs1.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [PASS][45] -> [TIMEOUT][46] ([i915#8628]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][47] -> [FAIL][48] ([i915#6363]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@gem_exec_whisper@basic-normal.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#2190]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#2190]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-snb: [PASS][53] -> [ABORT][54] ([i915#5161]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb1/igt@gem_mmap_gtt@fault-concurrent-x.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@hang-busy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@copy: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@gem_mmap_wc@copy.html * igt@gem_pwrite@basic-self: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#8411]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109312]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#109312]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][70] -> [FAIL][71] ([i915#7916]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-rkl: NOTRUN -> [SKIP][73] ([fdo#109289]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#7561]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@i915_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][78] ([i915#7561]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-10/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][79] -> [FAIL][80] ([i915#3989] / [i915#454]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][82] -> [SKIP][83] ([i915#4281]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#8399]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][85] -> [SKIP][86] ([i915#1397]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][87] -> [SKIP][88] ([i915#1397]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][89] -> [DMESG-FAIL][90] ([i915#8319]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb2/igt@i915_pm_rps@reset.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb6/igt@i915_pm_rps@reset.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4212]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#8502]) +7 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs-cc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][93] ([i915#8247]) +3 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#404]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#5286]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-tglu: NOTRUN -> [SKIP][96] ([fdo#111615] / [i915#5286]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#3743]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][99] ([i915#3743]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][100] ([fdo#111614]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111614]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#111614] / [i915#3638]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#111615]) +6 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][105] ([fdo#110723]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111615]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#2705]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6095]) +9 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-5/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#3886] / [i915#5354]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#6095]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#5354]) +10 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +5 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-6/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5354]) +10 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#6095]) +6 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][120] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3742]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7213]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4087]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4579] / [i915#7213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@kms_cdclk@mode-transition@pipe-d-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4579]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-0-75: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#111827]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#111827]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-10/igt@kms_chamelium_color@ctm-negative.html - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111827]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +2 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +3 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@lic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173]) +1 similar issue [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8063]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#4579] / [i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-1/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#109279] / [i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][138] ([fdo#109279] / [i915#3359]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#4579]) +1 similar issue [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#4579]) +5 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#4579]) +2 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4213]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][145] -> [FAIL][146] ([i915#8248]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][147] ([fdo#109274] / [i915#5354]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109274]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3546]) +3 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][150] -> [FAIL][151] ([i915#2346]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][152] -> [DMESG-WARN][153] ([i915#2017]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#4579]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3840] / [i915#4579]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#4579]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#3637]) +4 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3637]) +5 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][160] ([fdo#111825]) +3 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#4579]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#4579]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#5274]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8708]) +2 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3458]) +4 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#8708]) +3 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#1825]) +13 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825] / [i915#1825]) +11 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#110189]) +10 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3023]) +7 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109280]) +11 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4579] / [i915#6953] / [i915#8228]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6403]) +2 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-b.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4579] / [i915#6403]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][176] ([fdo#109271]) +33 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#5176]) +5 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4579] / [i915#5176]) +1 similar issue [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][179] ([fdo#109271] / [i915#4579]) +12 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#5176]) +1 similar issue [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#4579] / [i915#5176]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#5176]) +2 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#4579] / [i915#5176]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5235]) +8 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#4579] / [i915#5235]) +2 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#4579] / [i915#5235]) +4 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#5235]) +2 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#4579] / [i915#5235]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5235]) +4 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#6524] / [i915#6805]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111068] / [i915#658]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#111068] / [i915#658]) +1 similar issue [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@cursor_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#1072]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@sprite_render: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1072]) +1 similar issue [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@kms_psr@sprite_render.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][195] ([i915#5465]) +1 similar issue [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tv_load_detect@load-detect: - shard-rkl: NOTRUN -> [SKIP][196] ([fdo#109309]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-wait-busy: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#4070] / [i915#6768]) +1 similar issue [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-7/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#4070] / [i915#533] / [i915#6768]) +2 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#4579]) +8 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#2437]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#2437]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#2437]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@kms_writeback@writeback-fb-id.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][203] -> [FAIL][204] ([i915#7484]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109289]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][206] ([i915#4349]) +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@most-busy-idle-check-all@bcs0: - shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#5234]) +1 similar issue [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@bcs0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@bcs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#5234]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-mtlp: [PASS][211] -> [FAIL][212] ([i915#4349]) +2 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vcs1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][213] -> [FAIL][214] ([i915#4349]) +7 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3708]) +1 similar issue [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-1/igt@prime_vgem@fence-read-hang.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [PASS][216] -> [ABORT][217] ([i915#8521]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@sysfs_preempt_timeout@timeout@vecs0.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2575]) +7 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-tglu: NOTRUN -> [SKIP][219] ([fdo#109315] / [i915#2575]) +4 similar issues [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-10/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2575]) +3 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-7/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109315]) +1 similar issue [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-2/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#7711]) +3 similar issues [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#7711]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-11/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#2575]) +3 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#7711]) +3 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][226] ([i915#8178]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][228] ([i915#6268]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: [FAIL][230] ([fdo#103375]) -> [PASS][231] +2 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][232] ([i915#2410]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_ctx_persistence@engines-hang@vcs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@context-create: - {shard-dg1}: [DMESG-WARN][234] ([i915#4423]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-17/igt@gem_eio@context-create.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg1-14/igt@gem_eio@context-create.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [ABORT][236] ([i915#8503]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-2/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][238] ([i915#2846]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk7/igt@gem_exec_fair@basic-deadline.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-glk2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][240] ([i915#2842]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][242] ([i915#8545]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_schedule@deep@vecs0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-3/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][244] ([i915#5122] / [i915#5251]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-5/igt@gem_exec_suspend@basic-s0@smem.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_whisper@basic-queues-all: - shard-mtlp: [FAIL][246] ([i915#6363]) -> [PASS][247] +1 similar issue [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@gem_exec_whisper@basic-queues-all.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gem_exec_whisper@basic-queues-all.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [ABORT][248] ([i915#5161]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][250] ([i915#7069]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][252] ([fdo#109271]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@ccs0: - shard-dg2: [FAIL][254] ([i915#7747] / [i915#7894]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@ccs0.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg2: [FAIL][256] ([i915#7747]) -> [PASS][257] +3 similar issues [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][258] ([i915#1397]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@i915_pm_rpm@dpms-lpsp.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-10/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] +1 similar issue [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][262] ([i915#1397]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][264] ([i915#7059]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][266] ([i915#8497]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@i915_selftest@live@requests.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][268] ([i915#8573]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-7/igt@i915_selftest@perf@request.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [FAIL][270] ([i915#3743]) -> [PASS][271] +1 similar issue [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1: - shard-mtlp: [FAIL][272] -> [PASS][273] +1 similar issue [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-d-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][274] ([i915#2346]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: [FAIL][276] ([i915#4767]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][278] ([i915#6880]) -> [PASS][279] +3 similar issues [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][280] ([i915#4349]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-dg2: [FAIL][282] ([fdo#103375]) -> [FAIL][283] ([fdo#103375] / [i915#6121]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@vcs1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [TIMEOUT][284] ([i915#7392]) -> [ABORT][285] ([i915#8131]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [WARN][286] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][287] ([i915#7061]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-dg2-12/igt@i915_module_load@reload-with-fault-injection.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][288] ([i915#2681] / [i915#3591]) -> [WARN][289] ([i915#2681]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][290] ([fdo#109285]) -> [SKIP][291] ([fdo#109285] / [i915#4098]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7352/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/shard-rkl-3/igt@kms_force_connector_basic@force-load-detect.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7747]: https://gitlab.freedesktop.org/drm/intel/issues/7747 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7894]: https://gitlab.freedesktop.org/drm/intel/issues/7894 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8319]: https://gitlab.freedesktop.org/drm/intel/issues/8319 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7352 -> IGTPW_9285 CI-20190529: 20190529 CI_DRM_13328: 12cd6b2d321d9c034f3d4ba14788d68cb8da4eac @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9285: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html IGT_7352: 471bfababd070e1dac0ebb87470ac4f2ae85e663 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9285/index.html [-- Attachment #2: Type: text/html, Size: 91708 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-06-30 10:44 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-28 6:47 [igt-dev] [PATCH i-g-t v5 0/2] PM Suspend debug Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta 2023-06-28 6:47 ` [igt-dev] [PATCH i-g-t v5 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta 2023-06-28 7:43 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev6) Patchwork 2023-06-30 10:43 ` Gupta, Anshuman 2023-06-28 19:51 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox