* [igt-dev] [PATCH i-g-t 0/1] lib: Avoid macro redifinition in gen7/gen8_media.h
@ 2023-06-09 9:36 Christoph Manszewski
2023-06-09 9:36 ` [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h Christoph Manszewski
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Christoph Manszewski @ 2023-06-09 9:36 UTC (permalink / raw)
To: igt-dev
Currently PIPELINE_SELECT_3D macros are redifined. This can lead to
compiler warnings when including headers containing those redifinitions.
Upstream a simple patch that fixes that.
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Christoph Manszewski (1):
lib: Let gen7 inherit gen4_render.h
lib/gen7_media.h | 2 +-
lib/gen8_media.h | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
--
2.40.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h 2023-06-09 9:36 [igt-dev] [PATCH i-g-t 0/1] lib: Avoid macro redifinition in gen7/gen8_media.h Christoph Manszewski @ 2023-06-09 9:36 ` Christoph Manszewski 2023-06-09 17:45 ` Kamil Konieczny 2023-06-09 17:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib: Avoid macro redifinition in gen7/gen8_media.h Patchwork 2023-06-10 21:03 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Christoph Manszewski @ 2023-06-09 9:36 UTC (permalink / raw) To: igt-dev Instead of redefining pipe selects, use them from gen4_render.h Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Signed-off-by: Christoph Manszewski <christoph.manszewski@intel.com> --- lib/gen7_media.h | 2 +- lib/gen8_media.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/gen7_media.h b/lib/gen7_media.h index b5e49cae..93dc7312 100644 --- a/lib/gen7_media.h +++ b/lib/gen7_media.h @@ -3,6 +3,7 @@ #include <stdint.h> #include "surfaceformat.h" +#include "gen4_render.h" #define GEN7_FLOATING_POINT_IEEE_754 0 #define GEN7_FLOATING_POINT_NON_IEEE_754 1 @@ -13,7 +14,6 @@ ((Subopcode) << 16)) #define GEN7_PIPELINE_SELECT GFXPIPE(1, 1, 4) -# define PIPELINE_SELECT_3D (0 << 0) # define PIPELINE_SELECT_GPGPU (2 << 0) #define GEN7_STATE_BASE_ADDRESS GFXPIPE(0, 1, 1) diff --git a/lib/gen8_media.h b/lib/gen8_media.h index b5c19e50..01aaa9be 100644 --- a/lib/gen8_media.h +++ b/lib/gen8_media.h @@ -13,7 +13,6 @@ ((Subopcode) << 16)) #define GEN8_PIPELINE_SELECT GFXPIPE(1, 1, 4) -# define PIPELINE_SELECT_3D (0 << 0) #define GEN8_STATE_BASE_ADDRESS GFXPIPE(0, 1, 1) -- 2.40.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h 2023-06-09 9:36 ` [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h Christoph Manszewski @ 2023-06-09 17:45 ` Kamil Konieczny 0 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2023-06-09 17:45 UTC (permalink / raw) To: igt-dev Hi Christoph, please add gen8 in subject: lib: Let gen7/gen8 inherit gen4_render.h On 2023-06-09 at 11:36:41 +0200, Christoph Manszewski wrote: > Instead of redefining pipe selects, use them from gen4_render.h imho it would be helpfull to add some explanation here, maybe copy a sentence from cover letter. > > Signed-off-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> > Signed-off-by: Christoph Manszewski <christoph.manszewski@intel.com> > --- > lib/gen7_media.h | 2 +- > lib/gen8_media.h | 1 - > 2 files changed, 1 insertion(+), 2 deletions(-) > > diff --git a/lib/gen7_media.h b/lib/gen7_media.h > index b5e49cae..93dc7312 100644 > --- a/lib/gen7_media.h > +++ b/lib/gen7_media.h > @@ -3,6 +3,7 @@ > > #include <stdint.h> > #include "surfaceformat.h" > +#include "gen4_render.h" > > #define GEN7_FLOATING_POINT_IEEE_754 0 > #define GEN7_FLOATING_POINT_NON_IEEE_754 1 > @@ -13,7 +14,6 @@ > ((Subopcode) << 16)) > > #define GEN7_PIPELINE_SELECT GFXPIPE(1, 1, 4) > -# define PIPELINE_SELECT_3D (0 << 0) > # define PIPELINE_SELECT_GPGPU (2 << 0) > > #define GEN7_STATE_BASE_ADDRESS GFXPIPE(0, 1, 1) > diff --git a/lib/gen8_media.h b/lib/gen8_media.h > index b5c19e50..01aaa9be 100644 > --- a/lib/gen8_media.h > +++ b/lib/gen8_media.h > @@ -13,7 +13,6 @@ imho you should also add: #include "gen4_render.h" into this header. Regards, Kamil > ((Subopcode) << 16)) > > #define GEN8_PIPELINE_SELECT GFXPIPE(1, 1, 4) > -# define PIPELINE_SELECT_3D (0 << 0) > > #define GEN8_STATE_BASE_ADDRESS GFXPIPE(0, 1, 1) > > -- > 2.40.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib: Avoid macro redifinition in gen7/gen8_media.h 2023-06-09 9:36 [igt-dev] [PATCH i-g-t 0/1] lib: Avoid macro redifinition in gen7/gen8_media.h Christoph Manszewski 2023-06-09 9:36 ` [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h Christoph Manszewski @ 2023-06-09 17:29 ` Patchwork 2023-06-10 21:03 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-09 17:29 UTC (permalink / raw) To: Christoph Manszewski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5233 bytes --] == Series Details == Series: lib: Avoid macro redifinition in gen7/gen8_media.h URL : https://patchwork.freedesktop.org/series/119125/ State : success == Summary == CI Bug Log - changes from CI_DRM_13256 -> IGTPW_9138 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/index.html Participating hosts (36 -> 36) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9138: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_parallel@engines@userptr: - {bat-mtlp-6}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html Known issues ------------ Here are the changes found in IGTPW_9138 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7911] / [i915#7920]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-rpls-1/igt@i915_selftest@live@requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][5] -> [ABORT][6] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-rpls-2/igt@i915_selftest@live@reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [PASS][7] -> [FAIL][8] ([i915#7932]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html #### Possible fixes #### * igt@i915_selftest@live@gem_contexts: - {bat-mtlp-8}: [ABORT][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@gt_mocs: - {bat-mtlp-6}: [DMESG-FAIL][11] ([i915#7059]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@kms_busy@basic@modeset: - {bat-adlp-11}: [ABORT][13] ([i915#4423]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/bat-adlp-11/igt@kms_busy@basic@modeset.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/bat-adlp-11/igt@kms_busy@basic@modeset.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - fi-cfl-8109u: [ABORT][15] -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/fi-cfl-8109u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/fi-cfl-8109u/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7322 -> IGTPW_9138 CI-20190529: 20190529 CI_DRM_13256: be85dc2d44c075230eec4366e27bc1fe75ee59ff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9138: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/index.html IGT_7322: 2dd77d6d827a308caae49ce3eba759c2bab394ed @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/index.html [-- Attachment #2: Type: text/html, Size: 5822 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib: Avoid macro redifinition in gen7/gen8_media.h 2023-06-09 9:36 [igt-dev] [PATCH i-g-t 0/1] lib: Avoid macro redifinition in gen7/gen8_media.h Christoph Manszewski 2023-06-09 9:36 ` [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h Christoph Manszewski 2023-06-09 17:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib: Avoid macro redifinition in gen7/gen8_media.h Patchwork @ 2023-06-10 21:03 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-10 21:03 UTC (permalink / raw) To: Christoph Manszewski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16906 bytes --] == Series Details == Series: lib: Avoid macro redifinition in gen7/gen8_media.h URL : https://patchwork.freedesktop.org/series/119125/ State : success == Summary == CI Bug Log - changes from CI_DRM_13256_full -> IGTPW_9138_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9138_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1099]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb4/igt@gem_ctx_persistence@processes.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][2] -> [FAIL][3] ([i915#2842]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][4] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-snb: [PASS][5] -> [ABORT][6] ([i915#5161]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-x.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb2/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#6227]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk9/igt@i915_module_load@load.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk9/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][9] -> [FAIL][10] ([i915#2346]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271]) +82 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4579]) +19 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4579]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk1/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-c-hdmi-a-1.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271]) +37 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk8/igt@kms_vblank@pipe-d-wait-busy-hang.html #### Possible fixes #### * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][15] ([i915#2842]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][17] ([i915#2842]) -> [PASS][18] +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - {shard-tglu}: [FAIL][19] ([i915#2842]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-tglu-8/igt@gem_exec_fair@basic-throttle@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-tglu-6/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][21] ([i915#5566]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-glk5/igt@gen9_exec_parse@allowed-single.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rpm@dpms-lpsp: - {shard-rkl}: [SKIP][23] ([i915#1397]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][25] ([i915#7790]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-snb6/igt@i915_pm_rps@reset.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_suspend@basic-s2idle-without-i915: - {shard-tglu}: [ABORT][27] ([i915#8213]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-tglu-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-vga-1: - shard-snb: [FAIL][29] ([i915#2521]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-snb7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-vga-1.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-snb6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-vga-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - shard-glk: [FAIL][31] ([i915#2521]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][33] ([i915#2346]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][35] ([i915#2346]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][37] ([i915#8011]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-rkl-7/igt@kms_cursor_legacy@forked-bo@pipe-b.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-rkl-4/igt@kms_cursor_legacy@forked-bo@pipe-b.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-dg1}: [INCOMPLETE][39] ([i915#8011] / [i915#8347]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-dg1-19/igt@kms_cursor_legacy@single-bo@pipe-b.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-dg1-17/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@perf_pmu@busy-double-start@vecs0: - {shard-dg1}: [FAIL][41] ([i915#4349]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-dg1-13/igt@perf_pmu@busy-double-start@vecs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - {shard-dg1}: [FAIL][43] ([i915#4521]) -> [PASS][44] +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - {shard-dg1}: [FAIL][45] ([i915#5234]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13256/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all@rcs0.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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [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#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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7322 -> IGTPW_9138 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13256: be85dc2d44c075230eec4366e27bc1fe75ee59ff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9138: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9138/index.html IGT_7322: 2dd77d6d827a308caae49ce3eba759c2bab394ed @ 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_9138/index.html [-- Attachment #2: Type: text/html, Size: 13964 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-06-10 21:03 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-09 9:36 [igt-dev] [PATCH i-g-t 0/1] lib: Avoid macro redifinition in gen7/gen8_media.h Christoph Manszewski 2023-06-09 9:36 ` [igt-dev] [PATCH i-g-t 1/1] lib: Let gen7 inherit gen4_render.h Christoph Manszewski 2023-06-09 17:45 ` Kamil Konieczny 2023-06-09 17:29 ` [igt-dev] ✓ Fi.CI.BAT: success for lib: Avoid macro redifinition in gen7/gen8_media.h Patchwork 2023-06-10 21:03 ` [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