* [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors
@ 2023-01-12 19:37 Maíra Canal
2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() Maíra Canal
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Maíra Canal @ 2023-01-12 19:37 UTC (permalink / raw)
To: Melissa Wen, André Almeida, Petri Latvala, Kamil Konieczny,
Maxime Ripard
Cc: igt-dev
Currently, v3d and vc4 don't check if the driver supports the performance
monitor feature, which means that the tests are allowed to run even if the
driver doesn't support the tested feature. Therefore, this series adds checks
using the GET_PARAM ioctl from both drivers.
The main difference of this series is the introduction of the patches
"lib/igt_v3d: Rework igt_v3d_get_param()" and "lib/igt_vc4: Rework
igt_vc4_get_param()", which will allow the tests to skip
instead of fail.
Best Regards,
- Maíra Canal
---
v1 -> v2:
- Add "lib/igt_vc4: Rework igt_vc4_get_param()" patch (Melissa Wen).
v2 -> v3:
- s/the return of/the error code of/ (Kamil Konieczny).
- Add igt_vc4_get_param() description (Kamil Konieczny).
v3 -> v4:
- Make sure that the test will skip instead of fail.
- Add "lib/igt_v3d: Rework igt_v3d_get_param()".
v4 -> v5:
- Reintroduce "lib/igt_vc4: Rework igt_vc4_get_param()" (Melissa Wen).
- Add a description to the function igt_v3d_get_param().
---
Maíra Canal (4):
lib/igt_vc4: Rework igt_vc4_get_param()
tests/vc4_perfmon: Make sure vc4 supports perfmon
lib/igt_v3d: Rework igt_v3d_get_param()
tests/v3d_perfmon: Make sure v3d supports perfmon
lib/igt_v3d.c | 15 ++++++++++++++-
lib/igt_vc4.c | 17 +++++++++++++----
lib/igt_vc4.h | 2 +-
tests/v3d/v3d_perfmon.c | 4 +++-
tests/vc4/vc4_perfmon.c | 1 +
tests/vc4/vc4_purgeable_bo.c | 5 +----
6 files changed, 33 insertions(+), 11 deletions(-)
--
2.39.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal @ 2023-01-12 19:37 ` Maíra Canal 2023-01-26 8:59 ` Kamil Konieczny 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/vc4_perfmon: Make sure vc4 supports perfmon Maíra Canal ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Maíra Canal @ 2023-01-12 19:37 UTC (permalink / raw) To: Melissa Wen, André Almeida, Petri Latvala, Kamil Konieczny, Maxime Ripard Cc: igt-dev Instead of returning the error code of the DRM_IOCTL_VC4_GET_PARAM ioctl, make igt_vc4_get_param() return the value of the parameter, considering that the current return is not being used and the value of the parameter is being used. If an invalid parameter is passed to the ioctl, return 0. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_vc4.c | 17 +++++++++++++---- lib/igt_vc4.h | 2 +- tests/vc4/vc4_purgeable_bo.c | 5 +---- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/lib/igt_vc4.c b/lib/igt_vc4.c index 6b6ad16c..3ec8a2c4 100644 --- a/lib/igt_vc4.c +++ b/lib/igt_vc4.c @@ -168,7 +168,17 @@ uint64_t igt_vc4_get_tiling(int fd, uint32_t handle) return get.modifier; } -int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val) +/** + * igt_vc4_get_param: + * @fd: device file descriptor + * @param: vc4 parameter + * + * This wraps the GET_PARAM ioctl. + * + * Returns the current value of the parameter. If the parameter is + * invalid, returns 0. + */ +uint64_t igt_vc4_get_param(int fd, uint32_t param) { struct drm_vc4_get_param arg = { .param = param, @@ -177,10 +187,9 @@ int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val) ret = igt_ioctl(fd, DRM_IOCTL_VC4_GET_PARAM, &arg); if (ret) - return ret; + return 0; - *val = arg.value; - return 0; + return arg.value; } bool igt_vc4_purgeable_bo(int fd, int handle, bool purgeable) diff --git a/lib/igt_vc4.h b/lib/igt_vc4.h index 384d7d6e..4c08f175 100644 --- a/lib/igt_vc4.h +++ b/lib/igt_vc4.h @@ -31,7 +31,7 @@ uint32_t igt_vc4_get_cleared_bo(int fd, size_t size, uint32_t clearval); int igt_vc4_create_bo(int fd, size_t size); void *igt_vc4_mmap_bo(int fd, uint32_t handle, uint32_t size, unsigned prot); -int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val); +uint64_t igt_vc4_get_param(int fd, uint32_t param); bool igt_vc4_purgeable_bo(int fd, int handle, bool purgeable); bool igt_vc4_is_tiled(uint64_t modifier); bool igt_vc4_is_v3d(int fd); diff --git a/tests/vc4/vc4_purgeable_bo.c b/tests/vc4/vc4_purgeable_bo.c index 676bc1f3..27771012 100644 --- a/tests/vc4/vc4_purgeable_bo.c +++ b/tests/vc4/vc4_purgeable_bo.c @@ -102,11 +102,8 @@ igt_main int fd, ret; igt_fixture { - uint64_t val = 0; - fd = drm_open_driver(DRIVER_VC4); - igt_vc4_get_param(fd, DRM_VC4_PARAM_SUPPORTS_MADVISE, &val); - igt_require(val); + igt_require(igt_vc4_get_param(fd, DRM_VC4_PARAM_SUPPORTS_MADVISE)); IGT_INIT_LIST_HEAD(&list); } -- 2.39.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() Maíra Canal @ 2023-01-26 8:59 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2023-01-26 8:59 UTC (permalink / raw) To: igt-dev On 2023-01-12 at 16:37:39 -0300, Maíra Canal wrote: > Instead of returning the error code of the DRM_IOCTL_VC4_GET_PARAM ioctl, > make igt_vc4_get_param() return the value of the parameter, considering > that the current return is not being used and the value of the parameter > is being used. If an invalid parameter is passed to the ioctl, return 0. > > Signed-off-by: Maíra Canal <mcanal@igalia.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_vc4.c | 17 +++++++++++++---- > lib/igt_vc4.h | 2 +- > tests/vc4/vc4_purgeable_bo.c | 5 +---- > 3 files changed, 15 insertions(+), 9 deletions(-) > > diff --git a/lib/igt_vc4.c b/lib/igt_vc4.c > index 6b6ad16c..3ec8a2c4 100644 > --- a/lib/igt_vc4.c > +++ b/lib/igt_vc4.c > @@ -168,7 +168,17 @@ uint64_t igt_vc4_get_tiling(int fd, uint32_t handle) > return get.modifier; > } > > -int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val) > +/** > + * igt_vc4_get_param: > + * @fd: device file descriptor > + * @param: vc4 parameter > + * > + * This wraps the GET_PARAM ioctl. > + * > + * Returns the current value of the parameter. If the parameter is > + * invalid, returns 0. > + */ > +uint64_t igt_vc4_get_param(int fd, uint32_t param) > { > struct drm_vc4_get_param arg = { > .param = param, > @@ -177,10 +187,9 @@ int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val) > > ret = igt_ioctl(fd, DRM_IOCTL_VC4_GET_PARAM, &arg); > if (ret) > - return ret; > + return 0; > > - *val = arg.value; > - return 0; > + return arg.value; > } > > bool igt_vc4_purgeable_bo(int fd, int handle, bool purgeable) > diff --git a/lib/igt_vc4.h b/lib/igt_vc4.h > index 384d7d6e..4c08f175 100644 > --- a/lib/igt_vc4.h > +++ b/lib/igt_vc4.h > @@ -31,7 +31,7 @@ > uint32_t igt_vc4_get_cleared_bo(int fd, size_t size, uint32_t clearval); > int igt_vc4_create_bo(int fd, size_t size); > void *igt_vc4_mmap_bo(int fd, uint32_t handle, uint32_t size, unsigned prot); > -int igt_vc4_get_param(int fd, uint32_t param, uint64_t *val); > +uint64_t igt_vc4_get_param(int fd, uint32_t param); > bool igt_vc4_purgeable_bo(int fd, int handle, bool purgeable); > bool igt_vc4_is_tiled(uint64_t modifier); > bool igt_vc4_is_v3d(int fd); > diff --git a/tests/vc4/vc4_purgeable_bo.c b/tests/vc4/vc4_purgeable_bo.c > index 676bc1f3..27771012 100644 > --- a/tests/vc4/vc4_purgeable_bo.c > +++ b/tests/vc4/vc4_purgeable_bo.c > @@ -102,11 +102,8 @@ igt_main > int fd, ret; > > igt_fixture { > - uint64_t val = 0; > - > fd = drm_open_driver(DRIVER_VC4); > - igt_vc4_get_param(fd, DRM_VC4_PARAM_SUPPORTS_MADVISE, &val); > - igt_require(val); > + igt_require(igt_vc4_get_param(fd, DRM_VC4_PARAM_SUPPORTS_MADVISE)); > IGT_INIT_LIST_HEAD(&list); > } > > -- > 2.39.0 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v5 2/4] tests/vc4_perfmon: Make sure vc4 supports perfmon 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() Maíra Canal @ 2023-01-12 19:37 ` Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() Maíra Canal ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Maíra Canal @ 2023-01-12 19:37 UTC (permalink / raw) To: Melissa Wen, André Almeida, Petri Latvala, Kamil Konieczny, Maxime Ripard Cc: igt-dev Performance Monitors for the vc4 were introduced in Linux 4.17, so a check if vc4 supports Performance Monitors is essential to assure that the tests will perform correctly. Therefore, check if vc4 has perfmon support before running the tests. Reviewed-by: Melissa Wen <mwen@igalia.com> Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/vc4/vc4_perfmon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/vc4/vc4_perfmon.c b/tests/vc4/vc4_perfmon.c index 30186519..664633a3 100644 --- a/tests/vc4/vc4_perfmon.c +++ b/tests/vc4/vc4_perfmon.c @@ -15,6 +15,7 @@ igt_main igt_fixture { fd = drm_open_driver(DRIVER_VC4); igt_require(igt_vc4_is_v3d(fd)); + igt_require(igt_vc4_get_param(fd, DRM_VC4_PARAM_SUPPORTS_PERFMON)); } igt_describe("Make sure a perfmon cannot be created with zero counters."); -- 2.39.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/vc4_perfmon: Make sure vc4 supports perfmon Maíra Canal @ 2023-01-12 19:37 ` Maíra Canal 2023-01-26 9:00 ` Kamil Konieczny 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 4/4] tests/v3d_perfmon: Make sure v3d supports perfmon Maíra Canal ` (2 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Maíra Canal @ 2023-01-12 19:37 UTC (permalink / raw) To: Melissa Wen, André Almeida, Petri Latvala, Kamil Konieczny, Maxime Ripard Cc: igt-dev Instead of assuming that igt_v3d_get_param() will succeed, allow the ioctl to fail and return 0. This way, it will be possible to check if the kernel has the capabilities needed by the test by checking if the return of the igt_v3d_get_param() function is different than zero. Signed-off-by: Maíra Canal <mcanal@igalia.com> --- lib/igt_v3d.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/igt_v3d.c b/lib/igt_v3d.c index 68d11d7f..5d112416 100644 --- a/lib/igt_v3d.c +++ b/lib/igt_v3d.c @@ -86,14 +86,27 @@ igt_v3d_get_bo_offset(int fd, uint32_t handle) return get.offset; } +/** + * igt_v3d_get_param: + * @fd: device file descriptor + * @param: v3d parameter + * + * This wraps the GET_PARAM ioctl. + * + * Returns the current value of the parameter. If the parameter is + * invalid, returns 0. + */ uint32_t igt_v3d_get_param(int fd, enum drm_v3d_param param) { struct drm_v3d_get_param get = { .param = param, }; + int ret; - do_ioctl(fd, DRM_IOCTL_V3D_GET_PARAM, &get); + ret = igt_ioctl(fd, DRM_IOCTL_V3D_GET_PARAM, &get); + if (ret) + return 0; return get.value; } -- 2.39.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() Maíra Canal @ 2023-01-26 9:00 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2023-01-26 9:00 UTC (permalink / raw) To: igt-dev On 2023-01-12 at 16:37:41 -0300, Maíra Canal wrote: > Instead of assuming that igt_v3d_get_param() will succeed, allow the > ioctl to fail and return 0. This way, it will be possible to check if the > kernel has the capabilities needed by the test by checking if the return > of the igt_v3d_get_param() function is different than zero. > > Signed-off-by: Maíra Canal <mcanal@igalia.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_v3d.c | 15 ++++++++++++++- > 1 file changed, 14 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_v3d.c b/lib/igt_v3d.c > index 68d11d7f..5d112416 100644 > --- a/lib/igt_v3d.c > +++ b/lib/igt_v3d.c > @@ -86,14 +86,27 @@ igt_v3d_get_bo_offset(int fd, uint32_t handle) > return get.offset; > } > > +/** > + * igt_v3d_get_param: > + * @fd: device file descriptor > + * @param: v3d parameter > + * > + * This wraps the GET_PARAM ioctl. > + * > + * Returns the current value of the parameter. If the parameter is > + * invalid, returns 0. > + */ > uint32_t > igt_v3d_get_param(int fd, enum drm_v3d_param param) > { > struct drm_v3d_get_param get = { > .param = param, > }; > + int ret; > > - do_ioctl(fd, DRM_IOCTL_V3D_GET_PARAM, &get); > + ret = igt_ioctl(fd, DRM_IOCTL_V3D_GET_PARAM, &get); > + if (ret) > + return 0; > > return get.value; > } > -- > 2.39.0 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t v5 4/4] tests/v3d_perfmon: Make sure v3d supports perfmon 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal ` (2 preceding siblings ...) 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() Maíra Canal @ 2023-01-12 19:37 ` Maíra Canal 2023-01-12 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Make sure v3d/vc4 support performance monitors (rev4) Patchwork 2023-01-13 10:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Maíra Canal @ 2023-01-12 19:37 UTC (permalink / raw) To: Melissa Wen, André Almeida, Petri Latvala, Kamil Konieczny, Maxime Ripard Cc: igt-dev Performance Monitors for the v3d were introduced in Linux 5.15, so a check if v3d supports Performance Monitors is essential to assure that the tests will perform correctly. Therefore, check if v3d has perfmon support before running the tests. Reviewed-by: Melissa Wen <mwen@igalia.com> Signed-off-by: Maíra Canal <mcanal@igalia.com> --- tests/v3d/v3d_perfmon.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/v3d/v3d_perfmon.c b/tests/v3d/v3d_perfmon.c index bf983dbf..3f55ddb1 100644 --- a/tests/v3d/v3d_perfmon.c +++ b/tests/v3d/v3d_perfmon.c @@ -12,8 +12,10 @@ igt_main { int fd; - igt_fixture + igt_fixture { fd = drm_open_driver(DRIVER_V3D); + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_PERFMON)); + } igt_describe("Make sure a perfmon cannot be created with zero counters."); igt_subtest("create-perfmon-0") { -- 2.39.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Make sure v3d/vc4 support performance monitors (rev4) 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal ` (3 preceding siblings ...) 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 4/4] tests/v3d_perfmon: Make sure v3d supports perfmon Maíra Canal @ 2023-01-12 20:39 ` Patchwork 2023-01-13 10:18 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-01-12 20:39 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4253 bytes --] == Series Details == Series: Make sure v3d/vc4 support performance monitors (rev4) URL : https://patchwork.freedesktop.org/series/112370/ State : success == Summary == CI Bug Log - changes from CI_DRM_12578 -> IGTPW_8333 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): fi-bsw-kefka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8333 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [PASS][1] -> [FAIL][2] ([i915#7229]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#7828]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/fi-rkl-11600/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@prime_vgem@basic-fence-flip: - fi-bsw-kefka: NOTRUN -> [SKIP][4] ([fdo#109271]) +26 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/fi-bsw-kefka/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - {bat-rpls-2}: [DMESG-FAIL][5] ([i915#4258]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@requests: - {bat-rpls-2}: [INCOMPLETE][7] ([i915#4983] / [i915#6257]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/bat-rpls-2/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - {bat-adlp-9}: [DMESG-FAIL][9] ([i915#6367]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/bat-adlp-9/igt@i915_selftest@live@slpc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/bat-adlp-9/igt@i915_selftest@live@slpc.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][11] ([i915#4817]) -> [FAIL][12] ([fdo#103375]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.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 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7119 -> IGTPW_8333 CI-20190529: 20190529 CI_DRM_12578: c0ba6b6312e9139ce4b89da2904b329c13b5e94d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8333: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html [-- Attachment #2: Type: text/html, Size: 4889 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Make sure v3d/vc4 support performance monitors (rev4) 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal ` (4 preceding siblings ...) 2023-01-12 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Make sure v3d/vc4 support performance monitors (rev4) Patchwork @ 2023-01-13 10:18 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-01-13 10:18 UTC (permalink / raw) To: Maíra Canal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 23013 bytes --] == Series Details == Series: Make sure v3d/vc4 support performance monitors (rev4) URL : https://patchwork.freedesktop.org/series/112370/ State : success == Summary == CI Bug Log - changes from CI_DRM_12578_full -> IGTPW_8333_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html Participating hosts (13 -> 9) ------------------------------ Missing (4): shard-rkl0 pig-kbl-iris pig-glk-j5005 pig-skl-6260u Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8333_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s3-devices@smem: - {shard-rkl}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-2/igt@gem_exec_suspend@basic-s3-devices@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-3/igt@gem_exec_suspend@basic-s3-devices@smem.html Known issues ------------ Here are the changes found in IGTPW_8333_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_lmem_swapping@smem-oom: - shard-apl: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl2/igt@gem_lmem_swapping@smem-oom.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][6] ([i915#2658]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl6/igt@gem_pwrite@basic-exhaustion.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][7] -> [DMESG-WARN][8] ([i915#5566] / [i915#716]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-glk1/igt@gen9_exec_parse@allowed-single.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][9] -> [DMESG-WARN][10] ([i915#4528]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +5 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_content_protection@lic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][12] ([i915#7173]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl3/igt@kms_content_protection@lic@pipe-a-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-apl: [PASS][13] -> [FAIL][14] ([i915#2346]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2346]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#658]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271]) +125 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl6/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#2437]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl6/igt@kms_writeback@writeback-check-output.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][20] ([i915#4312]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-snb2/igt@runner@aborted.html - shard-glk: NOTRUN -> [FAIL][21] ([i915#4312]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-glk9/igt@runner@aborted.html * igt@sysfs_clients@create: - shard-apl: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#2994]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl1/igt@sysfs_clients@create.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - {shard-rkl}: [FAIL][23] ([i915#7742]) -> [PASS][24] +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@fbdev@write: - {shard-rkl}: [SKIP][25] ([i915#2582]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-5/igt@fbdev@write.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-4/igt@fbdev@write.html * igt@feature_discovery@psr1: - {shard-rkl}: [SKIP][27] ([i915#658]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-3/igt@feature_discovery@psr1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-6/igt@feature_discovery@psr1.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][29] ([i915#6268]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [FAIL][31] ([i915#2842]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][33] ([i915#3281]) -> [PASS][34] +6 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-apl: [INCOMPLETE][35] ([i915#7708] / [i915#7833]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-apl: [INCOMPLETE][37] ([i915#7708]) -> [PASS][38] +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-self: - {shard-rkl}: [SKIP][39] ([i915#3282]) -> [PASS][40] +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@gem_pwrite@basic-self.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gen9_exec_parse@unaligned-access: - {shard-rkl}: [SKIP][41] ([i915#2527]) -> [PASS][42] +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - {shard-rkl}: [SKIP][43] ([i915#4098]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][45] ([i915#1397]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rps@engine-order: - shard-apl: [FAIL][47] ([i915#6537]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-apl6/igt@i915_pm_rps@engine-order.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-apl2/igt@i915_pm_rps@engine-order.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs: - {shard-rkl}: [SKIP][49] ([i915#1845] / [i915#4098]) -> [PASS][50] +7 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1: - shard-glk: [FAIL][51] ([i915#79]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - {shard-rkl}: [SKIP][53] ([i915#1849] / [i915#4098]) -> [PASS][54] +6 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_hdmi_inject@inject-audio: - {shard-rkl}: [SKIP][55] ([i915#433]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@cursor_render: - {shard-rkl}: [SKIP][57] ([i915#1072]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-3/igt@kms_psr@cursor_render.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-6/igt@kms_psr@cursor_render.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][59] ([i915#5234]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-dg1-19/igt@perf_pmu@all-busy-idle-check-all.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html * igt@prime_vgem@basic-fence-read: - {shard-rkl}: [SKIP][61] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][62] +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12578/shard-rkl-4/igt@prime_vgem@basic-fence-read.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/shard-rkl-5/igt@prime_vgem@basic-fence-read.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [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#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [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#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7833]: https://gitlab.freedesktop.org/drm/intel/issues/7833 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7119 -> IGTPW_8333 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12578: c0ba6b6312e9139ce4b89da2904b329c13b5e94d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8333: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8333/index.html [-- Attachment #2: Type: text/html, Size: 17979 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-01-26 9:00 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-12 19:37 [igt-dev] [PATCH i-g-t v5 0/4] Make sure v3d/vc4 support performance monitors Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 1/4] lib/igt_vc4: Rework igt_vc4_get_param() Maíra Canal 2023-01-26 8:59 ` Kamil Konieczny 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/vc4_perfmon: Make sure vc4 supports perfmon Maíra Canal 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 3/4] lib/igt_v3d: Rework igt_v3d_get_param() Maíra Canal 2023-01-26 9:00 ` Kamil Konieczny 2023-01-12 19:37 ` [igt-dev] [PATCH i-g-t v5 4/4] tests/v3d_perfmon: Make sure v3d supports perfmon Maíra Canal 2023-01-12 20:39 ` [igt-dev] ✓ Fi.CI.BAT: success for Make sure v3d/vc4 support performance monitors (rev4) Patchwork 2023-01-13 10:18 ` [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