* [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs
@ 2019-05-16 13:20 Arkadiusz Hiler
2019-05-16 13:27 ` Lionel Landwerlin
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2019-05-16 13:20 UTC (permalink / raw)
To: igt-dev
drm_i915_perf_oa_config defines uuid as char[36], which does not leave
space for the terminating NULL. Newer GCC and the fortification options
leave us with the following complaint:
warning: ‘__builtin_strncpy’ output truncated before terminating nul copying 36 bytes from a string of the same length [-Wstringop-truncation]
Let's switch to memcpy() which does not care about the terminating NULL.
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
tests/perf.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/perf.c b/tests/perf.c
index f2c0aeb8..5ad8b2db 100644
--- a/tests/perf.c
+++ b/tests/perf.c
@@ -3670,7 +3670,7 @@ test_invalid_create_userspace_config(void)
igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
/* invalid mux_regs */
- strncpy(config.uuid, uuid, sizeof(config.uuid));
+ memcpy(config.uuid, uuid, sizeof(config.uuid));
config.n_mux_regs = 1;
config.mux_regs_ptr = to_user_pointer(invalid_mux_regs);
config.n_boolean_regs = 0;
@@ -3679,7 +3679,7 @@ test_invalid_create_userspace_config(void)
igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
/* empty config */
- strncpy(config.uuid, uuid, sizeof(config.uuid));
+ memcpy(config.uuid, uuid, sizeof(config.uuid));
config.n_mux_regs = 0;
config.mux_regs_ptr = to_user_pointer(mux_regs);
config.n_boolean_regs = 0;
@@ -3688,7 +3688,7 @@ test_invalid_create_userspace_config(void)
igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
/* empty config with null pointers */
- strncpy(config.uuid, uuid, sizeof(config.uuid));
+ memcpy(config.uuid, uuid, sizeof(config.uuid));
config.n_mux_regs = 1;
config.mux_regs_ptr = to_user_pointer(NULL);
config.n_boolean_regs = 2;
@@ -3699,7 +3699,7 @@ test_invalid_create_userspace_config(void)
igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
/* invalid pointers */
- strncpy(config.uuid, uuid, sizeof(config.uuid));
+ memcpy(config.uuid, uuid, sizeof(config.uuid));
config.n_mux_regs = 42;
config.mux_regs_ptr = to_user_pointer((void *) 0xDEADBEEF);
config.n_boolean_regs = 0;
@@ -3786,7 +3786,7 @@ test_create_destroy_userspace_config(void)
i915_perf_remove_config(drm_fd, config_id);
memset(&config, 0, sizeof(config));
- strncpy(config.uuid, uuid, sizeof(config.uuid));
+ memcpy(config.uuid, uuid, sizeof(config.uuid));
config.n_mux_regs = 1;
config.mux_regs_ptr = to_user_pointer(mux_regs);
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs
2019-05-16 13:20 [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs Arkadiusz Hiler
@ 2019-05-16 13:27 ` Lionel Landwerlin
2019-05-16 14:17 ` Ser, Simon
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Lionel Landwerlin @ 2019-05-16 13:27 UTC (permalink / raw)
To: Arkadiusz Hiler, igt-dev
Sure :
Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
On 16/05/2019 14:20, Arkadiusz Hiler wrote:
> drm_i915_perf_oa_config defines uuid as char[36], which does not leave
> space for the terminating NULL. Newer GCC and the fortification options
> leave us with the following complaint:
>
> warning: ‘__builtin_strncpy’ output truncated before terminating nul copying 36 bytes from a string of the same length [-Wstringop-truncation]
>
> Let's switch to memcpy() which does not care about the terminating NULL.
>
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> ---
> tests/perf.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tests/perf.c b/tests/perf.c
> index f2c0aeb8..5ad8b2db 100644
> --- a/tests/perf.c
> +++ b/tests/perf.c
> @@ -3670,7 +3670,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* invalid mux_regs */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(invalid_mux_regs);
> config.n_boolean_regs = 0;
> @@ -3679,7 +3679,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* empty config */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 0;
> config.mux_regs_ptr = to_user_pointer(mux_regs);
> config.n_boolean_regs = 0;
> @@ -3688,7 +3688,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* empty config with null pointers */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(NULL);
> config.n_boolean_regs = 2;
> @@ -3699,7 +3699,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* invalid pointers */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 42;
> config.mux_regs_ptr = to_user_pointer((void *) 0xDEADBEEF);
> config.n_boolean_regs = 0;
> @@ -3786,7 +3786,7 @@ test_create_destroy_userspace_config(void)
> i915_perf_remove_config(drm_fd, config_id);
>
> memset(&config, 0, sizeof(config));
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
>
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(mux_regs);
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs
2019-05-16 13:20 [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs Arkadiusz Hiler
2019-05-16 13:27 ` Lionel Landwerlin
@ 2019-05-16 14:17 ` Ser, Simon
2019-05-16 14:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-16 17:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Ser, Simon @ 2019-05-16 14:17 UTC (permalink / raw)
To: Hiler, Arkadiusz, igt-dev@lists.freedesktop.org
On Thu, 2019-05-16 at 16:20 +0300, Arkadiusz Hiler wrote:
> drm_i915_perf_oa_config defines uuid as char[36], which does not leave
> space for the terminating NULL. Newer GCC and the fortification options
> leave us with the following complaint:
>
> warning: ‘__builtin_strncpy’ output truncated before terminating nul copying 36 bytes from a string of the same length [-Wstringop-truncation]
>
> Let's switch to memcpy() which does not care about the terminating NULL.
>
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Simon Ser <simon.ser@intel.com>
> ---
> tests/perf.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tests/perf.c b/tests/perf.c
> index f2c0aeb8..5ad8b2db 100644
> --- a/tests/perf.c
> +++ b/tests/perf.c
> @@ -3670,7 +3670,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* invalid mux_regs */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(invalid_mux_regs);
> config.n_boolean_regs = 0;
> @@ -3679,7 +3679,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* empty config */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 0;
> config.mux_regs_ptr = to_user_pointer(mux_regs);
> config.n_boolean_regs = 0;
> @@ -3688,7 +3688,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* empty config with null pointers */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(NULL);
> config.n_boolean_regs = 2;
> @@ -3699,7 +3699,7 @@ test_invalid_create_userspace_config(void)
> igt_assert_eq(__i915_perf_add_config(drm_fd, &config), -EINVAL);
>
> /* invalid pointers */
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
> config.n_mux_regs = 42;
> config.mux_regs_ptr = to_user_pointer((void *) 0xDEADBEEF);
> config.n_boolean_regs = 0;
> @@ -3786,7 +3786,7 @@ test_create_destroy_userspace_config(void)
> i915_perf_remove_config(drm_fd, config_id);
>
> memset(&config, 0, sizeof(config));
> - strncpy(config.uuid, uuid, sizeof(config.uuid));
> + memcpy(config.uuid, uuid, sizeof(config.uuid));
>
> config.n_mux_regs = 1;
> config.mux_regs_ptr = to_user_pointer(mux_regs);
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Use memcpy for UUIDs for oa_configs
2019-05-16 13:20 [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs Arkadiusz Hiler
2019-05-16 13:27 ` Lionel Landwerlin
2019-05-16 14:17 ` Ser, Simon
@ 2019-05-16 14:28 ` Patchwork
2019-05-16 17:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-16 14:28 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: tests/perf: Use memcpy for UUIDs for oa_configs
URL : https://patchwork.freedesktop.org/series/60717/
State : success
== Summary ==
CI Bug Log - changes from IGT_4994 -> IGTPW_2990
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/60717/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_2990:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_ctx_create@basic-files:
- {fi-cml-u2}: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-cml-u2/igt@gem_ctx_create@basic-files.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-cml-u2/igt@gem_ctx_create@basic-files.html
Known issues
------------
Here are the changes found in IGTPW_2990 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_hangcheck:
- fi-skl-iommu: [PASS][3] -> [INCOMPLETE][4] ([fdo#108602] / [fdo#108744])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html
#### Possible fixes ####
* igt@gem_basic@bad-close:
- {fi-icl-u3}: [INCOMPLETE][5] ([fdo#107713]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-icl-u3/igt@gem_basic@bad-close.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-icl-u3/igt@gem_basic@bad-close.html
* igt@gem_cpu_reloc@basic:
- fi-icl-u2: [INCOMPLETE][7] ([fdo#107713] / [fdo#110246]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-icl-u2/igt@gem_cpu_reloc@basic.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-icl-u2/igt@gem_cpu_reloc@basic.html
* igt@gem_exec_suspend@basic-s4-devices:
- fi-blb-e6850: [INCOMPLETE][9] ([fdo#107718]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html
#### Warnings ####
* igt@i915_selftest@live_hangcheck:
- fi-apl-guc: [DMESG-FAIL][11] ([fdo#110620]) -> [FAIL][12] ([fdo#110623])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/fi-apl-guc/igt@i915_selftest@live_hangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/fi-apl-guc/igt@i915_selftest@live_hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
[fdo#108744]: https://bugs.freedesktop.org/show_bug.cgi?id=108744
[fdo#110246]: https://bugs.freedesktop.org/show_bug.cgi?id=110246
[fdo#110620]: https://bugs.freedesktop.org/show_bug.cgi?id=110620
[fdo#110623]: https://bugs.freedesktop.org/show_bug.cgi?id=110623
Participating hosts (52 -> 44)
------------------------------
Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_4994 -> IGTPW_2990
CI_DRM_6090: df27ebbc9ec0d8ae42e8cf3d7a3b29fd6baf4940 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2990: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/
IGT_4994: 555019f862c35f1619627761d6da21385be40920 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/perf: Use memcpy for UUIDs for oa_configs
2019-05-16 13:20 [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs Arkadiusz Hiler
` (2 preceding siblings ...)
2019-05-16 14:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-05-16 17:45 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-16 17:45 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: tests/perf: Use memcpy for UUIDs for oa_configs
URL : https://patchwork.freedesktop.org/series/60717/
State : success
== Summary ==
CI Bug Log - changes from IGT_4994_full -> IGTPW_2990_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/60717/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_2990_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_softpin@noreloc-s3:
- shard-kbl: [PASS][1] -> [DMESG-WARN][2] ([fdo#108566])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-kbl6/igt@gem_softpin@noreloc-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-kbl7/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-glk: [PASS][3] -> [DMESG-WARN][4] ([fdo#108686])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-glk5/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-glk2/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_suspend@sysfs-reader:
- shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +4 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-apl2/igt@i915_suspend@sysfs-reader.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-apl6/igt@i915_suspend@sysfs-reader.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109349])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_flip@flip-vs-suspend:
- shard-hsw: [PASS][9] -> [INCOMPLETE][10] ([fdo#103540]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-hsw8/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-glk: [PASS][11] -> [FAIL][12] ([fdo#103167])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-iclb: [PASS][13] -> [FAIL][14] ([fdo#103167]) +4 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#109247])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103166])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html
#### Possible fixes ####
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-glk: [FAIL][21] ([fdo#100368]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-glk8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-glk9/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-iclb: [FAIL][23] ([fdo#103167]) -> [PASS][24] +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
- shard-apl: [DMESG-WARN][25] ([fdo#108566]) -> [PASS][26] +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-apl5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-iclb: [SKIP][27] ([fdo#109441]) -> [PASS][28] +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_setmode@basic:
- shard-kbl: [FAIL][29] ([fdo#99912]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-kbl4/igt@kms_setmode@basic.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-kbl3/igt@kms_setmode@basic.html
* igt@kms_sysfs_edid_timing:
- shard-iclb: [FAIL][31] ([fdo#100047]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb3/igt@kms_sysfs_edid_timing.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb7/igt@kms_sysfs_edid_timing.html
* igt@perf_pmu@rc6-runtime-pm-long:
- shard-apl: [FAIL][33] ([fdo#105010]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-apl5/igt@perf_pmu@rc6-runtime-pm-long.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-apl5/igt@perf_pmu@rc6-runtime-pm-long.html
- shard-kbl: [FAIL][35] ([fdo#105010]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-kbl6/igt@perf_pmu@rc6-runtime-pm-long.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-kbl7/igt@perf_pmu@rc6-runtime-pm-long.html
#### Warnings ####
* igt@gem_mmap_gtt@forked-big-copy:
- shard-iclb: [INCOMPLETE][37] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][38] ([fdo#109673])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb6/igt@gem_mmap_gtt@forked-big-copy.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy.html
* igt@gem_mmap_gtt@forked-big-copy-odd:
- shard-iclb: [TIMEOUT][39] ([fdo#109673]) -> [INCOMPLETE][40] ([fdo#107713] / [fdo#109100])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4994/shard-iclb5/igt@gem_mmap_gtt@forked-big-copy-odd.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/shard-iclb8/igt@gem_mmap_gtt@forked-big-copy-odd.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
[fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
[fdo#109247]: https://bugs.freedesktop.org/show_bug.cgi?id=109247
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (7 -> 6)
------------------------------
Missing (1): shard-skl
Build changes
-------------
* IGT: IGT_4994 -> IGTPW_2990
CI_DRM_6090: df27ebbc9ec0d8ae42e8cf3d7a3b29fd6baf4940 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2990: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/
IGT_4994: 555019f862c35f1619627761d6da21385be40920 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2990/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-05-16 17:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-16 13:20 [igt-dev] [PATCH i-g-t] tests/perf: Use memcpy for UUIDs for oa_configs Arkadiusz Hiler
2019-05-16 13:27 ` Lionel Landwerlin
2019-05-16 14:17 ` Ser, Simon
2019-05-16 14:28 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-16 17:45 ` [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