* [igt-dev] [PATCH v3 0/1] test/gem_create: limit set_pat only to Meteor Lake
@ 2023-06-06 17:52 Andi Shyti
2023-06-06 17:52 ` [igt-dev] [PATCH v3 1/1] " Andi Shyti
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Andi Shyti @ 2023-06-06 17:52 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 to Meteor Lake only. For older platforms the extension
would return -ENODEV.
Thanks Kamil for the review!
v3: Fix misleading commit log.
Use igt_assert_eq() instead of igt_assert(==).
Check for -EINVAL first and then for MTL.
Do not return after igt_assert_eq.
v2: Limit the test to Meteor Lake.
Fei Yang (1):
test/gem_create: limit set_pat only to Meteor Lake
tests/i915/gem_create.c | 4 ++++
1 file changed, 4 insertions(+)
--
2.40.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH v3 1/1] test/gem_create: limit set_pat only to Meteor Lake 2023-06-06 17:52 [igt-dev] [PATCH v3 0/1] test/gem_create: limit set_pat only to Meteor Lake Andi Shyti @ 2023-06-06 17:52 ` Andi Shyti 2023-06-07 8:57 ` Kamil Konieczny 2023-06-06 18:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-06-07 7:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 7+ messages in thread From: Andi Shyti @ 2023-06-06 17:52 UTC (permalink / raw) To: Kamil Konieczny, Fei Yang; +Cc: IGT dev, Tvrtko Ursulin From: Fei Yang <fei.yang@intel.com> For platforms other than Meteor Lake the set_pat extension should return -ENODEV. Signed-off-by: Fei Yang <fei.yang@intel.com> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> --- tests/i915/gem_create.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c index e9e8216d2b..b7961d9ef2 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; @@ -672,6 +673,9 @@ static void create_ext_set_pat(int fd) */ if (ret == -EINVAL) igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); + else if (!IS_METEORLAKE(devid)) + igt_assert_eq(ret, -ENODEV); + igt_assert(ret == 0); /* -- 2.40.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3 1/1] test/gem_create: limit set_pat only to Meteor Lake 2023-06-06 17:52 ` [igt-dev] [PATCH v3 1/1] " Andi Shyti @ 2023-06-07 8:57 ` Kamil Konieczny 2023-07-12 8:09 ` Tvrtko Ursulin 0 siblings, 1 reply; 7+ messages in thread From: Kamil Konieczny @ 2023-06-07 8:57 UTC (permalink / raw) To: IGT dev; +Cc: Fei Yang, Tvrtko Ursulin On 2023-06-06 at 19:52:26 +0200, Andi Shyti wrote: > From: Fei Yang <fei.yang@intel.com> > > For platforms other than Meteor Lake the set_pat extension should > return -ENODEV. > > Signed-off-by: Fei Yang <fei.yang@intel.com> > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > --- > tests/i915/gem_create.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > index e9e8216d2b..b7961d9ef2 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; > @@ -672,6 +673,9 @@ static void create_ext_set_pat(int fd) > */ > if (ret == -EINVAL) > igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); > + else if (!IS_METEORLAKE(devid)) > + igt_assert_eq(ret, -ENODEV); > + lgtm, Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > igt_assert(ret == 0); > > /* > -- > 2.40.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3 1/1] test/gem_create: limit set_pat only to Meteor Lake 2023-06-07 8:57 ` Kamil Konieczny @ 2023-07-12 8:09 ` Tvrtko Ursulin 2023-07-12 8:18 ` Andi Shyti 0 siblings, 1 reply; 7+ messages in thread From: Tvrtko Ursulin @ 2023-07-12 8:09 UTC (permalink / raw) To: Kamil Konieczny, IGT dev, Andi Shyti, Fei Yang, Tvrtko Ursulin, Joonas Lahtinen On 07/06/2023 09:57, Kamil Konieczny wrote: > On 2023-06-06 at 19:52:26 +0200, Andi Shyti wrote: >> From: Fei Yang <fei.yang@intel.com> >> >> For platforms other than Meteor Lake the set_pat extension should >> return -ENODEV. >> >> Signed-off-by: Fei Yang <fei.yang@intel.com> >> Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> >> --- >> tests/i915/gem_create.c | 4 ++++ >> 1 file changed, 4 insertions(+) >> >> diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c >> index e9e8216d2b..b7961d9ef2 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; >> @@ -672,6 +673,9 @@ static void create_ext_set_pat(int fd) >> */ >> if (ret == -EINVAL) >> igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); >> + else if (!IS_METEORLAKE(devid)) >> + igt_assert_eq(ret, -ENODEV); Hmm a sea of red.. https://intel-gfx-ci.01.org/tree/drm-tip/index.html?testfilter=set-pat https://intel-gfx-ci.01.org/tree/drm-intel-fixes/CI_DIF_773/shard-snb7/igt@gem_create@create-ext-set-pat.html Starting subtest: create-ext-set-pat (gem_create:1095) CRITICAL: Test assertion failure function create_ext_set_pat, file ../../../usr/src/igt-gpu-tools/tests/i915/gem_create.c:679: (gem_create:1095) CRITICAL: Failed assertion: ret == 0 Subtest create-ext-set-pat failed. Not sure why shards run did not flag this (?!), but AFAICT the logic does not work. It should be igt_skip on MTL, otherwise.. >> + > > lgtm, > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > >> igt_assert(ret == 0); .. test just fails here. So something like: igt_skip_on_f(ret == -EINVAL || (ret == -ENODEV && IS_METEORLAKE(devid)), "...") ? Regards, Tvrtko >> >> /* >> -- >> 2.40.1 >> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3 1/1] test/gem_create: limit set_pat only to Meteor Lake 2023-07-12 8:09 ` Tvrtko Ursulin @ 2023-07-12 8:18 ` Andi Shyti 0 siblings, 0 replies; 7+ messages in thread From: Andi Shyti @ 2023-07-12 8:18 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: IGT dev, Tvrtko Ursulin, Fei Yang Hi, On Wed, Jul 12, 2023 at 09:09:55AM +0100, Tvrtko Ursulin wrote: > > On 07/06/2023 09:57, Kamil Konieczny wrote: > > On 2023-06-06 at 19:52:26 +0200, Andi Shyti wrote: > > > From: Fei Yang <fei.yang@intel.com> > > > > > > For platforms other than Meteor Lake the set_pat extension should > > > return -ENODEV. > > > > > > Signed-off-by: Fei Yang <fei.yang@intel.com> > > > Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> > > > --- > > > tests/i915/gem_create.c | 4 ++++ > > > 1 file changed, 4 insertions(+) > > > > > > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > > > index e9e8216d2b..b7961d9ef2 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; > > > @@ -672,6 +673,9 @@ static void create_ext_set_pat(int fd) > > > */ > > > if (ret == -EINVAL) > > > igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); > > > + else if (!IS_METEORLAKE(devid)) > > > + igt_assert_eq(ret, -ENODEV); right, we should have returned from here, if we want to have differentiated printouts... > Hmm a sea of red.. > > https://intel-gfx-ci.01.org/tree/drm-tip/index.html?testfilter=set-pat > > https://intel-gfx-ci.01.org/tree/drm-intel-fixes/CI_DIF_773/shard-snb7/igt@gem_create@create-ext-set-pat.html > > Starting subtest: create-ext-set-pat > (gem_create:1095) CRITICAL: Test assertion failure function create_ext_set_pat, file ../../../usr/src/igt-gpu-tools/tests/i915/gem_create.c:679: > (gem_create:1095) CRITICAL: Failed assertion: ret == 0 > Subtest create-ext-set-pat failed. > > Not sure why shards run did not flag this (?!), but AFAICT the logic does not work. > > It should be igt_skip on MTL, otherwise.. > > > > + > > > > lgtm, > > > > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > > > igt_assert(ret == 0); > > .. test just fails here. So something like: > > igt_skip_on_f(ret == -EINVAL || (ret == -ENODEV && IS_METEORLAKE(devid)), "...") But I guess this is also right! I will fix it. Thanks, Tvrtko! Andi > ? > > Regards, > > Tvrtko > > > > /* > > > -- > > > 2.40.1 > > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: limit set_pat only to Meteor Lake 2023-06-06 17:52 [igt-dev] [PATCH v3 0/1] test/gem_create: limit set_pat only to Meteor Lake Andi Shyti 2023-06-06 17:52 ` [igt-dev] [PATCH v3 1/1] " Andi Shyti @ 2023-06-06 18:38 ` Patchwork 2023-06-07 7:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-06 18:38 UTC (permalink / raw) To: Andi Shyti; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6915 bytes --] == Series Details == Series: test/gem_create: limit set_pat only to Meteor Lake URL : https://patchwork.freedesktop.org/series/118952/ State : success == Summary == CI Bug Log - changes from CI_DRM_13237 -> IGTPW_9118 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9118: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-5: - {bat-adlp-11}: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-adlp-11/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-5.html Known issues ------------ Here are the changes found in IGTPW_9118 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][2] -> [ABORT][3] ([i915#5122]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-WARN][4] ([i915#6367]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][5] -> [FAIL][6] ([fdo#103375]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html - bat-rpls-1: NOTRUN -> [ABORT][7] ([i915#6687] / [i915#7978]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [PASS][8] -> [FAIL][9] ([i915#7932]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html #### Possible fixes #### * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][10] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-rpls-1/igt@i915_selftest@live@reset.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - {bat-adlp-11}: [DMESG-WARN][12] ([i915#6868]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - {bat-adlp-11}: [SKIP][14] ([i915#3546]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-adlp-11/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5}: - {bat-adlp-11}: [ABORT][16] ([i915#4423]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-dp-5.html #### Warnings #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1: - bat-adlp-6: [ABORT][18] -> [ABORT][19] ([i915#8434]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/bat-adlp-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-a-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#4309]: https://gitlab.freedesktop.org/drm/intel/issues/4309 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7320 -> IGTPW_9118 CI-20190529: 20190529 CI_DRM_13237: 4770a078e0a95c8fa5f9490c11321114c3d9cc2c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9118: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/index.html IGT_7320: 1c96b08a4cde6f2d49824a8cc3303bd860617b52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@xe_create@create-engines-leak -igt@xe_create@create-engines-noleak == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/index.html [-- Attachment #2: Type: text/html, Size: 7231 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for test/gem_create: limit set_pat only to Meteor Lake 2023-06-06 17:52 [igt-dev] [PATCH v3 0/1] test/gem_create: limit set_pat only to Meteor Lake Andi Shyti 2023-06-06 17:52 ` [igt-dev] [PATCH v3 1/1] " Andi Shyti 2023-06-06 18:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-06-07 7:46 ` Patchwork 2 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-06-07 7:46 UTC (permalink / raw) To: Andi Shyti; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 15414 bytes --] == Series Details == Series: test/gem_create: limit set_pat only to Meteor Lake URL : https://patchwork.freedesktop.org/series/118952/ State : success == Summary == CI Bug Log - changes from CI_DRM_13237_full -> IGTPW_9118_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9118_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][1] -> [ABORT][2] ([i915#5566]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-glk1/igt@gen9_exec_parse@allowed-single.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2521]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-apl: NOTRUN -> [SKIP][5] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_flip@flip-vs-expired-vblank@a-dp1: - shard-apl: [PASS][6] -> [FAIL][7] ([i915#79]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl6/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl6/igt@kms_flip@flip-vs-expired-vblank@a-dp1.html * igt@kms_flip@flip-vs-suspend@b-dp1: - shard-apl: [PASS][8] -> [ABORT][9] ([i915#180]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl1/igt@kms_flip@flip-vs-suspend@b-dp1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#4579]) +15 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-snb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271]) +30 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - {shard-rkl}: [FAIL][12] ([i915#7742]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-3/igt@drm_fdinfo@idle@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-1/igt@drm_fdinfo@idle@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][14] ([i915#2842]) -> [PASS][15] +3 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][16] ([i915#2842]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - {shard-rkl}: [FAIL][18] ([i915#2842]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-3/igt@gem_exec_fair@basic-pace@bcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-snb: [DMESG-FAIL][20] ([i915#8295]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-snb4/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][22] ([i915#5566]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl3/igt@gen9_exec_parse@allowed-single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload: - shard-snb: [ABORT][24] ([i915#4528]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-snb1/igt@i915_module_load@reload.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-snb7/igt@i915_module_load@reload.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][26] ([i915#3591]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - {shard-rkl}: [SKIP][28] ([i915#1397]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - {shard-dg1}: [SKIP][30] ([i915#1397]) -> [PASS][31] +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-dg1-13/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][32] ([i915#5334]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl4/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - {shard-rkl}: [FAIL][34] ([fdo#103375]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - {shard-rkl}: [FAIL][36] ([i915#3743]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][38] ([i915#2346]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][40] ([i915#2346]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-dg1}: [INCOMPLETE][42] ([i915#8011] / [i915#8347]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-dg1-19/igt@kms_cursor_legacy@single-bo@pipe-b.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-dg1-15/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - {shard-tglu}: [FAIL][44] ([i915#8292]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - {shard-rkl}: [FAIL][46] ([i915#8292]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13237/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [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#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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [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#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#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [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 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7320 -> IGTPW_9118 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13237: 4770a078e0a95c8fa5f9490c11321114c3d9cc2c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9118: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9118/index.html IGT_7320: 1c96b08a4cde6f2d49824a8cc3303bd860617b52 @ 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_9118/index.html [-- Attachment #2: Type: text/html, Size: 13241 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-07-12 8:18 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-06 17:52 [igt-dev] [PATCH v3 0/1] test/gem_create: limit set_pat only to Meteor Lake Andi Shyti 2023-06-06 17:52 ` [igt-dev] [PATCH v3 1/1] " Andi Shyti 2023-06-07 8:57 ` Kamil Konieczny 2023-07-12 8:09 ` Tvrtko Ursulin 2023-07-12 8:18 ` Andi Shyti 2023-06-06 18:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-06-07 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