* [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag
@ 2023-01-13 19:25 Zbigniew Kempczyński
2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section Zbigniew Kempczyński
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Zbigniew Kempczyński @ 2023-01-13 19:25 UTC (permalink / raw)
To: igt-dev
During reviewing Karolina series I realized I've incidentally
put crc32 table to common section instead of properly define it
in .c file and extern.
Since gcc-10 -fcommon is removed and using this flag is deprecated
remove it from the IGTs too.
Zbigniew Kempczyński (2):
lib/igt_crc: Remove crc32 table from common section
meson.build: Remove -fcommon flag
lib/igt_crc.h | 2 +-
meson.build | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section 2023-01-13 19:25 [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag Zbigniew Kempczyński @ 2023-01-13 19:25 ` Zbigniew Kempczyński 2023-01-16 9:29 ` Petri Latvala 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag Zbigniew Kempczyński ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Zbigniew Kempczyński @ 2023-01-13 19:25 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala I've incidentally put crc32 table definition to the header file instead of exporting it via extern keyword. Remove this symbol from common section to be C89 conformant. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- lib/igt_crc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/igt_crc.h b/lib/igt_crc.h index 5c0b934ea5..bd36cb61d1 100644 --- a/lib/igt_crc.h +++ b/lib/igt_crc.h @@ -24,7 +24,7 @@ * All crc tables are globals to allow direct in-code use. */ -const uint32_t igt_crc32_tab[256]; +extern const uint32_t igt_crc32_tab[256]; uint32_t igt_cpu_crc32(const void *buf, size_t size); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section Zbigniew Kempczyński @ 2023-01-16 9:29 ` Petri Latvala 0 siblings, 0 replies; 8+ messages in thread From: Petri Latvala @ 2023-01-16 9:29 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Fri, Jan 13, 2023 at 08:25:52PM +0100, Zbigniew Kempczyński wrote: > I've incidentally put crc32 table definition to the header file > instead of exporting it via extern keyword. Remove this symbol > from common section to be C89 conformant. > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Petri Latvala <petri.latvala@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Fixes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/126 Thanks, I was just about to send this same patch. Reviewed-by: Petri Latvala <petri.latvala@intel.com> > --- > lib/igt_crc.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/igt_crc.h b/lib/igt_crc.h > index 5c0b934ea5..bd36cb61d1 100644 > --- a/lib/igt_crc.h > +++ b/lib/igt_crc.h > @@ -24,7 +24,7 @@ > * All crc tables are globals to allow direct in-code use. > */ > > -const uint32_t igt_crc32_tab[256]; > +extern const uint32_t igt_crc32_tab[256]; > > uint32_t igt_cpu_crc32(const void *buf, size_t size); > > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag 2023-01-13 19:25 [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag Zbigniew Kempczyński 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section Zbigniew Kempczyński @ 2023-01-13 19:25 ` Zbigniew Kempczyński 2023-01-16 9:30 ` Petri Latvala 2023-01-14 0:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-14 7:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 8+ messages in thread From: Zbigniew Kempczyński @ 2023-01-13 19:25 UTC (permalink / raw) To: igt-dev; +Cc: Petri Latvala Ensure global variables are explicitly defined in one place and requires importing via extern keyword instead of duplicating definition resolved during linking time. Details: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678 Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index bbe1f673e8..7b25627229 100644 --- a/meson.build +++ b/meson.build @@ -70,7 +70,6 @@ cc_args = [ # well with longjmp which is heavily used by IGT framework. '-fno-builtin-malloc', '-fno-builtin-calloc', - '-fcommon', ] foreach cc_arg : cc_args -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag Zbigniew Kempczyński @ 2023-01-16 9:30 ` Petri Latvala 2023-01-16 10:25 ` Zbigniew Kempczyński 0 siblings, 1 reply; 8+ messages in thread From: Petri Latvala @ 2023-01-16 9:30 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Fri, Jan 13, 2023 at 08:25:53PM +0100, Zbigniew Kempczyński wrote: > Ensure global variables are explicitly defined in one place and > requires importing via extern keyword instead of duplicating definition > resolved during linking time. > > Details: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678 > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Petri Latvala <petri.latvala@intel.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> > --- > meson.build | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/meson.build b/meson.build > index bbe1f673e8..7b25627229 100644 > --- a/meson.build > +++ b/meson.build > @@ -70,7 +70,6 @@ cc_args = [ > # well with longjmp which is heavily used by IGT framework. > '-fno-builtin-malloc', > '-fno-builtin-calloc', > - '-fcommon', > ] > > foreach cc_arg : cc_args > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag 2023-01-16 9:30 ` Petri Latvala @ 2023-01-16 10:25 ` Zbigniew Kempczyński 0 siblings, 0 replies; 8+ messages in thread From: Zbigniew Kempczyński @ 2023-01-16 10:25 UTC (permalink / raw) To: Petri Latvala; +Cc: igt-dev On Mon, Jan 16, 2023 at 11:30:50AM +0200, Petri Latvala wrote: > On Fri, Jan 13, 2023 at 08:25:53PM +0100, Zbigniew Kempczyński wrote: > > Ensure global variables are explicitly defined in one place and > > requires importing via extern keyword instead of duplicating definition > > resolved during linking time. > > > > Details: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678 > > > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > Cc: Petri Latvala <petri.latvala@intel.com> > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Reviewed-by: Petri Latvala <petri.latvala@intel.com> Thanks, I've merged the series. Do you need to bump igt version to 1.28? -- Zbigniew > > > --- > > meson.build | 1 - > > 1 file changed, 1 deletion(-) > > > > diff --git a/meson.build b/meson.build > > index bbe1f673e8..7b25627229 100644 > > --- a/meson.build > > +++ b/meson.build > > @@ -70,7 +70,6 @@ cc_args = [ > > # well with longjmp which is heavily used by IGT framework. > > '-fno-builtin-malloc', > > '-fno-builtin-calloc', > > - '-fcommon', > > ] > > > > foreach cc_arg : cc_args > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Remove -fcommon flag 2023-01-13 19:25 [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag Zbigniew Kempczyński 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section Zbigniew Kempczyński 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag Zbigniew Kempczyński @ 2023-01-14 0:17 ` Patchwork 2023-01-14 7:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-14 0:17 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8223 bytes --] == Series Details == Series: Remove -fcommon flag URL : https://patchwork.freedesktop.org/series/112817/ State : success == Summary == CI Bug Log - changes from CI_DRM_12585 -> IGTPW_8338 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/index.html Participating hosts (44 -> 42) ------------------------------ Additional (1): fi-rkl-11600 Missing (3): fi-kbl-soraka fi-bsw-kefka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8338 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [PASS][2] -> [FAIL][3] ([i915#7229]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#7561]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][8] ([i915#4817]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@dp-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#7828]) +7 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#4103]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][11] ([fdo#109285] / [i915#4098]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#1072]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#4098]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([fdo#109295] / [i915#3301] / [i915#3708]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/fi-rkl-11600/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - {bat-rpls-2}: [DMESG-FAIL][16] ([i915#4258]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - {bat-rpls-1}: [INCOMPLETE][18] ([i915#6257]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-rpls-1/igt@i915_selftest@live@requests.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - {bat-adln-1}: [DMESG-FAIL][20] ([i915#6997]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-adln-1/igt@i915_selftest@live@slpc.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/bat-adln-1/igt@i915_selftest@live@slpc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7625]: https://gitlab.freedesktop.org/drm/intel/issues/7625 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7119 -> IGTPW_8338 CI-20190529: 20190529 CI_DRM_12585: 68d139b609a97a83e7c231189d4864aba4e1679b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8338: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/index.html IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@v3d/v3d_submit_cl@bad-bo -igt@v3d/v3d_submit_cl@bad-extension -igt@v3d/v3d_submit_cl@bad-flag -igt@v3d/v3d_submit_cl@bad-in-sync -igt@v3d/v3d_submit_cl@bad-multisync-extension -igt@v3d/v3d_submit_cl@bad-multisync-in-sync -igt@v3d/v3d_submit_cl@bad-multisync-out-sync -igt@v3d/v3d_submit_cl@bad-multisync-pad -igt@v3d/v3d_submit_cl@bad-pad -igt@v3d/v3d_submit_cl@bad-perfmon -igt@v3d/v3d_submit_cl@job-perfmon -igt@v3d/v3d_submit_cl@multiple-job-submission -igt@v3d/v3d_submit_cl@multisync-out-syncs -igt@v3d/v3d_submit_cl@multi-and-single-sync -igt@v3d/v3d_submit_cl@simple-flush-cache -igt@v3d/v3d_submit_cl@single-in-sync -igt@v3d/v3d_submit_cl@single-out-sync -igt@v3d/v3d_submit_cl@valid-multisync-submission -igt@v3d/v3d_submit_cl@valid-submission -igt@v3d/v3d_wait_bo@bad-bo -igt@v3d/v3d_wait_bo@bad-pad -igt@v3d/v3d_wait_bo@map-bo-0ns -igt@v3d/v3d_wait_bo@map-bo-1ns -igt@v3d/v3d_wait_bo@unused-bo-0ns -igt@v3d/v3d_wait_bo@unused-bo-1ns -igt@v3d/v3d_wait_bo@used-bo -igt@v3d/v3d_wait_bo@used-bo-0ns -igt@v3d/v3d_wait_bo@used-bo-1ns == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/index.html [-- Attachment #2: Type: text/html, Size: 9404 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Remove -fcommon flag 2023-01-13 19:25 [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag Zbigniew Kempczyński ` (2 preceding siblings ...) 2023-01-14 0:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-01-14 7:46 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-14 7:46 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 28068 bytes --] == Series Details == Series: Remove -fcommon flag URL : https://patchwork.freedesktop.org/series/112817/ State : success == Summary == CI Bug Log - changes from CI_DRM_12585_full -> IGTPW_8338_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/index.html Participating hosts (12 -> 10) ------------------------------ Additional (1): shard-rkl0 Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8338_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_heartbeat: - {shard-dg1}: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-17/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-dg1-14/igt@i915_selftest@live@gt_heartbeat.html Known issues ------------ Here are the changes found in IGTPW_8338_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-apl: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-snb: [PASS][4] -> [CRASH][5] ([i915#5161]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-snb7/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-apl: [PASS][6] -> [INCOMPLETE][7] ([i915#7708] / [i915#7833]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][8] ([i915#2658]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_softpin@noreloc-s3: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([i915#180]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl2/igt@gem_softpin@noreloc-s3.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl3/igt@gem_softpin@noreloc-s3.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271]) +83 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl1/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_content_protection@lic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][13] ([i915#7173]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl6/igt@kms_content_protection@lic@pipe-a-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html - shard-glk: [PASS][16] -> [FAIL][17] ([i915#2346]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [PASS][18] -> [FAIL][19] ([i915#79]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2437]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl2/igt@kms_writeback@writeback-check-output.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][22] ([i915#4312]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-snb7/igt@runner@aborted.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - {shard-rkl}: [FAIL][23] ([i915#7742]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@drm_read@short-buffer-block: - {shard-rkl}: [SKIP][25] ([i915#4098]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@drm_read@short-buffer-block.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@drm_read@short-buffer-block.html * igt@fbdev@eof: - {shard-rkl}: [SKIP][27] ([i915#2582]) -> [PASS][28] +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@fbdev@eof.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@fbdev@eof.html * igt@fbdev@write: - {shard-dg1}: [FAIL][29] ([i915#7863]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-18/igt@fbdev@write.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-dg1-15/igt@fbdev@write.html - shard-snb: [FAIL][31] ([i915#6724]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-snb4/igt@fbdev@write.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-snb4/igt@fbdev@write.html * igt@gem_caching@read-writes: - shard-apl: [INCOMPLETE][33] ([i915#7708]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_caching@read-writes.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl1/igt@gem_caching@read-writes.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][35] ([i915#6268]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [DMESG-WARN][37] ([i915#180]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][39] ([i915#2842]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-apl: [FAIL][41] ([i915#2842]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_exec_fair@basic-pace-share@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - {shard-rkl}: [SKIP][43] ([i915#3281]) -> [PASS][44] +6 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_mmap_wc@set-cache-level: - {shard-tglu}: [SKIP][45] ([i915#1850]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@gem_mmap_wc@set-cache-level.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-tglu-1/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-apl: [INCOMPLETE][47] ([i915#7708] / [i915#7833]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl7/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-apl: [INCOMPLETE][49] ([i915#7524] / [i915#7708]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite_snooped: - {shard-rkl}: [SKIP][51] ([i915#3282]) -> [PASS][52] +6 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@gem_pwrite_snooped.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-5/igt@gem_pwrite_snooped.html * igt@gen9_exec_parse@bb-chained: - {shard-rkl}: [SKIP][53] ([i915#2527]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@gen9_exec_parse@bb-chained.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@i915_hangman@engine-engine-error@bcs0: - {shard-rkl}: [SKIP][55] ([i915#6258]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-1/igt@i915_hangman@engine-engine-error@bcs0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - {shard-dg1}: [SKIP][57] ([i915#1397]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@system-suspend-devices: - {shard-rkl}: [FAIL][59] ([i915#7052]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@i915_pm_rpm@system-suspend-devices.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-rkl}: [SKIP][61] ([fdo#109308]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@i915_pm_rpm@system-suspend-modeset.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_sseu@full-enable: - {shard-rkl}: [SKIP][63] ([i915#4387]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-6/igt@i915_pm_sseu@full-enable.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@kms_atomic@plane-overlay-legacy: - {shard-rkl}: [SKIP][65] ([i915#1845] / [i915#4098]) -> [PASS][66] +31 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@kms_atomic@plane-overlay-legacy.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_atomic@plane-overlay-legacy.html * igt@kms_big_fb@linear-16bpp-rotate-180: - {shard-tglu}: [SKIP][67] ([i915#7651]) -> [PASS][68] +5 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_big_fb@linear-16bpp-rotate-180.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-tglu-1/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - {shard-tglu}: [SKIP][69] ([i915#1845] / [i915#7651]) -> [PASS][70] +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-tglu-8/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][71] ([i915#3955]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - {shard-rkl}: [SKIP][73] ([i915#1849] / [i915#4098]) -> [PASS][74] +25 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - {shard-tglu}: [SKIP][75] ([i915#1849]) -> [PASS][76] +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-rkl}: [SKIP][77] ([i915#1849]) -> [PASS][78] +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-2/igt@kms_plane@pixel-format@pipe-b-planes.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_psr@primary_mmap_gtt: - {shard-rkl}: [SKIP][79] ([i915#1072]) -> [PASS][80] +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@kms_psr@primary_mmap_gtt.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_psr@primary_mmap_gtt.html * igt@kms_universal_plane@universal-plane-pipe-a-functional: - {shard-rkl}: [SKIP][81] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-functional.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-functional.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][83] ([i915#5234]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][85] ([i915#4349]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@perf_pmu@idle@rcs0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-2/igt@perf_pmu@idle@rcs0.html * igt@prime_vgem@basic-fence-flip: - {shard-rkl}: [SKIP][87] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@prime_vgem@basic-fence-flip.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/shard-rkl-6/igt@prime_vgem@basic-fence-flip.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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#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#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [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#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [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#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#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#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [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#6724]: https://gitlab.freedesktop.org/drm/intel/issues/6724 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7524]: https://gitlab.freedesktop.org/drm/intel/issues/7524 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7833]: https://gitlab.freedesktop.org/drm/intel/issues/7833 [i915#7863]: https://gitlab.freedesktop.org/drm/intel/issues/7863 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7119 -> IGTPW_8338 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12585: 68d139b609a97a83e7c231189d4864aba4e1679b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8338: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8338/index.html IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ 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_8338/index.html [-- Attachment #2: Type: text/html, Size: 23722 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-01-16 10:25 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-13 19:25 [igt-dev] [PATCH i-g-t 0/2] Remove -fcommon flag Zbigniew Kempczyński 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 1/2] lib/igt_crc: Remove crc32 table from common section Zbigniew Kempczyński 2023-01-16 9:29 ` Petri Latvala 2023-01-13 19:25 ` [igt-dev] [PATCH i-g-t 2/2] meson.build: Remove -fcommon flag Zbigniew Kempczyński 2023-01-16 9:30 ` Petri Latvala 2023-01-16 10:25 ` Zbigniew Kempczyński 2023-01-14 0:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-14 7:46 ` [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