* [igt-dev] [PATCH v2 0/1] test/gem_create: limit set_pat to GEN12+ platforms
@ 2023-06-06 9:51 Andi Shyti
2023-06-06 9:51 ` [igt-dev] [PATCH v2 1/1] " Andi Shyti
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Andi Shyti @ 2023-06-06 9:51 UTC (permalink / raw)
To: Kamil Konieczny, Fei Yang; +Cc: IGT dev, Tvrtko Ursulin
From: Fei Yang <fei.yang@intel.com>
An agreement was reached to expose gem_create_ext_set_pat extension
for GEN12+ platforms only. For older platforms the extension would
return -ENODEV.
v2: Limit the test to Meteor Lake.
Fei Yang (1):
test/gem_create: limit set_pat to GEN12+ platforms
tests/i915/gem_create.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
--
2.40.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH v2 1/1] test/gem_create: limit set_pat to GEN12+ platforms 2023-06-06 9:51 [igt-dev] [PATCH v2 0/1] test/gem_create: limit set_pat to GEN12+ platforms Andi Shyti @ 2023-06-06 9:51 ` Andi Shyti 2023-06-06 11:59 ` Andi Shyti 2023-06-06 11:53 ` [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: limit set_pat to GEN12+ platforms (rev2) Patchwork 2023-06-07 2:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 8+ messages in thread From: Andi Shyti @ 2023-06-06 9:51 UTC (permalink / raw) To: Kamil Konieczny, Fei Yang; +Cc: IGT dev, Tvrtko Ursulin From: Fei Yang <fei.yang@intel.com> For platforms prior to GEN12 the set_pat extension should return -ENODEV. Signed-off-by: Fei Yang <fei.yang@intel.com> --- tests/i915/gem_create.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c index e9e8216d2b..a3428e5890 100644 --- a/tests/i915/gem_create.c +++ b/tests/i915/gem_create.c @@ -657,6 +657,7 @@ static void create_ext_set_pat(int fd) .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, .pat_index = 65, }; + uint32_t devid = intel_get_drm_devid(fd); struct drm_i915_gem_caching arg; uint64_t size; uint32_t handle; @@ -670,8 +671,13 @@ static void create_ext_set_pat(int fd) * With a valid PAT index specified, returning -EINVAL here * indicates set_pat extension is not supported */ - if (ret == -EINVAL) + if (!IS_METEORLAKE(devid)) { + igt_assert(ret == -ENODEV); + return; + } else if (ret == -EINVAL) { igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); + } + igt_assert(ret == 0); /* -- 2.40.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v2 1/1] test/gem_create: limit set_pat to GEN12+ platforms 2023-06-06 9:51 ` [igt-dev] [PATCH v2 1/1] " Andi Shyti @ 2023-06-06 11:59 ` Andi Shyti 2023-06-06 16:09 ` Kamil Konieczny 0 siblings, 1 reply; 8+ messages in thread From: Andi Shyti @ 2023-06-06 11:59 UTC (permalink / raw) To: Andi Shyti; +Cc: IGT dev, Fei Yang, Tvrtko Ursulin Hi Kamil, On Tue, Jun 06, 2023 at 11:51:23AM +0200, Andi Shyti wrote: > From: Fei Yang <fei.yang@intel.com> > > For platforms prior to GEN12 the set_pat extension should > return -ENODEV. > > Signed-off-by: Fei Yang <fei.yang@intel.com> I forgot: Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> and also the title is wrong. May I kindly ask you to update it to: "test/gem_create: limit set_pat to Meteor Lake platforms" Otherwise, if you prefer, I can resend it. Andi > --- > tests/i915/gem_create.c | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > index e9e8216d2b..a3428e5890 100644 > --- a/tests/i915/gem_create.c > +++ b/tests/i915/gem_create.c > @@ -657,6 +657,7 @@ static void create_ext_set_pat(int fd) > .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > .pat_index = 65, > }; > + uint32_t devid = intel_get_drm_devid(fd); > struct drm_i915_gem_caching arg; > uint64_t size; > uint32_t handle; > @@ -670,8 +671,13 @@ static void create_ext_set_pat(int fd) > * With a valid PAT index specified, returning -EINVAL here > * indicates set_pat extension is not supported > */ > - if (ret == -EINVAL) > + if (!IS_METEORLAKE(devid)) { > + igt_assert(ret == -ENODEV); > + return; > + } else if (ret == -EINVAL) { > igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); > + } > + > igt_assert(ret == 0); > > /* > -- > 2.40.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v2 1/1] test/gem_create: limit set_pat to GEN12+ platforms 2023-06-06 11:59 ` Andi Shyti @ 2023-06-06 16:09 ` Kamil Konieczny 2023-06-06 17:40 ` Andi Shyti 0 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2023-06-06 16:09 UTC (permalink / raw) To: IGT dev; +Cc: Fei Yang, Tvrtko Ursulin Hi Andi, On 2023-06-06 at 13:59:30 +0200, Andi Shyti wrote: > Hi Kamil, > > On Tue, Jun 06, 2023 at 11:51:23AM +0200, Andi Shyti wrote: > > From: Fei Yang <fei.yang@intel.com> > > > > For platforms prior to GEN12 the set_pat extension should ----------------- ^ ------ ^ imho this also should be: s/prior to GEN12/other than MTL/ as you enabled test only for MTL now. > > return -ENODEV. > > > > Signed-off-by: Fei Yang <fei.yang@intel.com> > > I forgot: > > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > > and also the title is wrong. May I kindly ask you to update it > to: > > "test/gem_create: limit set_pat to Meteor Lake platforms" > > Otherwise, if you prefer, I can resend it. > > Andi > > > --- > > tests/i915/gem_create.c | 8 +++++++- > > 1 file changed, 7 insertions(+), 1 deletion(-) > > > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > > index e9e8216d2b..a3428e5890 100644 > > --- a/tests/i915/gem_create.c > > +++ b/tests/i915/gem_create.c > > @@ -657,6 +657,7 @@ static void create_ext_set_pat(int fd) > > .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > > .pat_index = 65, > > }; > > + uint32_t devid = intel_get_drm_devid(fd); > > struct drm_i915_gem_caching arg; > > uint64_t size; > > uint32_t handle; > > @@ -670,8 +671,13 @@ static void create_ext_set_pat(int fd) > > * With a valid PAT index specified, returning -EINVAL here > > * indicates set_pat extension is not supported > > */ > > - if (ret == -EINVAL) > > + if (!IS_METEORLAKE(devid)) { Put here if (ret == -EINVAL) igt_skip("EXT_SET_PAT unsupported\n"); > > + igt_assert(ret == -ENODEV); -------------------------^ ------- ^ On unsupported or older driver this returns -22 (-EINVAL), I tested on Skylake gen9 iGPU. Btw better use: igt_assert_eq(ret, EXPECTED_VALUE); Regards, Kamil > > + return; > > + } else if (ret == -EINVAL) { > > igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); > > + } > > + > > igt_assert(ret == 0); > > > > /* > > -- > > 2.40.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v2 1/1] test/gem_create: limit set_pat to GEN12+ platforms 2023-06-06 16:09 ` Kamil Konieczny @ 2023-06-06 17:40 ` Andi Shyti 2023-06-06 17:44 ` Andi Shyti 0 siblings, 1 reply; 8+ messages in thread From: Andi Shyti @ 2023-06-06 17:40 UTC (permalink / raw) To: Kamil Konieczny, IGT dev, Andi Shyti, Fei Yang, Tvrtko Ursulin, Joonas Lahtinen Hi Kamil, On Tue, Jun 06, 2023 at 06:09:55PM +0200, Kamil Konieczny wrote: > Hi Andi, > > On 2023-06-06 at 13:59:30 +0200, Andi Shyti wrote: > > Hi Kamil, > > > > On Tue, Jun 06, 2023 at 11:51:23AM +0200, Andi Shyti wrote: > > > From: Fei Yang <fei.yang@intel.com> > > > > > > For platforms prior to GEN12 the set_pat extension should > ----------------- ^ ------ ^ > imho this also should be: > s/prior to GEN12/other than MTL/ > > as you enabled test only for MTL now. > > > > return -ENODEV. > > > > > > Signed-off-by: Fei Yang <fei.yang@intel.com> > > > > I forgot: > > > > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > > > > and also the title is wrong. May I kindly ask you to update it > > to: > > > > "test/gem_create: limit set_pat to Meteor Lake platforms" > > > > Otherwise, if you prefer, I can resend it. > > > > Andi > > > > > --- > > > tests/i915/gem_create.c | 8 +++++++- > > > 1 file changed, 7 insertions(+), 1 deletion(-) > > > > > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > > > index e9e8216d2b..a3428e5890 100644 > > > --- a/tests/i915/gem_create.c > > > +++ b/tests/i915/gem_create.c > > > @@ -657,6 +657,7 @@ static void create_ext_set_pat(int fd) > > > .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > > > .pat_index = 65, > > > }; > > > + uint32_t devid = intel_get_drm_devid(fd); > > > struct drm_i915_gem_caching arg; > > > uint64_t size; > > > uint32_t handle; > > > @@ -670,8 +671,13 @@ static void create_ext_set_pat(int fd) > > > * With a valid PAT index specified, returning -EINVAL here > > > * indicates set_pat extension is not supported > > > */ > > > - if (ret == -EINVAL) > > > + if (!IS_METEORLAKE(devid)) { > > Put here > if (ret == -EINVAL) > igt_skip("EXT_SET_PAT unsupported\n"); > > > > + igt_assert(ret == -ENODEV); > -------------------------^ ------- ^ > On unsupported or older driver this returns -22 (-EINVAL), > I tested on Skylake gen9 iGPU. Btw better use: It's not merged yet. Once the patch will be merged then we will have -ENODEV. -EINVAL comes from future old kernels that don't have this api merged. Anyway, makes sense to check for -EINVAL first. Thanks for the review, will send v3 soon. Andi ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH v2 1/1] test/gem_create: limit set_pat to GEN12+ platforms 2023-06-06 17:40 ` Andi Shyti @ 2023-06-06 17:44 ` Andi Shyti 0 siblings, 0 replies; 8+ messages in thread From: Andi Shyti @ 2023-06-06 17:44 UTC (permalink / raw) To: Andi Shyti; +Cc: IGT dev, Fei Yang, Tvrtko Ursulin Hi Kamil, > > > > tests/i915/gem_create.c | 8 +++++++- > > > > 1 file changed, 7 insertions(+), 1 deletion(-) > > > > > > > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > > > > index e9e8216d2b..a3428e5890 100644 > > > > --- a/tests/i915/gem_create.c > > > > +++ b/tests/i915/gem_create.c > > > > @@ -657,6 +657,7 @@ static void create_ext_set_pat(int fd) > > > > .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > > > > .pat_index = 65, > > > > }; > > > > + uint32_t devid = intel_get_drm_devid(fd); > > > > struct drm_i915_gem_caching arg; > > > > uint64_t size; > > > > uint32_t handle; > > > > @@ -670,8 +671,13 @@ static void create_ext_set_pat(int fd) > > > > * With a valid PAT index specified, returning -EINVAL here > > > > * indicates set_pat extension is not supported > > > > */ > > > > - if (ret == -EINVAL) > > > > + if (!IS_METEORLAKE(devid)) { > > > > Put here > > if (ret == -EINVAL) > > igt_skip("EXT_SET_PAT unsupported\n"); > > > > > > + igt_assert(ret == -ENODEV); > > -------------------------^ ------- ^ > > On unsupported or older driver this returns -22 (-EINVAL), > > I tested on Skylake gen9 iGPU. Btw better use: > > It's not merged yet. Once the patch will be merged then we will > have -ENODEV. In the kernel this will be: + /* Limiting the extension only to Meteor Lake */ + if (!IS_METEORLAKE(i915)) + return -ENODEV; But it's not merged yet. Andi > -EINVAL comes from future old kernels that don't have this api > merged. > > Anyway, makes sense to check for -EINVAL first. > > Thanks for the review, will send v3 soon. > > Andi ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: limit set_pat to GEN12+ platforms (rev2) 2023-06-06 9:51 [igt-dev] [PATCH v2 0/1] test/gem_create: limit set_pat to GEN12+ platforms Andi Shyti 2023-06-06 9:51 ` [igt-dev] [PATCH v2 1/1] " Andi Shyti @ 2023-06-06 11:53 ` Patchwork 2023-06-07 2:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-06-06 11:53 UTC (permalink / raw) To: Andi Shyti; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8244 bytes --] == Series Details == Series: test/gem_create: limit set_pat to GEN12+ platforms (rev2) URL : https://patchwork.freedesktop.org/series/118911/ State : success == Summary == CI Bug Log - changes from IGT_7320 -> IGTPW_9114 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): bat-atsm-1 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9114 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#4079]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4077]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#6621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_lrc: - bat-dg2-11: [PASS][5] -> [INCOMPLETE][6] ([i915#7609] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-dg2-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][7] -> [DMESG-WARN][8] ([i915#6367]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-rpls-1/igt@i915_selftest@live@slpc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#6645]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6077]) +36 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#6078]) +19 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6166]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-load-detect: - bat-atsm-1: NOTRUN -> [SKIP][13] ([i915#6093]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-atsm-1: NOTRUN -> [SKIP][14] ([i915#1836]) +6 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#7357]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_psr@sprite_plane_onoff: - bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#1072]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6094]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-atsm-1: NOTRUN -> [SKIP][18] ([fdo#109295] / [i915#6078]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - bat-atsm-1: NOTRUN -> [SKIP][19] ([fdo#109295] / [i915#4077]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][20] ([fdo#109295]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-atsm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@gt_mocs: - {bat-mtlp-8}: [DMESG-FAIL][21] ([i915#7059]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [DMESG-WARN][23] ([i915#6367]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-rpls-2/igt@i915_selftest@live@slpc.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-rpls-2/igt@i915_selftest@live@slpc.html - {bat-mtlp-8}: [DMESG-WARN][25] ([i915#6367]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-mtlp-8/igt@i915_selftest@live@slpc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [FAIL][27] ([i915#7932]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-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). [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [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#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7320 -> IGTPW_9114 CI-20190529: 20190529 CI_DRM_13235: 98a84b63adc57ae6500c03f8076f94e5d5a1743b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9114: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html IGT_7320: 1c96b08a4cde6f2d49824a8cc3303bd860617b52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html [-- Attachment #2: Type: text/html, Size: 9738 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: limit set_pat to GEN12+ platforms (rev2) 2023-06-06 9:51 [igt-dev] [PATCH v2 0/1] test/gem_create: limit set_pat to GEN12+ platforms Andi Shyti 2023-06-06 9:51 ` [igt-dev] [PATCH v2 1/1] " Andi Shyti 2023-06-06 11:53 ` [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: limit set_pat to GEN12+ platforms (rev2) Patchwork @ 2023-06-07 2:14 ` Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-06-07 2:14 UTC (permalink / raw) To: Andi Shyti; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 21651 bytes --] == Series Details == Series: test/gem_create: limit set_pat to GEN12+ platforms (rev2) URL : https://patchwork.freedesktop.org/series/118911/ State : failure == Summary == CI Bug Log - changes from IGT_7320_full -> IGTPW_9114_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9114_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9114_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9114_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-dp-1: - shard-apl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl6/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-dp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl4/igt@kms_plane_alpha_blend@constant-alpha-min@pipe-c-dp-1.html #### Warnings #### * igt@gem_create@create-ext-set-pat: - shard-apl: [SKIP][3] ([fdo#109271]) -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl4/igt@gem_create@create-ext-set-pat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl6/igt@gem_create@create-ext-set-pat.html - shard-glk: [SKIP][5] ([fdo#109271]) -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk4/igt@gem_create@create-ext-set-pat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk4/igt@gem_create@create-ext-set-pat.html - shard-snb: [SKIP][7] ([fdo#109271]) -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-snb2/igt@gem_create@create-ext-set-pat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb2/igt@gem_create@create-ext-set-pat.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_create@create-ext-set-pat: - {shard-rkl}: [SKIP][9] ([i915#8562]) -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-rkl-1/igt@gem_create@create-ext-set-pat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-rkl-1/igt@gem_create@create-ext-set-pat.html - {shard-dg1}: [SKIP][11] ([i915#8562]) -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-12/igt@gem_create@create-ext-set-pat.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-15/igt@gem_create@create-ext-set-pat.html - {shard-tglu}: [SKIP][13] ([i915#8562]) -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-tglu-7/igt@gem_create@create-ext-set-pat.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-tglu-2/igt@gem_create@create-ext-set-pat.html Known issues ------------ Here are the changes found in IGTPW_9114_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][19] -> [ABORT][20] ([i915#5566]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl1/igt@gen9_exec_parse@allowed-all.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][21] -> [ABORT][22] ([i915#5566]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk8/igt@gen9_exec_parse@allowed-single.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][23] -> [ABORT][24] ([i915#4528]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-apl: NOTRUN -> [SKIP][25] ([fdo#109271]) +50 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#3886]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: - shard-snb: NOTRUN -> [SKIP][27] ([fdo#109271]) +29 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb7/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html * igt@kms_content_protection@uevent@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][28] ([i915#1339]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl4/igt@kms_content_protection@uevent@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-snb: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4579]) +12 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4579]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2346]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][33] -> [FAIL][34] ([i915#2346]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][36] -> [FAIL][37] ([i915#2122]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][39] ([i915#5465]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#2437]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl7/igt@kms_writeback@writeback-invalid-parameters.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-apl: [ABORT][41] ([i915#7461] / [i915#8190]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl6/igt@gem_barrier_race@remote-request@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl7/igt@gem_barrier_race@remote-request@rcs0.html - {shard-dg1}: [ABORT][43] ([i915#7461] / [i915#8234]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-15/igt@gem_barrier_race@remote-request@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-18/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_freq@sysfs: - {shard-dg1}: [FAIL][45] ([i915#6786]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-13/igt@gem_ctx_freq@sysfs.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-17/igt@gem_ctx_freq@sysfs.html * igt@gem_eio@hibernate: - {shard-dg1}: [ABORT][47] ([i915#4391] / [i915#7975] / [i915#8213]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-14/igt@gem_eio@hibernate.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-12/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][49] ([i915#5784]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-18/igt@gem_eio@unwedge-stress.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][51] ([i915#2842]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [FAIL][53] ([i915#2842]) -> [PASS][54] +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk9/igt@gem_exec_fair@basic-pace@rcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_module_load@reload: - shard-snb: [ABORT][55] ([i915#4528]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-snb7/igt@i915_module_load@reload.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-snb4/igt@i915_module_load@reload.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][57] ([fdo#109271]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-dg1}: [SKIP][59] ([i915#1937] / [i915#4579]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-17/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - {shard-rkl}: [SKIP][61] ([i915#1397]) -> [PASS][62] +2 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - {shard-dg1}: [SKIP][63] ([i915#1397]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][65] ([i915#5334]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][67] ([i915#2346]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: [FAIL][69] ([i915#2122]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7320/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [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#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#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#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7320 -> IGTPW_9114 CI-20190529: 20190529 CI_DRM_13235: 98a84b63adc57ae6500c03f8076f94e5d5a1743b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9114: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html IGT_7320: 1c96b08a4cde6f2d49824a8cc3303bd860617b52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9114/index.html [-- Attachment #2: Type: text/html, Size: 19666 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-06-07 2:14 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-06 9:51 [igt-dev] [PATCH v2 0/1] test/gem_create: limit set_pat to GEN12+ platforms Andi Shyti 2023-06-06 9:51 ` [igt-dev] [PATCH v2 1/1] " Andi Shyti 2023-06-06 11:59 ` Andi Shyti 2023-06-06 16:09 ` Kamil Konieczny 2023-06-06 17:40 ` Andi Shyti 2023-06-06 17:44 ` Andi Shyti 2023-06-06 11:53 ` [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: limit set_pat to GEN12+ platforms (rev2) Patchwork 2023-06-07 2:14 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox