* [igt-dev] [PATCH i-g-t 0/1] clear igt_devs.devs_scanned in igt_devices_free
@ 2022-09-15 13:57 Riana Tauro
2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Riana Tauro @ 2022-09-15 13:57 UTC (permalink / raw)
To: igt-dev; +Cc: petri.latvala
igt_devices_scan returns with empty list if devs_scanned
is true and function is called after igt_devices_free
clear igt_devs.devs_scanned in igt_devices_free.
Riana Tauro (1):
lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free
lib/igt_device_scan.c | 1 +
1 file changed, 1 insertion(+)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free 2022-09-15 13:57 [igt-dev] [PATCH i-g-t 0/1] clear igt_devs.devs_scanned in igt_devices_free Riana Tauro @ 2022-09-15 13:57 ` Riana Tauro 2022-09-16 5:22 ` Tauro, Riana 2022-09-20 15:59 ` Dixit, Ashutosh 2022-09-15 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-09-16 2:17 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 2 replies; 8+ messages in thread From: Riana Tauro @ 2022-09-15 13:57 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala igt_devices_scan returns with empty list if devs_scanned is true and function is called after igt_devices_free clear igt_devs.devs_scanned in igt_devices_free. Signed-off-by: Riana Tauro <riana.tauro@intel.com> --- lib/igt_device_scan.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index eb6b45b8..e7c05d5c 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -1030,6 +1030,7 @@ void igt_devices_free(void) igt_device_free(dev); free(dev); } + igt_devs.devs_scanned = false; } /** -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free 2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro @ 2022-09-16 5:22 ` Tauro, Riana 2022-09-20 15:59 ` Dixit, Ashutosh 1 sibling, 0 replies; 8+ messages in thread From: Tauro, Riana @ 2022-09-16 5:22 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org Cc: Latvala, Petri, tvrtko.ursulin, ayaz.siddiqui On 9/15/2022 7:27 PM, Tauro, Riana wrote: > igt_devices_scan returns with empty list if devs_scanned > is true and function is called after igt_devices_free > > clear igt_devs.devs_scanned in igt_devices_free. > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > lib/igt_device_scan.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > index eb6b45b8..e7c05d5c 100644 > --- a/lib/igt_device_scan.c > +++ b/lib/igt_device_scan.c > @@ -1030,6 +1030,7 @@ void igt_devices_free(void) > igt_device_free(dev); > free(dev); > } > + igt_devs.devs_scanned = false; > } > > /** ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free 2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro 2022-09-16 5:22 ` Tauro, Riana @ 2022-09-20 15:59 ` Dixit, Ashutosh 2022-09-20 16:51 ` Tauro, Riana 2022-09-28 18:45 ` Zbigniew Kempczyński 1 sibling, 2 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2022-09-20 15:59 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev, petri.latvala On Thu, 15 Sep 2022 06:57:39 -0700, Riana Tauro wrote: > Hi Riana, > igt_devices_scan returns with empty list if devs_scanned > is true and function is called after igt_devices_free > > clear igt_devs.devs_scanned in igt_devices_free. The patch seems reasonable but could you please describe where you saw this issue? It seems 'igt_devices_scan(true)' (called with force == true) will get past this issue. Not too familiar with igt_devices_scan() usage so copying some more people. Also I am not sure why igt_devices_scan() doesn't simply do this: void igt_devices_scan(bool force) { if (force && igt_devs.devs_scanned) { igt_devices_free(); /* Not needed after this patch */ igt_devs.devs_scanned = false; } Thanks. -- Ashutosh > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > --- > lib/igt_device_scan.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > index eb6b45b8..e7c05d5c 100644 > --- a/lib/igt_device_scan.c > +++ b/lib/igt_device_scan.c > @@ -1030,6 +1030,7 @@ void igt_devices_free(void) > igt_device_free(dev); > free(dev); > } > + igt_devs.devs_scanned = false; > } > > /** > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free 2022-09-20 15:59 ` Dixit, Ashutosh @ 2022-09-20 16:51 ` Tauro, Riana 2022-09-28 18:45 ` Zbigniew Kempczyński 1 sibling, 0 replies; 8+ messages in thread From: Tauro, Riana @ 2022-09-20 16:51 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev, petri.latvala Hi Ashutosh This is seen after https://patchwork.freedesktop.org/patch/502118/?series=108305&rev=2 The changes that were made in the i915_suspend@basic-s2idle-without-i915 to disable d3cold_allowed uses the functions igt_devices_scan(false) and igt_devices_free() to get the first discrete card https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6659/bat-dg2-9/igt@i915_suspend@basic-s3-without-i915.html The issue is only seen when a device filter is used. igt_devices_scan(true) can be used too after module_load, but it will not be necessary if filter is not used On 9/20/2022 9:29 PM, Dixit, Ashutosh wrote: > On Thu, 15 Sep 2022 06:57:39 -0700, Riana Tauro wrote: >> > > Hi Riana, > >> igt_devices_scan returns with empty list if devs_scanned >> is true and function is called after igt_devices_free >> >> clear igt_devs.devs_scanned in igt_devices_free. > > The patch seems reasonable but could you please describe where you saw this > issue? It seems 'igt_devices_scan(true)' (called with force == true) will > get past this issue. Not too familiar with igt_devices_scan() usage so > copying some more people. > > Also I am not sure why igt_devices_scan() doesn't simply do this: > > void igt_devices_scan(bool force) > { > if (force && igt_devs.devs_scanned) { > igt_devices_free(); > > /* Not needed after this patch */ > igt_devs.devs_scanned = false; > } > > > > Thanks. > -- > Ashutosh > > >> >> Signed-off-by: Riana Tauro <riana.tauro@intel.com> >> --- >> lib/igt_device_scan.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c >> index eb6b45b8..e7c05d5c 100644 >> --- a/lib/igt_device_scan.c >> +++ b/lib/igt_device_scan.c >> @@ -1030,6 +1030,7 @@ void igt_devices_free(void) >> igt_device_free(dev); >> free(dev); >> } >> + igt_devs.devs_scanned = false; >> } >> >> /** >> -- >> 2.25.1 >> Thanks Riana Tauro ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: clear igt_devs.devs_scanned in igt_devices_free 2022-09-20 15:59 ` Dixit, Ashutosh 2022-09-20 16:51 ` Tauro, Riana @ 2022-09-28 18:45 ` Zbigniew Kempczyński 1 sibling, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2022-09-28 18:45 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev, petri.latvala On Tue, Sep 20, 2022 at 08:59:18AM -0700, Dixit, Ashutosh wrote: > On Thu, 15 Sep 2022 06:57:39 -0700, Riana Tauro wrote: > > > > Hi Riana, > > > igt_devices_scan returns with empty list if devs_scanned > > is true and function is called after igt_devices_free > > > > clear igt_devs.devs_scanned in igt_devices_free. > > The patch seems reasonable but could you please describe where you saw this > issue? It seems 'igt_devices_scan(true)' (called with force == true) will > get past this issue. Not too familiar with igt_devices_scan() usage so > copying some more people. > > Also I am not sure why igt_devices_scan() doesn't simply do this: > > void igt_devices_scan(bool force) > { > if (force && igt_devs.devs_scanned) { > igt_devices_free(); > > /* Not needed after this patch */ > igt_devs.devs_scanned = false; > } > > > > Thanks. > -- > Ashutosh Agree with you. igt_devices_free() should also mark devs_scanned = false to ensure it will be rescanned regardless force argument. And freeing code in igt_devices_scan() is redundant now. @Riana Please resubmit with: void igt_devices_scan(bool force) { if (force && igt_devs.devs_scanned) igt_devices_free(); ... rest is ok ... } and add igt_devs.devs_scanned = false to igt_devices_free(). IMO CI shouldn't complain and this redundancy will be removed. Thanks -- Zbigniew > > > > > > Signed-off-by: Riana Tauro <riana.tauro@intel.com> > > --- > > lib/igt_device_scan.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c > > index eb6b45b8..e7c05d5c 100644 > > --- a/lib/igt_device_scan.c > > +++ b/lib/igt_device_scan.c > > @@ -1030,6 +1030,7 @@ void igt_devices_free(void) > > igt_device_free(dev); > > free(dev); > > } > > + igt_devs.devs_scanned = false; > > } > > > > /** > > -- > > 2.25.1 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for clear igt_devs.devs_scanned in igt_devices_free 2022-09-15 13:57 [igt-dev] [PATCH i-g-t 0/1] clear igt_devs.devs_scanned in igt_devices_free Riana Tauro 2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro @ 2022-09-15 15:30 ` Patchwork 2022-09-16 2:17 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-09-15 15:30 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5817 bytes --] == Series Details == Series: clear igt_devs.devs_scanned in igt_devices_free URL : https://patchwork.freedesktop.org/series/108601/ State : success == Summary == CI Bug Log - changes from CI_DRM_12142 -> IGTPW_7786 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/index.html Participating hosts (45 -> 42) ------------------------------ Additional (2): bat-adlm-1 bat-dg2-9 Missing (5): fi-tgl-dsi fi-hsw-4200u fi-ctg-p8600 bat-jsl-1 fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_7786 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-bsw-kefka: NOTRUN -> [SKIP][1] ([fdo#109271] / [fdo#111827]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/fi-bsw-kefka/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [PASS][2] -> [FAIL][3] ([i915#6298]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html #### Possible fixes #### * igt@fbdev@write: - {fi-tgl-mst}: [SKIP][4] ([i915#2582]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/fi-tgl-mst/igt@fbdev@write.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/fi-tgl-mst/igt@fbdev@write.html * igt@gem_exec_suspend@basic-s0@smem: - fi-bsw-kefka: [INCOMPLETE][6] ([i915#4831]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/fi-bsw-kefka/igt@gem_exec_suspend@basic-s0@smem.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/fi-bsw-kefka/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@hugepages: - {bat-rpls-1}: [DMESG-WARN][8] ([i915#5278]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/bat-rpls-1/igt@i915_selftest@live@hugepages.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/bat-rpls-1/igt@i915_selftest@live@hugepages.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [FAIL][10] ([i915#6298]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-dg1-5: [DMESG-FAIL][12] ([i915#4957]) -> [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/bat-dg1-5/igt@i915_selftest@live@hangcheck.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#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#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [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#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4831]: https://gitlab.freedesktop.org/drm/intel/issues/4831 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6641]: https://gitlab.freedesktop.org/drm/intel/issues/6641 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6656 -> IGTPW_7786 CI-20190529: 20190529 CI_DRM_12142: 8334180f6fee071eaf8c79e630e2e69e140f0ba3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7786: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/index.html IGT_6656: 24100c4e181c50e3678aeca9c641b8a43555ad73 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/index.html [-- Attachment #2: Type: text/html, Size: 5361 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for clear igt_devs.devs_scanned in igt_devices_free 2022-09-15 13:57 [igt-dev] [PATCH i-g-t 0/1] clear igt_devs.devs_scanned in igt_devices_free Riana Tauro 2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro 2022-09-15 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-09-16 2:17 ` Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-09-16 2:17 UTC (permalink / raw) To: Riana Tauro; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36560 bytes --] == Series Details == Series: clear igt_devs.devs_scanned in igt_devices_free URL : https://patchwork.freedesktop.org/series/108601/ State : success == Summary == CI Bug Log - changes from CI_DRM_12142_full -> IGTPW_7786_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/index.html Participating hosts (10 -> 8) ------------------------------ Additional (1): shard-rkl Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Known issues ------------ Here are the changes found in IGTPW_7786_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][1] ([i915#2842]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglb: NOTRUN -> [FAIL][2] ([i915#2842]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@gem_exec_fair@basic-pace-solo@rcs0.html - shard-glk: NOTRUN -> [FAIL][3] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglb: [PASS][4] -> [FAIL][5] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2842]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][8] ([fdo#112283]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb6/igt@gem_exec_params@secure-non-root.html - shard-tglb: NOTRUN -> [SKIP][9] ([fdo#112283]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb8/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][10] -> [SKIP][11] ([i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-tglb5/igt@gem_huc_copy@huc-copy.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive-random: - shard-iclb: NOTRUN -> [SKIP][12] ([i915#4613]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@random: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#4613]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@gem_lmem_swapping@random.html - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk6/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) +2 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl3/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#4270]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb4/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#4270]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#109290]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb1/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#110542]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html * igt@gen9_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][20] ([i915#2527] / [i915#2856]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb8/igt@gen9_exec_parse@basic-rejected.html - shard-iclb: NOTRUN -> [SKIP][21] ([i915#2856]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb3/igt@gen9_exec_parse@basic-rejected.html * igt@i915_module_load@resize-bar: - shard-iclb: NOTRUN -> [SKIP][22] ([i915#6412]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb1/igt@i915_module_load@resize-bar.html - shard-tglb: NOTRUN -> [SKIP][23] ([i915#6412]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb3/igt@i915_module_load@resize-bar.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][24] -> [SKIP][25] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#1769] / [i915#3555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglb: NOTRUN -> [SKIP][27] ([i915#1769] / [i915#3555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#5286]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html - shard-iclb: NOTRUN -> [SKIP][29] ([i915#5286]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#110725] / [fdo#111614]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#111614]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-glk: [PASS][32] -> [FAIL][33] ([i915#1888] / [i915#5138]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk3/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk6/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#110723]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#111615]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#2705]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb5/igt@kms_big_joiner@2x-modeset.html - shard-iclb: NOTRUN -> [SKIP][37] ([i915#2705]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk1/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278] / [i915#3886]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb8/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109278]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb6/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][43] ([i915#6095]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb8/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_chamelium@dp-audio: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109284] / [fdo#111827]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@kms_chamelium@dp-audio.html - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-snb7/igt@kms_chamelium@dp-audio.html * igt@kms_chamelium@hdmi-edid-read: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +5 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl6/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_color_chamelium@ctm-max: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb2/igt@kms_color_chamelium@ctm-max.html - shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk7/igt@kms_color_chamelium@ctm-max.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109274]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109274] / [fdo#111825]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [PASS][52] -> [FAIL][53] ([i915#2346]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#2587] / [i915#2672]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][56] ([i915#3555]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][57] ([i915#2672]) +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#2672] / [i915#3555]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109280]) +11 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglb: NOTRUN -> [SKIP][60] ([i915#6497]) +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271]) +42 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271]) +91 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html - shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271]) +80 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) +11 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-apl: [PASS][65] -> [DMESG-WARN][66] ([i915#180]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-yf: - shard-tglb: NOTRUN -> [SKIP][67] ([fdo#112054] / [i915#5288]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][68] ([i915#3536]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@kms_plane_lowres@tiling-yf@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#5176]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#111068] / [i915#658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html - shard-tglb: NOTRUN -> [SKIP][74] ([i915#2920]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109441]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-tglb: NOTRUN -> [FAIL][76] ([i915#132] / [i915#3467]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][77] -> [SKIP][78] ([fdo#109441]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@prime_nv_test@i915_nv_sharing: - shard-tglb: NOTRUN -> [SKIP][79] ([fdo#109291]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb1/igt@prime_nv_test@i915_nv_sharing.html - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109291]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb6/igt@prime_nv_test@i915_nv_sharing.html * igt@prime_vgem@fence-read-hang: - shard-iclb: NOTRUN -> [SKIP][81] ([fdo#109295]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb8/igt@prime_vgem@fence-read-hang.html - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#109295]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb7/igt@prime_vgem@fence-read-hang.html * igt@sysfs_clients@sema-25: - shard-apl: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2994]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl2/igt@sysfs_clients@sema-25.html - shard-tglb: NOTRUN -> [SKIP][84] ([i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb5/igt@sysfs_clients@sema-25.html - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2994]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk1/igt@sysfs_clients@sema-25.html - shard-iclb: NOTRUN -> [SKIP][86] ([i915#2994]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb3/igt@sysfs_clients@sema-25.html #### Possible fixes #### * igt@gem_eio@kms: - shard-tglb: [FAIL][87] ([i915#5784]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-tglb1/igt@gem_eio@kms.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb6/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel: - shard-iclb: [SKIP][89] ([i915#4525]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb5/igt@gem_exec_balancer@parallel.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][91] ([i915#2842]) -> [PASS][92] +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][93] ([i915#5566] / [i915#716]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk9/igt@gen9_exec_parse@allowed-single.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk6/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc5-psr: - shard-tglb: [FAIL][95] ([i915#3989]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-tglb8/igt@i915_pm_dc@dc5-psr.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb3/igt@i915_pm_dc@dc5-psr.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][97] ([i915#180]) -> [PASS][98] +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-dp-1: - shard-apl: [FAIL][99] -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-dp-1.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-dp-1.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglb: [FAIL][101] ([i915#3743]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-tglb6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-tglb1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_edge_walk@right-edge@pipe-a-dp-1-256x256: - shard-apl: [DMESG-WARN][103] ([i915#62]) -> [PASS][104] +20 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl1/igt@kms_cursor_edge_walk@right-edge@pipe-a-dp-1-256x256.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl7/igt@kms_cursor_edge_walk@right-edge@pipe-a-dp-1-256x256.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][105] ([i915#2346]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@plain-flip-interruptible@a-dp1: - shard-apl: [DMESG-WARN][107] ([i915#1982] / [i915#62]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-apl1/igt@kms_flip@plain-flip-interruptible@a-dp1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-apl6/igt@kms_flip@plain-flip-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: [SKIP][109] ([i915#3555]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][111] ([fdo#109441]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-iclb: [DMESG-WARN][113] ([i915#2867]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb5/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][115] ([i915#6117]) -> [SKIP][116] ([i915#4525]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: [SKIP][117] ([fdo#111068] / [i915#658]) -> [SKIP][118] ([i915#2920]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12142/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.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#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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [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#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [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#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#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#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [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#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [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#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6599]: https://gitlab.freedesktop.org/drm/intel/issues/6599 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6656 -> IGTPW_7786 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12142: 8334180f6fee071eaf8c79e630e2e69e140f0ba3 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7786: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7786/index.html IGT_6656: 24100c4e181c50e3678aeca9c641b8a43555ad73 @ 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_7786/index.html [-- Attachment #2: Type: text/html, Size: 38184 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-09-28 18:45 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-09-15 13:57 [igt-dev] [PATCH i-g-t 0/1] clear igt_devs.devs_scanned in igt_devices_free Riana Tauro 2022-09-15 13:57 ` [igt-dev] [PATCH i-g-t 1/1] lib/igt_device_scan: " Riana Tauro 2022-09-16 5:22 ` Tauro, Riana 2022-09-20 15:59 ` Dixit, Ashutosh 2022-09-20 16:51 ` Tauro, Riana 2022-09-28 18:45 ` Zbigniew Kempczyński 2022-09-15 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-09-16 2:17 ` [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