* [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD
@ 2021-10-06 16:51 Alan Previn
2021-10-06 17:11 ` Ruhl, Michael J
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Alan Previn @ 2021-10-06 16:51 UTC (permalink / raw)
To: igt-dev; +Cc: Alan Previn, dri-devel, Ruhl, Michael J, Rodrigo Vivi
Replace private helper with call to ioctl_wrapper for
DRM_IOCTL_PRIME_HANDLE_TO_FD.
Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com>
---
tests/i915/gem_pxp.c | 20 +-------------------
1 file changed, 1 insertion(+), 19 deletions(-)
diff --git a/tests/i915/gem_pxp.c b/tests/i915/gem_pxp.c
index 79040165..0430f4b8 100644
--- a/tests/i915/gem_pxp.c
+++ b/tests/i915/gem_pxp.c
@@ -622,23 +622,6 @@ static void test_render_pxp_protsrc_to_protdest(int i915)
buf_ops_destroy(bops);
}
-static int export_handle(int fd, uint32_t handle, int *outfd)
-{
- struct drm_prime_handle args;
- int ret;
-
- args.handle = handle;
- args.flags = DRM_CLOEXEC;
- args.fd = -1;
-
- ret = drmIoctl(fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args);
- if (ret)
- ret = errno;
- *outfd = args.fd;
-
- return ret;
-}
-
static void test_pxp_dmabuffshare_refcnt(void)
{
uint32_t ctx[2], sbo[2], dbo[2];
@@ -659,8 +642,7 @@ static void test_pxp_dmabuffshare_refcnt(void)
dbo[0] = alloc_and_fill_dest_buff(fd[0], true, TSTSURF_SIZE,
TSTSURF_INITCOLOR1);
} else {
- ret = export_handle(fd[0], dbo[0], &dmabuf_fd);
- igt_assert(ret == 0);
+ dmabuf_fd = prime_handle_to_fd(fd[0], dbo[0]);
dbo[1] = prime_fd_to_handle(fd[1], dmabuf_fd);
igt_assert(dbo[1]);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD 2021-10-06 16:51 [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD Alan Previn @ 2021-10-06 17:11 ` Ruhl, Michael J 2021-10-06 21:56 ` Rodrigo Vivi 2021-10-06 17:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/1] " Patchwork 2021-10-06 21:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Ruhl, Michael J @ 2021-10-06 17:11 UTC (permalink / raw) To: Teres Alexis, Alan Previn, igt-dev@lists.freedesktop.org Cc: dri-devel@lists.freedesktop.org, Vivi, Rodrigo >-----Original Message----- >From: Teres Alexis, Alan Previn <alan.previn.teres.alexis@intel.com> >Sent: Wednesday, October 6, 2021 12:52 PM >To: igt-dev@lists.freedesktop.org >Cc: Teres Alexis, Alan Previn <alan.previn.teres.alexis@intel.com>; dri- >devel@lists.freedesktop.org; Ruhl; Ruhl, Michael J ><michael.j.ruhl@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com> >Subject: [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for >DRM_IOCTL_PRIME_HANDLE_TO_FD > >Replace private helper with call to ioctl_wrapper for >DRM_IOCTL_PRIME_HANDLE_TO_FD. Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com> M >Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com> >--- > tests/i915/gem_pxp.c | 20 +------------------- > 1 file changed, 1 insertion(+), 19 deletions(-) > >diff --git a/tests/i915/gem_pxp.c b/tests/i915/gem_pxp.c >index 79040165..0430f4b8 100644 >--- a/tests/i915/gem_pxp.c >+++ b/tests/i915/gem_pxp.c >@@ -622,23 +622,6 @@ static void test_render_pxp_protsrc_to_protdest(int >i915) > buf_ops_destroy(bops); > } > >-static int export_handle(int fd, uint32_t handle, int *outfd) >-{ >- struct drm_prime_handle args; >- int ret; >- >- args.handle = handle; >- args.flags = DRM_CLOEXEC; >- args.fd = -1; >- >- ret = drmIoctl(fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args); >- if (ret) >- ret = errno; >- *outfd = args.fd; >- >- return ret; >-} >- > static void test_pxp_dmabuffshare_refcnt(void) > { > uint32_t ctx[2], sbo[2], dbo[2]; >@@ -659,8 +642,7 @@ static void test_pxp_dmabuffshare_refcnt(void) > dbo[0] = alloc_and_fill_dest_buff(fd[0], true, >TSTSURF_SIZE, > >TSTSURF_INITCOLOR1); > } else { >- ret = export_handle(fd[0], dbo[0], &dmabuf_fd); >- igt_assert(ret == 0); >+ dmabuf_fd = prime_handle_to_fd(fd[0], dbo[0]); > dbo[1] = prime_fd_to_handle(fd[1], dmabuf_fd); > igt_assert(dbo[1]); > } >-- >2.25.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD 2021-10-06 17:11 ` Ruhl, Michael J @ 2021-10-06 21:56 ` Rodrigo Vivi 0 siblings, 0 replies; 5+ messages in thread From: Rodrigo Vivi @ 2021-10-06 21:56 UTC (permalink / raw) To: Ruhl, Michael J Cc: Teres Alexis, Alan Previn, igt-dev@lists.freedesktop.org, dri-devel@lists.freedesktop.org On Wed, Oct 06, 2021 at 05:11:02PM +0000, Ruhl, Michael J wrote: > >-----Original Message----- > >From: Teres Alexis, Alan Previn <alan.previn.teres.alexis@intel.com> > >Sent: Wednesday, October 6, 2021 12:52 PM > >To: igt-dev@lists.freedesktop.org > >Cc: Teres Alexis, Alan Previn <alan.previn.teres.alexis@intel.com>; dri- > >devel@lists.freedesktop.org; Ruhl; Ruhl, Michael J > ><michael.j.ruhl@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com> > >Subject: [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for > >DRM_IOCTL_PRIME_HANDLE_TO_FD > > > >Replace private helper with call to ioctl_wrapper for > >DRM_IOCTL_PRIME_HANDLE_TO_FD. > > Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com> pushed, thanks > > M > > >Signed-off-by: Alan Previn <alan.previn.teres.alexis@intel.com> > >--- > > tests/i915/gem_pxp.c | 20 +------------------- > > 1 file changed, 1 insertion(+), 19 deletions(-) > > > >diff --git a/tests/i915/gem_pxp.c b/tests/i915/gem_pxp.c > >index 79040165..0430f4b8 100644 > >--- a/tests/i915/gem_pxp.c > >+++ b/tests/i915/gem_pxp.c > >@@ -622,23 +622,6 @@ static void test_render_pxp_protsrc_to_protdest(int > >i915) > > buf_ops_destroy(bops); > > } > > > >-static int export_handle(int fd, uint32_t handle, int *outfd) > >-{ > >- struct drm_prime_handle args; > >- int ret; > >- > >- args.handle = handle; > >- args.flags = DRM_CLOEXEC; > >- args.fd = -1; > >- > >- ret = drmIoctl(fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args); > >- if (ret) > >- ret = errno; > >- *outfd = args.fd; > >- > >- return ret; > >-} > >- > > static void test_pxp_dmabuffshare_refcnt(void) > > { > > uint32_t ctx[2], sbo[2], dbo[2]; > >@@ -659,8 +642,7 @@ static void test_pxp_dmabuffshare_refcnt(void) > > dbo[0] = alloc_and_fill_dest_buff(fd[0], true, > >TSTSURF_SIZE, > > > >TSTSURF_INITCOLOR1); > > } else { > >- ret = export_handle(fd[0], dbo[0], &dmabuf_fd); > >- igt_assert(ret == 0); > >+ dmabuf_fd = prime_handle_to_fd(fd[0], dbo[0]); > > dbo[1] = prime_fd_to_handle(fd[1], dmabuf_fd); > > igt_assert(dbo[1]); > > } > >-- > >2.25.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD 2021-10-06 16:51 [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD Alan Previn 2021-10-06 17:11 ` Ruhl, Michael J @ 2021-10-06 17:47 ` Patchwork 2021-10-06 21:03 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-10-06 17:47 UTC (permalink / raw) To: Teres Alexis, Alan Previn; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4148 bytes --] == Series Details == Series: series starting with [i-g-t,1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD URL : https://patchwork.freedesktop.org/series/95528/ State : success == Summary == CI Bug Log - changes from CI_DRM_10689 -> IGTPW_6295 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_6295 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6295, 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_6295/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6295: ### IGT changes ### #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][1] ([i915#95]) -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html Known issues ------------ Here are the changes found in IGTPW_6295 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@semaphore: - fi-bsw-nick: NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html * igt@gem_exec_suspend@basic-s3: - fi-tgl-u2: [PASS][4] -> [FAIL][5] ([i915#1888]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-tgl-u2/igt@gem_exec_suspend@basic-s3.html * igt@runner@aborted: - fi-bdw-5557u: NOTRUN -> [FAIL][6] ([i915#1602] / [i915#2029]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-bdw-5557u/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [INCOMPLETE][7] ([i915#2940]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/fi-bsw-nick/igt@i915_selftest@live@execlists.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [FAIL][9] ([i915#1372]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.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 [i915#1372]: https://gitlab.freedesktop.org/drm/intel/issues/1372 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1993]: https://gitlab.freedesktop.org/drm/intel/issues/1993 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (44 -> 37) ------------------------------ Missing (7): fi-ilk-m540 bat-dg1-6 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 bat-jsl-1 fi-kbl-r Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6233 -> IGTPW_6295 CI-20190529: 20190529 CI_DRM_10689: 6e9dcd4e975288c683c9299de5abb64c5e96215f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6295: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/index.html IGT_6233: a2e7a4583f0f68218c53cfe7b0ea8cc34b49cae9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/index.html [-- Attachment #2: Type: text/html, Size: 4837 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD 2021-10-06 16:51 [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD Alan Previn 2021-10-06 17:11 ` Ruhl, Michael J 2021-10-06 17:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/1] " Patchwork @ 2021-10-06 21:03 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-10-06 21:03 UTC (permalink / raw) To: Teres Alexis, Alan Previn; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30317 bytes --] == Series Details == Series: series starting with [i-g-t,1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD URL : https://patchwork.freedesktop.org/series/95528/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10689_full -> IGTPW_6295_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6295_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6295_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_6295/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6295_full: ### IGT changes ### #### Possible regressions #### * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-tglb: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_workarounds@suspend-resume-context: - shard-snb: [PASS][3] -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-snb5/igt@gem_workarounds@suspend-resume-context.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb5/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-iclb4/igt@i915_pm_dc@dc9-dpms.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb2/igt@i915_pm_dc@dc9-dpms.html * igt@kms_cursor_crc@pipe-a-cursor-suspend: - shard-snb: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html Known issues ------------ Here are the changes found in IGTPW_6295_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@psr2: - shard-iclb: NOTRUN -> [SKIP][9] ([i915#658]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@feature_discovery@psr2.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-tglb: [PASS][10] -> [INCOMPLETE][11] ([i915#1373]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-tglb1/igt@gem_ctx_isolation@preservation-s3@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +4 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb2/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_eio@unwedge-stress: - shard-iclb: [PASS][13] -> [TIMEOUT][14] ([i915#2369] / [i915#2481] / [i915#3070]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-iclb6/igt@gem_eio@unwedge-stress.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb1/igt@gem_eio@unwedge-stress.html - shard-snb: NOTRUN -> [FAIL][15] ([i915#3354]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#2846]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk9/igt@gem_exec_fair@basic-deadline.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][18] -> [FAIL][19] ([i915#2842]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][20] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-none@vecs0: - shard-kbl: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-kbl6/igt@gem_exec_fair@basic-none@vecs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk3/igt@gem_exec_fair@basic-pace@vecs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk9/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-iclb3/igt@gem_exec_fair@basic-throttle@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-blt: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109283]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb2/igt@gem_exec_params@no-blt.html * igt@gem_exec_suspend@basic-s3: - shard-apl: [PASS][29] -> [DMESG-WARN][30] ([i915#180]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-apl1/igt@gem_exec_suspend@basic-s3.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl8/igt@gem_exec_suspend@basic-s3.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][31] ([i915#2658]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl8/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#4270]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@gem_pxp@create-regular-context-1.html * igt@gem_userptr_blits@input-checking: - shard-snb: NOTRUN -> [DMESG-WARN][33] ([i915#3002]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb5/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#3297]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][35] ([i915#2724]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb2/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-context: - shard-kbl: NOTRUN -> [DMESG-WARN][36] ([i915#180]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl1/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@chained-batch: - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109289]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb1/igt@gen7_exec_parse@chained-batch.html - shard-tglb: NOTRUN -> [SKIP][38] ([fdo#109289]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@batch-without-end: - shard-iclb: NOTRUN -> [SKIP][39] ([i915#2856]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb6/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#2856]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb8/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#1902]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb6/igt@i915_pm_lpsp@screens-disabled.html - shard-iclb: NOTRUN -> [SKIP][42] ([i915#1902]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb8/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111644] / [i915#1397] / [i915#2411]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_sseu@full-enable: - shard-tglb: NOTRUN -> [SKIP][44] ([fdo#109288]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> [SKIP][45] ([fdo#109302]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb8/igt@i915_query@query-topology-unsupported.html - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#109302]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb6/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: NOTRUN -> [DMESG-WARN][47] ([i915#180]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl2/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [PASS][48] -> [DMESG-WARN][49] ([i915#118]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk4/igt@kms_big_fb@linear-32bpp-rotate-180.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk2/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#110725] / [fdo#111614]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb2/igt@kms_big_fb@linear-64bpp-rotate-270.html - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#111614]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3777]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3777]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-kbl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3777]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#110723]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111615]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][57] ([i915#3689] / [i915#3886]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +3 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][60] ([i915#3689]) +8 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#3886]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +9 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271]) +429 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb2/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_ccs.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-glk: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +5 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk5/igt@kms_chamelium@common-hpd-after-suspend.html - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +16 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl1/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-mode-timings: - shard-snb: NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +17 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb7/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_color@pipe-d-ctm-0-75: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109278] / [i915#1149]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb4/igt@kms_color@pipe-d-ctm-0-75.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-kbl: NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) +8 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl6/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html - shard-iclb: NOTRUN -> [SKIP][69] ([fdo#109284] / [fdo#111827]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb1/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-0-75: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109284] / [fdo#111827]) +6 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@kms_color_chamelium@pipe-b-ctm-0-75.html * igt@kms_color_chamelium@pipe-d-gamma: - shard-iclb: NOTRUN -> [SKIP][71] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb1/igt@kms_color_chamelium@pipe-d-gamma.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding: - shard-kbl: NOTRUN -> [SKIP][72] ([fdo#109271]) +111 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109278] / [fdo#109279]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-offscreen.html * igt@kms_cursor_crc@pipe-a-cursor-size-change: - shard-snb: [PASS][74] -> [FAIL][75] ([i915#4024]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-size-change.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen: - shard-tglb: NOTRUN -> [SKIP][76] ([i915#3319]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: - shard-apl: NOTRUN -> [FAIL][77] ([i915#3444]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html - shard-glk: [PASS][78] -> [FAIL][79] ([i915#3444]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk1/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html - shard-kbl: [PASS][80] -> [FAIL][81] ([i915#3444]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#3359]) +7 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding: - shard-tglb: NOTRUN -> [SKIP][83] ([fdo#109279] / [i915#3359]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding: - shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109278]) +10 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb3/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109274] / [fdo#109278]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#111825]) +18 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@pipe-d-single-bo: - shard-kbl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#533]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl7/igt@kms_cursor_legacy@pipe-d-single-bo.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#533]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl2/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dsc@basic-dsc-enable: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#3840]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb8/igt@kms_dsc@basic-dsc-enable.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109274]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-kbl: [PASS][91] -> [FAIL][92] ([i915#79]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-kbl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][93] -> [DMESG-WARN][94] ([i915#180]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-kbl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109280]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][96] ([i915#265]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl3/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb: - shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271]) +52 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk1/igt@kms_plane_alpha_blend@pipe-d-alpha-opaque-fb.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#658]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html - shard-tglb: NOTRUN -> [SKIP][99] ([i915#2920]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3: - shard-apl: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#658]) +6 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: - shard-glk: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk7/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109441]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb3/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [PASS][103] -> [SKIP][104] ([fdo#109441]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb8/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_psr@psr2_sprite_blt: - shard-tglb: NOTRUN -> [FAIL][105] ([i915#132] / [i915#3467]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb8/igt@kms_psr@psr2_sprite_blt.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][106] ([i915#31]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-snb7/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-tglb: [PASS][107] -> [INCOMPLETE][108] ([i915#456]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][109] ([i915#2530]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html * igt@nouveau_crc@pipe-d-ctx-flip-detection: - shard-tglb: NOTRUN -> [SKIP][110] ([i915#2530]) +5 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb8/igt@nouveau_crc@pipe-d-ctx-flip-detection.html * igt@nouveau_crc@pipe-d-source-outp-complete: - shard-iclb: NOTRUN -> [SKIP][111] ([fdo#109278] / [i915#2530]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@nouveau_crc@pipe-d-source-outp-complete.html * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: - shard-apl: NOTRUN -> [SKIP][112] ([fdo#109271]) +197 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl8/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html * igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109291]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb5/igt@prime_nv_api@nv_i915_reimport_twice_check_flink_name.html * igt@prime_nv_pcopy@test3_1: - shard-tglb: NOTRUN -> [SKIP][114] ([fdo#109291]) +3 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@prime_nv_pcopy@test3_1.html * igt@sysfs_clients@create: - shard-apl: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#2994]) +4 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl7/igt@sysfs_clients@create.html * igt@sysfs_clients@sema-10: - shard-tglb: NOTRUN -> [SKIP][116] ([i915#2994]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@sysfs_clients@sema-10.html - shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2994]) +2 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-kbl6/igt@sysfs_clients@sema-10.html - shard-glk: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk9/igt@sysfs_clients@sema-10.html - shard-iclb: NOTRUN -> [SKIP][119] ([i915#2994]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb1/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][120] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-tglb6/igt@gem_eio@unwedge-stress.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][122] ([i915#2842]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-iclb6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][124] ([i915#2842]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][126] ([i915#2842]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [DMESG-WARN][128] ([i915#118] / [i915#95]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk6/igt@gem_exec_whisper@basic-contexts-forked-all.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk7/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-glk: [FAIL][130] ([i915#1888]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - shard-apl: [SKIP][132] ([fdo#109271]) -> [PASS][133] +9 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-apl8/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl3/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-apl: [DMESG-WARN][134] ([i915#203] / [i915#62]) -> [PASS][135] +2 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10689/shard-apl8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/shard-apl2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_flip@flip-vs-suspend@a-edp1: - shard-tglb: [INCOMPLETE][136] ([i915#2411] / [i915#456]) -> [PASS][ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6295/index.html [-- Attachment #2: Type: text/html, Size: 33843 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-10-06 21:56 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-06 16:51 [igt-dev] [PATCH i-g-t 1/1] tests/i915_pxp: Use ioctl_wrapper for DRM_IOCTL_PRIME_HANDLE_TO_FD Alan Previn 2021-10-06 17:11 ` Ruhl, Michael J 2021-10-06 21:56 ` Rodrigo Vivi 2021-10-06 17:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/1] " Patchwork 2021-10-06 21:03 ` [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