* [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug
@ 2023-06-22 6:02 Anshuman Gupta
2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Anshuman Gupta @ 2023-06-22 6:02 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.
Anshuman Gupta (2):
lib/igt_aux: Disable console suspend for suspend test
lib/igt_aux: Enable PM Suspend dbg messages
lib/igt_aux.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta @ 2023-06-22 6:02 ` Anshuman Gupta 2023-06-23 18:07 ` Kamil Konieczny 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Anshuman Gupta @ 2023-06-22 6:02 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] 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 | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 386e257834..25bf720b8e 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,38 @@ 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); +} + +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 +981,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] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta @ 2023-06-23 18:07 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-06-23 18:07 UTC (permalink / raw) To: igt-dev; +Cc: badal.nilawar Hi Anshuman, On 2023-06-22 at 11:32:27 +0530, Anshuman Gupta wrote: > 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] Please add also documentation at functions using it about new functionality. Regards, Kamil > > 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 | 37 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > > diff --git a/lib/igt_aux.c b/lib/igt_aux.c > index 386e257834..25bf720b8e 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,38 @@ 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); > +} > + > +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 +981,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 [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta @ 2023-06-22 6:02 ` Anshuman Gupta 2023-06-22 17:52 ` Dixit, Ashutosh 2023-06-23 8:39 ` Anshuman Gupta 2023-06-22 7:00 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 11+ messages in thread From: Anshuman Gupta @ 2023-06-22 6:02 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] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> --- lib/igt_aux.c | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 25bf720b8e..3bd7132552 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); @@ -922,9 +923,18 @@ 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); } -static void igt_aux_enable_pm_suspend_dbg(void) +static void igt_aux_enable_pm_suspend_dbg(int power_dir) { int sysfs_fd; @@ -940,6 +950,14 @@ static void igt_aux_enable_pm_suspend_dbg(void) 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); } @@ -981,7 +999,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] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta @ 2023-06-22 17:52 ` Dixit, Ashutosh 2023-06-23 2:45 ` Gupta, Anshuman 2023-06-23 8:39 ` Anshuman Gupta 1 sibling, 1 reply; 11+ messages in thread From: Dixit, Ashutosh @ 2023-06-22 17:52 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev, badal.nilawar On Wed, 21 Jun 2023 23:02:28 -0700, Anshuman Gupta wrote: > Hi Anshuman, > @@ -940,6 +950,14 @@ static void igt_aux_enable_pm_suspend_dbg(void) > 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); We already installed this exit handler in Patch 1 (under 'if (sysfs_fd > 0)') so we shouldn't install it twice, correct? Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages 2023-06-22 17:52 ` Dixit, Ashutosh @ 2023-06-23 2:45 ` Gupta, Anshuman 0 siblings, 0 replies; 11+ messages in thread From: Gupta, Anshuman @ 2023-06-23 2:45 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev@lists.freedesktop.org, Nilawar, Badal > -----Original Message----- > From: Dixit, Ashutosh <ashutosh.dixit@intel.com> > Sent: Thursday, June 22, 2023 11:22 PM > To: Gupta, Anshuman <anshuman.gupta@intel.com> > Cc: igt-dev@lists.freedesktop.org; kamil.konieczny@linux.intel.com; Nilawar, > Badal <badal.nilawar@intel.com>; Tauro, Riana <riana.tauro@intel.com> > Subject: Re: [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg > messages > > On Wed, 21 Jun 2023 23:02:28 -0700, Anshuman Gupta wrote: > > > > Hi Anshuman, > > > @@ -940,6 +950,14 @@ static void > igt_aux_enable_pm_suspend_dbg(void) > > 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_ha > ndler); > > We already installed this exit handler in Patch 1 (under 'if (sysfs_fd > > 0)') so we shouldn't install it twice, correct? Thanks for noticing it , I messed it while rebasing. Rev2 has added only once. Thanks, Anshuman. > > Thanks. > -- > Ashutosh ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta 2023-06-22 17:52 ` Dixit, Ashutosh @ 2023-06-23 8:39 ` Anshuman Gupta 1 sibling, 0 replies; 11+ messages in thread From: Anshuman Gupta @ 2023-06-23 8:39 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] Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com> --- lib/igt_aux.c | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index 25bf720b8e..944cde008d 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); @@ -922,9 +923,18 @@ 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); } -static void igt_aux_enable_pm_suspend_dbg(void) +static void igt_aux_enable_pm_suspend_dbg(int power_dir) { int sysfs_fd; @@ -935,11 +945,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); } @@ -981,7 +998,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] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev3) 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta @ 2023-06-22 7:00 ` Patchwork 2023-06-22 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-06-22 7:00 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6993 bytes --] == Series Details == Series: PM Suspend debug (rev3) URL : https://patchwork.freedesktop.org/series/119371/ State : success == Summary == CI Bug Log - changes from IGT_7345 -> IGTPW_9237 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/index.html Participating hosts (42 -> 42) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9237 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: [PASS][1] -> [ABORT][2] ([i915#8011]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-adlp-11/igt@core_auth@basic-auth.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-adlp-11/igt@core_auth@basic-auth.html * igt@i915_module_load@load: - bat-adlp-11: [PASS][3] -> [DMESG-WARN][4] ([i915#4423]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-adlp-11/igt@i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][5] ([i915#7077]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][6] -> [DMESG-FAIL][7] ([i915#8497]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-mtlp-8/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][8] -> [DMESG-WARN][9] ([i915#6367]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-rpls-1/igt@i915_selftest@live@slpc.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][10] -> [DMESG-FAIL][11] ([i915#6763]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6645]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-atsm-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - bat-dg2-8: [PASS][14] -> [FAIL][15] ([i915#7932]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc: - fi-bsw-nick: NOTRUN -> [SKIP][16] ([fdo#109271]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/fi-bsw-nick/igt@kms_pipe_crc_basic@suspend-read-crc.html - bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#1836]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@primary_mmap_gtt: - bat-rplp-1: NOTRUN -> [SKIP][18] ([i915#1072]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#4579]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [ABORT][20] ([i915#7911] / [i915#7913]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/fi-bsw-nick/igt@i915_selftest@live@execlists.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][22] ([i915#6794] / [i915#7392]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-rpls-2/igt@i915_selftest@live@mman.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rpls-2/igt@i915_selftest@live@mman.html #### Warnings #### * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [ABORT][24] -> [SKIP][25] ([i915#1072]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7345 -> IGTPW_9237 CI-20190529: 20190529 CI_DRM_13302: 839a0f1c0fba27caa09cb8c3c07ba21ba7428bb6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9237: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/index.html IGT_7345: bedba6f82d70f8eb49c53cb2c45ee60a1eec04d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@kms_dirtyfb@dirtyfb-ioctl == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/index.html [-- Attachment #2: Type: text/html, Size: 8035 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for PM Suspend debug (rev3) 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta ` (2 preceding siblings ...) 2023-06-22 7:00 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev3) Patchwork @ 2023-06-22 15:08 ` Patchwork 2023-06-23 10:08 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev4) Patchwork 2023-06-23 14:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-06-22 15:08 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57031 bytes --] == Series Details == Series: PM Suspend debug (rev3) URL : https://patchwork.freedesktop.org/series/119371/ State : failure == Summary == CI Bug Log - changes from IGT_7345_full -> IGTPW_9237_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9237_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9237_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_9237/index.html Participating hosts (7 -> 8) ------------------------------ Additional (1): shard-dg2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9237_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-rkl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_content_protection@srm@pipe-a-dp-4: - {shard-dg2}: NOTRUN -> [TIMEOUT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html New tests --------- New tests have been introduced between IGT_7345_full and IGTPW_9237_full: ### New IGT tests (134) ### * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-mc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-cc-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-rc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-4-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-linear-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-linear-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-linear-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-linear-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-x-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-x-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-x-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-a-x-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-mc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-cc-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-rc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-4-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-linear-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-linear-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-linear-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-linear-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-x-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-x-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-x-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-b-x-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-mc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-cc-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-rc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-4-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-linear-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-linear-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-linear-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-linear-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-x-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-x-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-x-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-c-x-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-mc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-cc-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-rc_ccs-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-linear: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-4-to-x: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-linear-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-linear-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-linear-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-linear-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-x-to-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-x-to-4-mc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-x-to-4-rc_ccs: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip_tiling@flip-change-tiling@dp-4-pipe-d-x-to-4-rc_ccs-cc: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-dp-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-dp-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9237_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][5] -> [ABORT][6] ([i915#7461] / [i915#8211]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#4579] / [i915#5325]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_create@create-ext-set-pat: - shard-glk: NOTRUN -> [FAIL][8] ([i915#8621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][9] -> [FAIL][10] ([i915#6268]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#4525]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][14] ([i915#2842]) +4 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-2/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_reloc@basic-gtt: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3281]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@gem_exec_reloc@basic-gtt.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#4613]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3282]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4270]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#4270]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#3297]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#3297]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_userptr_blits@vma-merge: - shard-tglu: NOTRUN -> [FAIL][23] ([i915#3318]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-4/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#2527]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#7707]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-2/igt@i915_hwmon@hwmon-read.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][27] -> [SKIP][28] ([i915#1397]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#6245]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@i915_query@hwconfig_table.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#8502]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][32] ([fdo#111615]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-9/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#5354] / [i915#6095]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#5354] / [i915#6095]) +4 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#5354]) +8 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#3742]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#7828]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#7828]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_concurrent@pipe-c: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4070] / [i915#6768]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_concurrent@pipe-c.html * igt@kms_content_protection@content_type_change: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4579] / [i915#7118]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@kms_content_protection@content_type_change.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#4579]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3359]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4103]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][47] ([fdo#111825]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][48] -> [FAIL][49] ([i915#2346]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3804] / [i915#4579]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#3555] / [i915#4579]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][52] -> [FAIL][53] ([i915#79]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][54] ([fdo#109271]) +17 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-snb6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-tglu: NOTRUN -> [SKIP][55] ([fdo#109274] / [i915#3637]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4579]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#2672] / [i915#4579]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][58] ([fdo#111825] / [i915#1825]) +9 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][59] ([fdo#109280]) +6 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][60] ([fdo#110189]) +5 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3023]) +4 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#1839]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][64] ([i915#8292]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#5176]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4579] / [i915#5176]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-dp-2 (NEW): - {shard-dg2}: NOTRUN -> [SKIP][67] ([i915#5176]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-dg2-12/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-dp-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4579]) +11 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#5235]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#5235]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4579] / [i915#5235]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4579] / [i915#5235]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#5289]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#111615] / [i915#5289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271]) +43 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk3/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][78] ([fdo#109295] / [i915#3291] / [i915#3708]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#109295]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-7/igt@prime_vgem@fence-read-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109307]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-2/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-tglu: NOTRUN -> [SKIP][81] ([fdo#109315] / [i915#2575]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-4/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-rkl: NOTRUN -> [SKIP][82] ([fdo#109315]) +5 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2575]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-4/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#7711]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@vc4/vc4_perfmon@create-two-perfmon.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][85] ([i915#2842]) -> [PASS][86] +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - {shard-dg1}: [FAIL][87] ([i915#3591]) -> [PASS][88] +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][89] ([i915#1397]) -> [PASS][90] +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][91] ([i915#1397]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][93] ([i915#5334]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][95] ([fdo#103375]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-glk: [FAIL][97] ([i915#72]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@forked-move@pipe-b: - shard-rkl: [INCOMPLETE][99] ([i915#8011]) -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-7/igt@kms_cursor_legacy@forked-move@pipe-b.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-6/igt@kms_cursor_legacy@forked-move@pipe-b.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: [FAIL][101] ([i915#4767]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@perf_pmu@semaphore-busy@vcs1: - {shard-dg1}: [FAIL][103] ([i915#4349]) -> [PASS][104] +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][105] ([fdo#109300]) -> [SKIP][106] ([i915#4579] / [i915#7118]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-2/igt@kms_content_protection@mei_interface.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-4/igt@kms_content_protection@mei_interface.html - shard-apl: [SKIP][107] ([fdo#109271]) -> [SKIP][108] ([fdo#109271] / [i915#4579]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-apl1/igt@kms_content_protection@mei_interface.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-apl2/igt@kms_content_protection@mei_interface.html - shard-snb: [SKIP][109] ([fdo#109271]) -> [SKIP][110] ([fdo#109271] / [i915#4579]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-snb4/igt@kms_content_protection@mei_interface.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-snb2/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][111] ([fdo#109300]) -> [SKIP][112] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-tglu-10/igt@kms_content_protection@mei_interface.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-tglu-9/igt@kms_content_protection@mei_interface.html - shard-glk: [SKIP][113] ([fdo#109271]) -> [SKIP][114] ([fdo#109271] / [i915#4579]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-glk3/igt@kms_content_protection@mei_interface.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-glk8/igt@kms_content_protection@mei_interface.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][115] ([fdo#109285] / [i915#4098]) -> [SKIP][116] ([fdo#109285]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7345/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/shard-rkl-7/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). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [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#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [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#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [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#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [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#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8621]: https://gitlab.freedesktop.org/drm/intel/issues/8621 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7345 -> IGTPW_9237 CI-20190529: 20190529 CI_DRM_13302: 839a0f1c0fba27caa09cb8c3c07ba21ba7428bb6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9237: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/index.html IGT_7345: bedba6f82d70f8eb49c53cb2c45ee60a1eec04d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9237/index.html [-- Attachment #2: Type: text/html, Size: 61454 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev4) 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta ` (3 preceding siblings ...) 2023-06-22 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-06-23 10:08 ` Patchwork 2023-06-23 14:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-06-23 10:08 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10773 bytes --] == Series Details == Series: PM Suspend debug (rev4) URL : https://patchwork.freedesktop.org/series/119371/ State : success == Summary == CI Bug Log - changes from CI_DRM_13312 -> IGTPW_9244 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html Participating hosts (41 -> 42) ------------------------------ Additional (2): fi-kbl-soraka bat-dg1-8 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9244: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_create@create-massive-size}: - {bat-dg1-8}: NOTRUN -> [FAIL][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-dg1-8/igt@xe_create@create-massive-size.html Known issues ------------ Here are the changes found in IGTPW_9244 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-11: NOTRUN -> [ABORT][2] ([i915#8011]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlp-11/igt@core_auth@basic-auth.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#7059]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#7913]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#6763]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: NOTRUN -> [ABORT][10] ([i915#6687] / [i915#8668]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-adlm-1: NOTRUN -> [SKIP][11] ([i915#7828]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlm-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271]) +14 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-adlm-1: NOTRUN -> [SKIP][13] ([i915#1845]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_setmode@basic-clone-single-crtc: - fi-kbl-soraka: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4579]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence: - bat-adlm-1: [DMESG-FAIL][15] ([i915#8189]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-adlm-1/igt@dmabuf@all-tests@dma_fence.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlm-1/igt@dmabuf@all-tests@dma_fence.html * igt@dmabuf@all-tests@sanitycheck: - bat-adlm-1: [ABORT][17] ([i915#8423]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-adlm-1/igt@dmabuf@all-tests@sanitycheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlm-1/igt@dmabuf@all-tests@sanitycheck.html * igt@gem_exec_suspend@basic-s0@smem: - fi-rkl-11600: [FAIL][19] ([fdo#103375] / [i915#8011]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/fi-rkl-11600/igt@gem_exec_suspend@basic-s0@smem.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-rkl-11600/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][21] ([i915#5334]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.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/CI_DRM_13312/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-mtlp-8: [DMESG-FAIL][25] ([i915#7699]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-mtlp-8/igt@i915_selftest@live@migrate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-mtlp-8/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [DMESG-FAIL][27] ([i915#8497]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-mtlp-8/igt@i915_selftest@live@requests.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-rpls-2: [ABORT][29] ([i915#4983] / [i915#7913]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-rpls-2/igt@i915_selftest@live@requests.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [DMESG-WARN][31] ([i915#6367]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-rpls-1/igt@i915_selftest@live@slpc.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][33] ([i915#7932]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [ABORT][35] ([i915#4423]) -> [DMESG-WARN][36] ([i915#4423]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/bat-adlp-11/igt@i915_module_load@load.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/bat-adlp-11/igt@i915_module_load@load.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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8423]: https://gitlab.freedesktop.org/drm/intel/issues/8423 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8513]: https://gitlab.freedesktop.org/drm/intel/issues/8513 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8676]: https://gitlab.freedesktop.org/drm/intel/issues/8676 [i915#8678]: https://gitlab.freedesktop.org/drm/intel/issues/8678 [i915#8679]: https://gitlab.freedesktop.org/drm/intel/issues/8679 [i915#8698]: https://gitlab.freedesktop.org/drm/intel/issues/8698 [i915#8699]: https://gitlab.freedesktop.org/drm/intel/issues/8699 [i915#8700]: https://gitlab.freedesktop.org/drm/intel/issues/8700 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7347 -> IGTPW_9244 CI-20190529: 20190529 CI_DRM_13312: 08d15de81b3b0db3c9046d2556c10b9f136cc90f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html IGT_7347: 621c2d3115d40a1ba0b53668413ea21edf03a5ff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html [-- Attachment #2: Type: text/html, Size: 11585 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for PM Suspend debug (rev4) 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta ` (4 preceding siblings ...) 2023-06-23 10:08 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev4) Patchwork @ 2023-06-23 14:37 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-06-23 14:37 UTC (permalink / raw) To: Gupta, Anshuman; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44122 bytes --] == Series Details == Series: PM Suspend debug (rev4) URL : https://patchwork.freedesktop.org/series/119371/ State : success == Summary == CI Bug Log - changes from CI_DRM_13312_full -> IGTPW_9244_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-tglu0 New tests --------- New tests have been introduced between CI_DRM_13312_full and IGTPW_9244_full: ### New IGT tests (1) ### * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9244_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][3] -> [FAIL][4] ([i915#7742]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#1839]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-10/igt@feature_discovery@display-4x.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3281]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][7] -> [ABORT][8] ([i915#7461] / [i915#8190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#4579] / [i915#5325]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#4579] / [i915#5325]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#4579] / [i915#5325]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-10/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#2846]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#2842]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][19] -> [FAIL][20] ([i915#2842]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2190]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#4613]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#4613]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/igt@gem_lmem_swapping@smem-oom.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4270]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#4270]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#3282]) +4 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][27] ([fdo#109312]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@gem_softpin@evict-snoop.html - shard-tglu: NOTRUN -> [SKIP][28] ([fdo#109312]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#3323]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#3297]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][31] -> [ABORT][32] ([i915#180]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-apl1/igt@gem_workarounds@suspend-resume.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-apl3/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#2527]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][34] -> [ABORT][35] ([i915#5566]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk6/igt@gen9_exec_parse@allowed-single.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#2527] / [i915#2856]) +2 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#7561]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@i915_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#658]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][40] -> [SKIP][41] ([i915#1937] / [i915#4579]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][42] -> [SKIP][43] ([i915#1397]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#1397]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][45] ([fdo#111644] / [i915#1397]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu: NOTRUN -> [SKIP][46] ([fdo#109506]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_query@query-topology-unsupported: - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#109302]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [PASS][48] -> [ABORT][49] ([i915#4528] / [i915#4579]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-snb4/igt@i915_selftest@perf@engine_cs.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-snb1/igt@i915_selftest@perf@engine_cs.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][50] ([fdo#111615] / [i915#5286]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#5286]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][52] ([fdo#111614]) +4 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][53] ([fdo#111614] / [i915#3638]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-rkl: [PASS][54] -> [FAIL][55] ([i915#3743]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271]) +43 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk9/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][57] ([fdo#111615]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][58] ([fdo#111615]) +5 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][59] ([fdo#110723]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#5354] / [i915#6095]) +7 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#3689] / [i915#5354] / [i915#6095]) +9 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk1/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#5354] / [i915#6095]) +25 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#5354]) +10 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#111827]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#7828]) +5 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#7828]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3555] / [i915#4579]) +3 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#3359]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][73] ([fdo#109274]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][74] ([fdo#109274] / [fdo#111767]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#4103]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4579]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3804] / [i915#4579]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3840] / [i915#4579]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][79] ([fdo#111825]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#109274] / [i915#3637]) +8 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2672] / [i915#4579]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#2587] / [i915#2672] / [i915#4579]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#4579]) +4 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3023]) +8 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][85] ([fdo#109280]) +23 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#110189]) +25 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][87] ([fdo#111825] / [i915#1825]) +9 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#4579] / [i915#6953] / [i915#8228]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#4579] / [i915#6301]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][90] -> [FAIL][91] ([i915#8292]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][92] ([fdo#109271]) +16 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-snb4/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#5176]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/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][94] ([i915#4579] / [i915#5176]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/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-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#5235]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#4579] / [i915#5235]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#5235]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#4579]) +11 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-snb1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#4579] / [i915#5235]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][100] ([fdo#111068] / [i915#658]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111068] / [i915#658]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#1072]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111615] / [i915#5289]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3555] / [i915#4579]) +4 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#8623]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#8623]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@pipe-d-query-idle-hang: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4070] / [i915#533] / [i915#6768]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-7/igt@kms_vblank@pipe-d-query-idle-hang.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#109295] / [fdo#111656]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-3/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#109295]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@prime_vgem@fence-write-hang.html * igt@v3d/v3d_job_submission@threaded-job-submission: - shard-rkl: NOTRUN -> [SKIP][110] ([fdo#109315]) +4 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@v3d/v3d_job_submission@threaded-job-submission.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#109315] / [i915#2575]) +9 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-6/igt@v3d/v3d_submit_cl@valid-submission.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#2575]) +6 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-8/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#7711]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-rkl: [ABORT][114] ([i915#7461] / [i915#8211]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-2/igt@gem_barrier_race@remote-request@rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@gem_barrier_race@remote-request@rcs0.html - shard-tglu: [ABORT][116] ([i915#8211] / [i915#8234]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-7/igt@gem_barrier_race@remote-request@rcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][118] ([i915#6268]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@kms: - {shard-dg2}: [FAIL][120] ([i915#5784]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg2-7/igt@gem_eio@kms.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg2-6/igt@gem_eio@kms.html * igt@gem_eio@wait-wedge-immediate: - {shard-dg1}: [DMESG-WARN][122] -> [PASS][123] +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg1-19/igt@gem_eio@wait-wedge-immediate.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg1-15/igt@gem_eio@wait-wedge-immediate.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][124] ([i915#2842]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][126] ([i915#2842]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][128] ([i915#7975] / [i915#8213]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [ABORT][130] ([i915#5122] / [i915#5251]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-2/igt@gem_workarounds@suspend-resume-fd.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-9/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][132] ([i915#2681]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][134] ([i915#3591]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@modeset-non-lpsp: - {shard-dg1}: [SKIP][136] ([i915#1397]) -> [PASS][137] +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@gt_heartbeat: - shard-glk: [DMESG-FAIL][138] ([i915#5334]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk6/igt@i915_selftest@live@gt_heartbeat.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk3/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - {shard-dg2}: [FAIL][140] ([fdo#103375]) -> [PASS][141] +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg2-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@forked-move@pipe-b: - {shard-dg1}: [INCOMPLETE][142] ([i915#8011] / [i915#8347]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg1-19/igt@kms_cursor_legacy@forked-move@pipe-b.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg1-17/igt@kms_cursor_legacy@forked-move@pipe-b.html * igt@kms_cursor_legacy@single-bo@pipe-b: - shard-rkl: [INCOMPLETE][144] ([i915#8011]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-b.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1: - shard-glk: [FAIL][146] ([i915#79]) -> [PASS][147] [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html * igt@kms_sysfs_edid_timing: - {shard-dg2}: [FAIL][148] ([IGT#2]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg2-7/igt@kms_sysfs_edid_timing.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@syncobj_timeline@wait-for-submit-complex: - {shard-dg1}: [DMESG-WARN][150] ([i915#4391]) -> [PASS][151] +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-dg1-19/igt@syncobj_timeline@wait-for-submit-complex.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-dg1-13/igt@syncobj_timeline@wait-for-submit-complex.html #### Warnings #### * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][152] ([i915#3955]) -> [SKIP][153] ([fdo#110189] / [i915#3955]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][154] ([i915#4070] / [i915#4816]) -> [SKIP][155] ([i915#4816]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13312/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [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#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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [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#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [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#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [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_7347 -> IGTPW_9244 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13312: 08d15de81b3b0db3c9046d2556c10b9f136cc90f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9244: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html IGT_7347: 621c2d3115d40a1ba0b53668413ea21edf03a5ff @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9244/index.html [-- Attachment #2: Type: text/html, Size: 51658 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-06-23 18:08 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-22 6:02 [igt-dev] [PATCH i-g-t v3 0/2] PM Suspend debug Anshuman Gupta 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 1/2] lib/igt_aux: Disable console suspend for suspend test Anshuman Gupta 2023-06-23 18:07 ` Kamil Konieczny 2023-06-22 6:02 ` [igt-dev] [PATCH i-g-t v3 2/2] lib/igt_aux: Enable PM Suspend dbg messages Anshuman Gupta 2023-06-22 17:52 ` Dixit, Ashutosh 2023-06-23 2:45 ` Gupta, Anshuman 2023-06-23 8:39 ` Anshuman Gupta 2023-06-22 7:00 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev3) Patchwork 2023-06-22 15:08 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-06-23 10:08 ` [igt-dev] ✓ Fi.CI.BAT: success for PM Suspend debug (rev4) Patchwork 2023-06-23 14:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox