* [igt-dev] [PATCH i-g-t 0/1] Skip enforce S3 based on mem_sleep state
@ 2022-08-10 9:40 Riana Tauro
2022-08-10 9:40 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported Riana Tauro
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Riana Tauro @ 2022-08-10 9:40 UTC (permalink / raw)
To: igt-dev; +Cc: rodrigo.vivi
Skip SUSPEND_STATE_S3 if mem_sleep state 'deep' is not supported
Riana Tauro (1):
lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not
supported
lib/igt_aux.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported 2022-08-10 9:40 [igt-dev] [PATCH i-g-t 0/1] Skip enforce S3 based on mem_sleep state Riana Tauro @ 2022-08-10 9:40 ` Riana Tauro 2022-08-10 11:51 ` Gupta, Anshuman 2022-08-10 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Skip enforce S3 based on mem_sleep state Patchwork 2022-08-10 20:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Riana Tauro @ 2022-08-10 9:40 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi Forcing s3 by setting mem_sleep to deep fails if s3 is not supported by platform Skip the test by checking if s3 is not one of the supported mem_sleep states Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/6531 Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- lib/igt_aux.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/igt_aux.c b/lib/igt_aux.c index d80a1935..edb53425 100644 --- a/lib/igt_aux.c +++ b/lib/igt_aux.c @@ -882,6 +882,23 @@ static void set_mem_sleep(int power_dir, enum igt_mem_sleep sleep) mem_sleep_name[sleep])); } +static bool is_mem_sleep_state_supported(int power_dir, enum igt_mem_sleep state) +{ + const char *str; + char *mem_sleep_states; + + igt_assert((mem_sleep_states = igt_sysfs_get(power_dir, "mem_sleep"))); + + str = strstr(mem_sleep_states, mem_sleep_name[state]); + + if (!str) + igt_info("mem_sleep state %s not supported.\nSupported mem_sleep states: %s\n", + mem_sleep_name[state], mem_sleep_states); + + free(mem_sleep_states); + return str; +} + /** * igt_system_suspend_autoresume: * @state: an #igt_suspend_state, the target suspend state @@ -923,6 +940,8 @@ void igt_system_suspend_autoresume(enum igt_suspend_state state, if (state == SUSPEND_STATE_S3) { orig_mem_sleep = get_mem_sleep(); + igt_skip_on_f(!is_mem_sleep_state_supported(power_dir, MEM_SLEEP_DEEP), + "S3 not supported in this system.\n"); set_mem_sleep(power_dir, MEM_SLEEP_DEEP); igt_skip_on_f(get_mem_sleep() != MEM_SLEEP_DEEP, "S3 not possible in this system.\n"); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported 2022-08-10 9:40 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported Riana Tauro @ 2022-08-10 11:51 ` Gupta, Anshuman 2022-08-15 16:39 ` Rodrigo Vivi 0 siblings, 1 reply; 6+ messages in thread From: Gupta, Anshuman @ 2022-08-10 11:51 UTC (permalink / raw) To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Vivi, Rodrigo > -----Original Message----- > From: Tauro, Riana <riana.tauro@intel.com> > Sent: Wednesday, August 10, 2022 3:10 PM > To: igt-dev@lists.freedesktop.org > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > <anshuman.gupta@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com> > Subject: [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep > deep state is not supported > > Forcing s3 by setting mem_sleep to deep fails if s3 is not supported by platform > > Skip the test by checking if s3 is not one of the supported mem_sleep states > > Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/6531 > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > lib/igt_aux.c | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > > diff --git a/lib/igt_aux.c b/lib/igt_aux.c index d80a1935..edb53425 100644 > --- a/lib/igt_aux.c > +++ b/lib/igt_aux.c > @@ -882,6 +882,23 @@ static void set_mem_sleep(int power_dir, enum > igt_mem_sleep sleep) > mem_sleep_name[sleep])); > } > > +static bool is_mem_sleep_state_supported(int power_dir, enum > +igt_mem_sleep state) { > + const char *str; > + char *mem_sleep_states; > + > + igt_assert((mem_sleep_states = igt_sysfs_get(power_dir, > +"mem_sleep"))); > + > + str = strstr(mem_sleep_states, mem_sleep_name[state]); > + > + if (!str) > + igt_info("mem_sleep state %s not supported.\nSupported > mem_sleep states: %s\n", > + mem_sleep_name[state], mem_sleep_states); Nitpicking With this It may print with []: mem_sleep state deep not supported Supported mem_sleep states: [s2idle] shallow But as this could be an extra piece of information of current mem_sleep state as well. Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> > + > + free(mem_sleep_states); > + return str; > +} > + > /** > * igt_system_suspend_autoresume: > * @state: an #igt_suspend_state, the target suspend state @@ -923,6 +940,8 > @@ void igt_system_suspend_autoresume(enum igt_suspend_state state, > > if (state == SUSPEND_STATE_S3) { > orig_mem_sleep = get_mem_sleep(); > + igt_skip_on_f(!is_mem_sleep_state_supported(power_dir, > MEM_SLEEP_DEEP), > + "S3 not supported in this system.\n"); > set_mem_sleep(power_dir, MEM_SLEEP_DEEP); > igt_skip_on_f(get_mem_sleep() != MEM_SLEEP_DEEP, > "S3 not possible in this system.\n"); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported 2022-08-10 11:51 ` Gupta, Anshuman @ 2022-08-15 16:39 ` Rodrigo Vivi 0 siblings, 0 replies; 6+ messages in thread From: Rodrigo Vivi @ 2022-08-15 16:39 UTC (permalink / raw) To: Gupta, Anshuman; +Cc: igt-dev@lists.freedesktop.org On Wed, Aug 10, 2022 at 07:51:07AM -0400, Gupta, Anshuman wrote: > > > > -----Original Message----- > > From: Tauro, Riana <riana.tauro@intel.com> > > Sent: Wednesday, August 10, 2022 3:10 PM > > To: igt-dev@lists.freedesktop.org > > Cc: Tauro, Riana <riana.tauro@intel.com>; Gupta, Anshuman > > <anshuman.gupta@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com> > > Subject: [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep > > deep state is not supported > > > > Forcing s3 by setting mem_sleep to deep fails if s3 is not supported by platform > > > > Skip the test by checking if s3 is not one of the supported mem_sleep states > > > > Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/6531 > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > > --- > > lib/igt_aux.c | 19 +++++++++++++++++++ > > 1 file changed, 19 insertions(+) > > > > diff --git a/lib/igt_aux.c b/lib/igt_aux.c index d80a1935..edb53425 100644 > > --- a/lib/igt_aux.c > > +++ b/lib/igt_aux.c > > @@ -882,6 +882,23 @@ static void set_mem_sleep(int power_dir, enum > > igt_mem_sleep sleep) > > mem_sleep_name[sleep])); > > } > > > > +static bool is_mem_sleep_state_supported(int power_dir, enum > > +igt_mem_sleep state) { > > + const char *str; > > + char *mem_sleep_states; > > + > > + igt_assert((mem_sleep_states = igt_sysfs_get(power_dir, > > +"mem_sleep"))); > > + > > + str = strstr(mem_sleep_states, mem_sleep_name[state]); > > + > > + if (!str) > > + igt_info("mem_sleep state %s not supported.\nSupported > > mem_sleep states: %s\n", > > + mem_sleep_name[state], mem_sleep_states); > Nitpicking > With this It may print with []: > mem_sleep state deep not supported > Supported mem_sleep states: [s2idle] shallow > But as this could be an extra piece of information of current mem_sleep state as well. > Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com> pushed. thanks for fixing this. > > > + > > + free(mem_sleep_states); > > + return str; > > +} > > + > > /** > > * igt_system_suspend_autoresume: > > * @state: an #igt_suspend_state, the target suspend state @@ -923,6 +940,8 > > @@ void igt_system_suspend_autoresume(enum igt_suspend_state state, > > > > if (state == SUSPEND_STATE_S3) { > > orig_mem_sleep = get_mem_sleep(); > > + igt_skip_on_f(!is_mem_sleep_state_supported(power_dir, > > MEM_SLEEP_DEEP), > > + "S3 not supported in this system.\n"); > > set_mem_sleep(power_dir, MEM_SLEEP_DEEP); > > igt_skip_on_f(get_mem_sleep() != MEM_SLEEP_DEEP, > > "S3 not possible in this system.\n"); > > -- > > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Skip enforce S3 based on mem_sleep state 2022-08-10 9:40 [igt-dev] [PATCH i-g-t 0/1] Skip enforce S3 based on mem_sleep state Riana Tauro 2022-08-10 9:40 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported Riana Tauro @ 2022-08-10 12:59 ` Patchwork 2022-08-10 20:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-08-10 12:59 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7020 bytes --] == Series Details == Series: Skip enforce S3 based on mem_sleep state URL : https://patchwork.freedesktop.org/series/107115/ State : success == Summary == CI Bug Log - changes from CI_DRM_11981 -> IGTPW_7628 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-rpls-2 Missing (2): fi-ctg-p8600 fi-hsw-4200u Known issues ------------ Here are the changes found in IGTPW_7628 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_pm: - bat-adlp-4: [PASS][1] -> [DMESG-FAIL][2] ([i915#3987]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-adlp-4/igt@i915_selftest@live@gt_pm.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-adlp-4/igt@i915_selftest@live@gt_pm.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-blb-e6850: NOTRUN -> [SKIP][3] ([fdo#109271]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-blb-e6850/igt@kms_chamelium@common-hpd-after-suspend.html * igt@runner@aborted: - fi-apl-guc: NOTRUN -> [FAIL][4] ([i915#4312]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-apl-guc/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-rplp-1}: [DMESG-WARN][5] ([i915#2867]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_pm_rpm@basic-pci-d3-state: - {bat-jsl-3}: [FAIL][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-jsl-3/igt@i915_pm_rpm@basic-pci-d3-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-jsl-3/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_heartbeat: - {fi-ehl-2}: [DMESG-FAIL][9] ([i915#5334]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/fi-ehl-2/igt@i915_selftest@live@gt_heartbeat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-ehl-2/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - {bat-adlm-1}: [INCOMPLETE][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-adlm-1/igt@i915_selftest@live@hangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-adlm-1/igt@i915_selftest@live@hangcheck.html - bat-dg1-5: [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-dg1-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - {bat-rpls-1}: [DMESG-FAIL][15] ([i915#5087] / [i915#6257]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/bat-rpls-1/igt@i915_selftest@live@requests.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/bat-rpls-1/igt@i915_selftest@live@requests.html - fi-blb-e6850: [DMESG-FAIL][17] ([i915#4528]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/fi-blb-e6850/igt@i915_selftest@live@requests.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [FAIL][19] ([i915#6298]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - fi-bdw-5557u: [INCOMPLETE][21] ([i915#146]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/fi-bdw-5557u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/fi-bdw-5557u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5087]: https://gitlab.freedesktop.org/drm/intel/issues/5087 [i915#5270]: https://gitlab.freedesktop.org/drm/intel/issues/5270 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537 [i915#5998]: https://gitlab.freedesktop.org/drm/intel/issues/5998 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6619 -> IGTPW_7628 CI-20190529: 20190529 CI_DRM_11981: 6f207fdd93a13166b4adfe2f3a2972a9c632e757 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7628: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/index.html IGT_6619: ec2ab8e3a151ce05bd2726319c528c2ab99e8a96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/index.html [-- Attachment #2: Type: text/html, Size: 6896 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Skip enforce S3 based on mem_sleep state 2022-08-10 9:40 [igt-dev] [PATCH i-g-t 0/1] Skip enforce S3 based on mem_sleep state Riana Tauro 2022-08-10 9:40 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported Riana Tauro 2022-08-10 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Skip enforce S3 based on mem_sleep state Patchwork @ 2022-08-10 20:13 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-08-10 20:13 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36245 bytes --] == Series Details == Series: Skip enforce S3 based on mem_sleep state URL : https://patchwork.freedesktop.org/series/107115/ State : success == Summary == CI Bug Log - changes from CI_DRM_11981_full -> IGTPW_7628_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/index.html Participating hosts (10 -> 7) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 New tests --------- New tests have been introduced between CI_DRM_11981_full and IGTPW_7628_full: ### New IGT tests (2) ### * igt@kms_busy@extended-modeset-hang-oldfb@pipe-b: - Statuses : 1 pass(s) - Exec time: [6.02] s * igt@kms_busy@extended-modeset-hang-oldfb@pipe-c: - Statuses : 4 pass(s) - Exec time: [6.89, 9.00] s Known issues ------------ Here are the changes found in IGTPW_7628_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_buddy@all: - shard-iclb: NOTRUN -> [SKIP][1] ([i915#6433]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb1/igt@drm_buddy@all.html - shard-tglb: NOTRUN -> [SKIP][2] ([i915#6433]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@drm_buddy@all.html * igt@feature_discovery@psr2: - shard-iclb: [PASS][3] -> [SKIP][4] ([i915#658]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb2/igt@feature_discovery@psr2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb7/igt@feature_discovery@psr2.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-kbl: [PASS][5] -> [DMESG-WARN][6] ([i915#180]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@vecs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-snb4/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_eio@in-flight-contexts-10ms: - shard-tglb: [PASS][8] -> [TIMEOUT][9] ([i915#3063]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-tglb3/igt@gem_eio@in-flight-contexts-10ms.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb5/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_eio@in-flight-suspend: - shard-apl: [PASS][10] -> [DMESG-WARN][11] ([i915#180]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl6/igt@gem_eio@in-flight-suspend.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][12] ([i915#3354]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-snb7/igt@gem_eio@unwedge-stress.html - shard-tglb: NOTRUN -> [FAIL][13] ([i915#5784]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][16] -> [FAIL][17] ([i915#2842]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#112283]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb3/igt@gem_exec_params@secure-non-root.html - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#112283]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb5/igt@gem_exec_params@secure-non-root.html * igt@gem_lmem_swapping@parallel-multi: - shard-kbl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +4 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#4613]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_pread@exhaustion: - shard-kbl: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_pread@exhaustion.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271]) +152 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl2/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271]) +24 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html - shard-iclb: NOTRUN -> [SKIP][25] ([i915#768]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#3323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-apl: NOTRUN -> [DMESG-WARN][27] ([i915#4991]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@gem_userptr_blits@input-checking.html * igt@gen7_exec_parse@chained-batch: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109289]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb5/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109289]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb6/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@bb-start-out: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#2527] / [i915#2856]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@gen9_exec_parse@bb-start-out.html - shard-iclb: NOTRUN -> [SKIP][31] ([i915#2856]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][32] -> [DMESG-WARN][33] ([i915#4528]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-snb5/igt@i915_module_load@reload-no-display.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-snb2/igt@i915_module_load@reload-no-display.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][34] -> [FAIL][35] ([i915#454]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html - shard-kbl: NOTRUN -> [FAIL][36] ([i915#454]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#5286]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html - shard-iclb: NOTRUN -> [SKIP][38] ([i915#5286]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#3886]) +9 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-glk: [PASS][41] -> [FAIL][42] ([i915#1888] / [i915#5046]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk8/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109278] / [i915#3886]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689] / [i915#3886]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][45] ([fdo#109271]) +261 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3886]) +12 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109278]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_chamelium@hdmi-hpd-enable-disable-mode: - shard-kbl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +12 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium@hdmi-hpd-storm: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +5 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@kms_chamelium@hdmi-hpd-storm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#4103]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html - shard-iclb: NOTRUN -> [SKIP][51] ([i915#4103]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_dsc@dsc-with-bpp: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#3828]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb3/igt@kms_dsc@dsc-with-bpp.html - shard-iclb: NOTRUN -> [SKIP][53] ([i915#3828]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_dsc@dsc-with-bpp.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109274]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb1/igt@kms_flip@2x-blocking-wf_vblank.html - shard-tglb: NOTRUN -> [SKIP][55] ([fdo#109274] / [fdo#111825] / [i915#3637]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][56] ([i915#180]) +3 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][57] ([i915#2672]) +6 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#2672]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][59] ([i915#2672] / [i915#3555]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#3555]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#1888] / [i915#2546]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) +3 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#6497]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][65] ([fdo#109271]) +40 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#109280] / [fdo#111825]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-iclb: NOTRUN -> [SKIP][67] ([i915#1839]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglb: NOTRUN -> [SKIP][68] ([i915#1839]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][69] ([fdo#108145] / [i915#265]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: - shard-kbl: NOTRUN -> [FAIL][70] ([i915#265]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl7/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][71] ([fdo#108145] / [i915#265]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][72] ([fdo#111615]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb3/igt@kms_plane_multiple@atomic-pipe-c-tiling-yf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-kbl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-tglb: NOTRUN -> [FAIL][75] ([i915#132] / [i915#3467]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@kms_psr@psr2_primary_mmap_gtt.html - shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109441]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb1/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][77] -> [SKIP][78] ([fdo#109441]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb4/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][79] -> [SKIP][80] ([i915#5519]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-tglb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-b-wait-forked-busy-hang: - shard-snb: [PASS][81] -> [SKIP][82] ([fdo#109271]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-snb4/igt@kms_vblank@pipe-b-wait-forked-busy-hang.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-snb7/igt@kms_vblank@pipe-b-wait-forked-busy-hang.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#533]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2437]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@kms_writeback@writeback-fb-id.html - shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2437]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl7/igt@kms_writeback@writeback-fb-id.html * igt@prime_nv_api@i915_nv_import_twice_check_flink_name: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109291]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-tglb2/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109291]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb7/igt@prime_nv_pcopy@test3_3.html * igt@sysfs_clients@fair-7: - shard-kbl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#2994]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@sysfs_clients@fair-7.html - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2994]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@sysfs_clients@fair-7.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-kbl: [DMESG-WARN][90] ([i915#180]) -> [PASS][91] +7 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@vcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_eio@in-flight-contexts-1us: - shard-apl: [TIMEOUT][92] ([i915#3063]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl1/igt@gem_eio@in-flight-contexts-1us.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl7/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [SKIP][94] ([i915#4525]) -> [PASS][95] +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-kbl: [FAIL][96] ([i915#2842]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl1/igt@gem_exec_fair@basic-none-vip@rcs0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl7/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][98] ([i915#2842]) -> [PASS][99] +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-kbl: [INCOMPLETE][100] -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-glk: [FAIL][102] ([i915#2521]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursor-vs-flip@varying-size: - shard-iclb: [FAIL][104] ([i915#5072]) -> [PASS][105] +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb3/igt@kms_cursor_legacy@cursor-vs-flip@varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][106] ([i915#2346]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][108] ([i915#2122]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2: - shard-glk: [FAIL][110] ([i915#79]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: [SKIP][112] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb8/igt@kms_psr2_su@page_flip-xrgb8888.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-iclb: [SKIP][114] ([fdo#109441]) -> [PASS][115] +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_cpu.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - shard-apl: [DMESG-WARN][116] ([i915#1982] / [i915#62]) -> [PASS][117] +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl3/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@kms_vblank@pipe-a-accuracy-idle: - shard-apl: [DMESG-WARN][118] ([i915#62]) -> [PASS][119] +6 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl3/igt@kms_vblank@pipe-a-accuracy-idle.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@kms_vblank@pipe-a-accuracy-idle.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm: - shard-apl: [FAIL][120] -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-apl: [DMESG-WARN][122] ([i915#180]) -> [PASS][123] +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@perf@polling-parameterized: - shard-glk: [FAIL][124] ([i915#5639]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-glk9/igt@perf@polling-parameterized.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-glk3/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [SKIP][126] ([i915#4525]) -> [FAIL][127] ([i915#6117]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-kbl: [FAIL][128] ([i915#2842]) -> [SKIP][129] ([fdo#109271]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs0.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs0.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-apl: [DMESG-FAIL][130] ([fdo#108145] / [i915#62]) -> [FAIL][131] ([fdo#108145] / [i915#265]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][132] ([i915#658]) -> [SKIP][133] ([i915#2920]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][134] ([i915#2920]) -> [SKIP][135] ([fdo#111068] / [i915#658]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb8/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-iclb: [SKIP][136] ([fdo#111068] / [i915#658]) -> [SKIP][137] ([i915#2920]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl3/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl1/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl4/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl2/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl2/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11981/shard-apl8/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl1/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl6/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl7/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl8/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/shard-apl3/igt@runner@aborted.html [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [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#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5046]: https://gitlab.freedesktop.org/drm/intel/issues/5046 [i915#5072]: https://gitlab.freedesktop.org/drm/intel/issues/5072 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6619 -> IGTPW_7628 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_11981: 6f207fdd93a13166b4adfe2f3a2972a9c632e757 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7628: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7628/index.html IGT_6619: ec2ab8e3a151ce05bd2726319c528c2ab99e8a96 @ 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_7628/index.html [-- Attachment #2: Type: text/html, Size: 45411 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-08-15 16:39 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-08-10 9:40 [igt-dev] [PATCH i-g-t 0/1] Skip enforce S3 based on mem_sleep state Riana Tauro 2022-08-10 9:40 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_aux : Skip SUSPEND_STATE_S3 if mem_sleep deep state is not supported Riana Tauro 2022-08-10 11:51 ` Gupta, Anshuman 2022-08-15 16:39 ` Rodrigo Vivi 2022-08-10 12:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Skip enforce S3 based on mem_sleep state Patchwork 2022-08-10 20:13 ` [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