* [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference
@ 2019-02-14 13:57 Juha-Pekka Heikkila via igt-dev
2019-02-14 13:57 ` [igt-dev] [PATCH i-g-t 2/2] HACK tests/kms_rotation_crc: use igt_pipe_crc_get_current_with_reference() Juha-Pekka Heikkila via igt-dev
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Juha-Pekka Heikkila via igt-dev @ 2019-02-14 13:57 UTC (permalink / raw)
To: igt-dev
igt_pipe_crc_get_current_with_reference will get current crc
and compare it to reference crc. 'current' is returned out
from function but if current didn't match to reference
five following crc's are checked if they'd match and printed
as info.
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
lib/igt_debugfs.c | 28 ++++++++++++++++++++++++++++
lib/igt_debugfs.h | 1 +
2 files changed, 29 insertions(+)
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 6cfaa97..1245274 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -1002,6 +1002,34 @@ void igt_pipe_crc_collect_crc(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc)
igt_pipe_crc_stop(pipe_crc);
}
+/**
+ * igt_pipe_crc_get_current_with_reference:
+ * @drm_fd: Pointer to drm fd for vblank counter
+ * @pipe_crc: pipe CRC object
+ * @crc: buffer pointer for the captured CRC value
+ *
+ * Same as igt_pipe_crc_get_current(), but if current crc doesn't
+ * match to reference see if within 5 next crc there will come match.
+ */
+void
+igt_pipe_crc_get_current_with_reference(int drm_fd, igt_pipe_crc_t *pipe_crc,
+ igt_crc_t *crc, igt_crc_t *reference)
+{
+ igt_crc_t following_crc;
+ int i;
+
+ igt_pipe_crc_get_current(drm_fd, pipe_crc, crc);
+ if (reference != NULL && !igt_check_crc_equal(crc, reference)) {
+ for (i = 0; i < 5; i++) {
+ igt_pipe_crc_get_single(pipe_crc, &following_crc);
+ if (igt_check_crc_equal(crc, reference)) {
+ igt_info("current crc didn't match to reference but %d frame after crc did match!", i+1);
+ break;
+ }
+ }
+ }
+}
+
/*
* Drop caches
*/
diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h
index 1233cd8..b293f51 100644
--- a/lib/igt_debugfs.h
+++ b/lib/igt_debugfs.h
@@ -137,6 +137,7 @@ void igt_pipe_crc_get_single(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc);
void igt_pipe_crc_get_current(int drm_fd, igt_pipe_crc_t *pipe_crc, igt_crc_t *crc);
void igt_pipe_crc_collect_crc(igt_pipe_crc_t *pipe_crc, igt_crc_t *out_crc);
+void igt_pipe_crc_get_current_with_reference(int drm_fd, igt_pipe_crc_t *pipe_crc, igt_crc_t *crc, igt_crc_t *reference);
void igt_hpd_storm_set_threshold(int fd, unsigned int threshold);
void igt_hpd_storm_reset(int fd);
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 2/2] HACK tests/kms_rotation_crc: use igt_pipe_crc_get_current_with_reference() 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev @ 2019-02-14 13:57 ` Juha-Pekka Heikkila via igt-dev 2019-02-14 14:19 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Juha-Pekka Heikkila via igt-dev @ 2019-02-14 13:57 UTC (permalink / raw) To: igt-dev use igt_pipe_crc_get_current_with_reference() to see if failed crcs happen only at first frames or if they're static. --- tests/kms_rotation_crc.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index fc995d0..69507ec 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -336,7 +336,7 @@ static void test_single_case(data_t *data, enum pipe pipe, igt_assert_eq(ret, 0); /* Check CRC */ - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); + igt_pipe_crc_get_current_with_reference(display->drm_fd, data->pipe_crc, &crc_output, &data->ref_crc); igt_assert_crc_equal(&data->ref_crc, &crc_output); /* @@ -359,7 +359,7 @@ static void test_single_case(data_t *data, enum pipe pipe, igt_assert_eq(ret, 0); } kmstest_wait_for_pageflip(data->gfx_fd); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); + igt_pipe_crc_get_current_with_reference(display->drm_fd, data->pipe_crc, &crc_output, &data->flip_crc); igt_assert_crc_equal(&data->flip_crc, &crc_output); } @@ -428,7 +428,7 @@ typedef struct { static bool get_multiplane_crc(data_t *data, igt_output_t *output, igt_crc_t *crc_output, planeinfos *planeinfo, - int numplanes) + int numplanes, igt_crc_t *refcrc) { uint32_t w, h; igt_display_t *display = &data->display; @@ -473,7 +473,8 @@ static bool get_multiplane_crc(data_t *data, igt_output_t *output, ret = igt_display_try_commit2(display, COMMIT_ATOMIC); igt_assert_eq(ret, 0); - igt_pipe_crc_get_current(data->gfx_fd, data->pipe_crc, crc_output); + igt_pipe_crc_get_current_with_reference(data->gfx_fd, data->pipe_crc, + crc_output, refcrc); for (c = 0; c < numplanes && oldplanes; c++) igt_remove_fb(data->gfx_fd, &oldplanes[c].fb); @@ -606,13 +607,13 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe) p[1].rotation_sw = planeconfigs[j].rotation; p[1].rotation_hw = IGT_ROTATION_0; if (!get_multiplane_crc(data, output, &retcrc_sw, - (planeinfos *)&p, MAXMULTIPLANESAMOUNT)) + (planeinfos *)&p, MAXMULTIPLANESAMOUNT, NULL)) continue; igt_swap(p[0].rotation_sw, p[0].rotation_hw); igt_swap(p[1].rotation_sw, p[1].rotation_hw); if (!get_multiplane_crc(data, output, &retcrc_hw, - (planeinfos *)&p, MAXMULTIPLANESAMOUNT)) + (planeinfos *)&p, MAXMULTIPLANESAMOUNT, &retcrc_sw)) continue; igt_assert_crc_equal(&retcrc_sw, &retcrc_hw); -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev 2019-02-14 13:57 ` [igt-dev] [PATCH i-g-t 2/2] HACK tests/kms_rotation_crc: use igt_pipe_crc_get_current_with_reference() Juha-Pekka Heikkila via igt-dev @ 2019-02-14 14:19 ` Patchwork 2019-02-14 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-02-14 14:19 UTC (permalink / raw) To: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference URL : https://patchwork.freedesktop.org/series/56682/ State : success == Summary == CI Bug Log - changes from CI_DRM_5600 -> IGTPW_2405 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56682/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_2405 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-compute: - fi-kbl-8809g: NOTRUN -> FAIL [fdo#108094] #### Possible fixes #### * igt@amdgpu/amd_basic@userptr: - fi-kbl-8809g: DMESG-WARN [fdo#108965] -> PASS * igt@gem_exec_suspend@basic-s4-devices: - fi-blb-e6850: INCOMPLETE [fdo#107718] -> PASS * igt@i915_selftest@live_workarounds: - {fi-icl-u2}: INCOMPLETE [fdo#109626] -> PASS * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: - fi-kbl-7567u: {SKIP} [fdo#109271] -> PASS +27 * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS +1 #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: DMESG-FAIL [fdo#105079] -> DMESG-WARN [fdo#103558] / [fdo#105079] / [fdo#105602] * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-kbl-7567u: {SKIP} [fdo#109271] -> DMESG-WARN [fdo#103558] / [fdo#105079] / [fdo#105602] * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - fi-kbl-7567u: {SKIP} [fdo#109271] -> DMESG-FAIL [fdo#105079] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [fdo#105079]: https://bugs.freedesktop.org/show_bug.cgi?id=105079 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#108094]: https://bugs.freedesktop.org/show_bug.cgi?id=108094 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108965]: https://bugs.freedesktop.org/show_bug.cgi?id=108965 [fdo#109226]: https://bugs.freedesktop.org/show_bug.cgi?id=109226 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109626]: https://bugs.freedesktop.org/show_bug.cgi?id=109626 Participating hosts (47 -> 45) ------------------------------ Additional (2): fi-byt-j1900 fi-ivb-3520m Missing (4): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-bdw-samus Build changes ------------- * IGT: IGT_4826 -> IGTPW_2405 CI_DRM_5600: 9cf76484ee73dd20bd7b0f086a880f69846c6906 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2405/ IGT_4826: eea5cf40199c0d08ac654481b830d8a3d4408502 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2405/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev 2019-02-14 13:57 ` [igt-dev] [PATCH i-g-t 2/2] HACK tests/kms_rotation_crc: use igt_pipe_crc_get_current_with_reference() Juha-Pekka Heikkila via igt-dev 2019-02-14 14:19 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Patchwork @ 2019-02-14 19:08 ` Patchwork 2019-02-14 22:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) Patchwork 2019-02-15 7:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-02-14 19:08 UTC (permalink / raw) To: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference URL : https://patchwork.freedesktop.org/series/56682/ State : success == Summary == CI Bug Log - changes from CI_DRM_5600_full -> IGTPW_2405_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56682/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_2405_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_big: - shard-hsw: PASS -> TIMEOUT [fdo#107937] * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a: - shard-apl: NOTRUN -> DMESG-WARN [fdo#107956] * igt@kms_ccs@pipe-a-crc-sprite-planes-basic: - shard-glk: PASS -> FAIL [fdo#108145] +1 * igt@kms_color@pipe-a-legacy-gamma: - shard-apl: PASS -> FAIL [fdo#104782] / [fdo#108145] * igt@kms_color@pipe-c-ctm-max: - shard-glk: NOTRUN -> FAIL [fdo#108147] * igt@kms_color@pipe-c-legacy-gamma: - shard-glk: PASS -> FAIL [fdo#104782] * igt@kms_cursor_crc@cursor-128x128-random: - shard-apl: PASS -> FAIL [fdo#103232] +6 * igt@kms_cursor_crc@cursor-256x85-sliding: - shard-kbl: PASS -> FAIL [fdo#103232] +2 * igt@kms_cursor_crc@cursor-alpha-opaque: - shard-glk: PASS -> FAIL [fdo#109350] * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-apl: PASS -> FAIL [fdo#103060] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-apl: PASS -> FAIL [fdo#103167] * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-glk: PASS -> FAIL [fdo#103167] +12 * igt@kms_plane@pixel-format-pipe-c-planes: - shard-apl: PASS -> FAIL [fdo#103166] +1 * igt@kms_plane@plane-position-covered-pipe-a-planes: - shard-glk: PASS -> FAIL [fdo#103166] +2 * igt@kms_plane_multiple@atomic-pipe-b-tiling-y: - shard-kbl: PASS -> FAIL [fdo#103166] +2 * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: PASS -> DMESG-FAIL [fdo#105763] * igt@perf_pmu@rc6-runtime-pm-long: - shard-apl: NOTRUN -> FAIL [fdo#105010] - shard-glk: PASS -> FAIL [fdo#105010] - shard-kbl: PASS -> FAIL [fdo#105010] * igt@testdisplay: - shard-kbl: PASS -> DMESG-WARN [fdo#103313] / [fdo#103558] / [fdo#105345] / [fdo#105602] #### Possible fixes #### * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-a: - shard-hsw: DMESG-WARN [fdo#107956] -> PASS * igt@kms_color@pipe-a-gamma: - shard-kbl: FAIL [fdo#104782] -> PASS - shard-glk: FAIL [fdo#104782] -> PASS * igt@kms_color@pipe-b-degamma: - shard-apl: FAIL [fdo#104782] -> PASS +2 * igt@kms_cursor_crc@cursor-128x128-suspend: - shard-apl: FAIL [fdo#103191] / [fdo#103232] -> PASS +2 * igt@kms_cursor_crc@cursor-64x21-onscreen: - shard-kbl: FAIL [fdo#103232] -> PASS +2 * igt@kms_cursor_crc@cursor-64x21-random: - shard-apl: FAIL [fdo#103232] -> PASS +6 * igt@kms_cursor_crc@cursor-64x64-suspend: - shard-kbl: FAIL [fdo#103191] / [fdo#103232] -> PASS +1 * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-apl: INCOMPLETE [fdo#103927] -> PASS * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-apl: FAIL [fdo#103167] -> PASS +1 * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping: - shard-glk: FAIL [fdo#108948] -> PASS * igt@kms_plane@plane-position-covered-pipe-b-planes: - shard-snb: {SKIP} [fdo#109271] -> PASS +2 * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-glk: FAIL [fdo#108145] -> PASS * igt@kms_plane_multiple@atomic-pipe-a-tiling-y: - shard-glk: FAIL [fdo#103166] -> PASS +2 * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf: - shard-apl: FAIL [fdo#103166] -> PASS +2 - shard-kbl: FAIL [fdo#103166] -> PASS +1 * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-kbl: FAIL [fdo#109016] -> PASS +1 * igt@kms_setmode@basic: - shard-apl: FAIL [fdo#99912] -> PASS * igt@perf@oa-exponents: - shard-glk: FAIL [fdo#105483] -> PASS * igt@syncobj_wait@single-wait-signaled: - shard-snb: INCOMPLETE [fdo#105411] -> PASS {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103313]: https://bugs.freedesktop.org/show_bug.cgi?id=103313 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010 [fdo#105345]: https://bugs.freedesktop.org/show_bug.cgi?id=105345 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#105483]: https://bugs.freedesktop.org/show_bug.cgi?id=105483 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#107886]: https://bugs.freedesktop.org/show_bug.cgi?id=107886 [fdo#107937]: https://bugs.freedesktop.org/show_bug.cgi?id=107937 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147 [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948 [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016 [fdo#109244]: https://bugs.freedesktop.org/show_bug.cgi?id=109244 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109350]: https://bugs.freedesktop.org/show_bug.cgi?id=109350 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (7 -> 5) ------------------------------ Missing (2): shard-skl shard-iclb Build changes ------------- * IGT: IGT_4826 -> IGTPW_2405 * Piglit: piglit_4509 -> None CI_DRM_5600: 9cf76484ee73dd20bd7b0f086a880f69846c6906 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2405: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2405/ IGT_4826: eea5cf40199c0d08ac654481b830d8a3d4408502 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2405/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev ` (2 preceding siblings ...) 2019-02-14 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2019-02-14 22:10 ` Patchwork 2019-02-15 7:55 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-02-14 22:10 UTC (permalink / raw) To: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) URL : https://patchwork.freedesktop.org/series/56682/ State : success == Summary == CI Bug Log - changes from CI_DRM_5603 -> IGTPW_2410 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56682/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_2410 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - fi-byt-clapper: PASS -> FAIL [fdo#103167] * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: - fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - {fi-icl-u2}: FAIL [fdo#103375] -> PASS * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: - fi-kbl-7567u: {SKIP} [fdo#109271] -> PASS +27 * igt@pm_rpm@basic-pci-d3-state: - fi-bsw-kefka: {SKIP} [fdo#109271] -> PASS * igt@pm_rpm@basic-rte: - fi-bsw-kefka: FAIL [fdo#108800] -> PASS #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: DMESG-FAIL [fdo#105079] -> DMESG-WARN [fdo#103558] / [fdo#105079] / [fdo#105602] * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-kbl-7567u: {SKIP} [fdo#109271] -> DMESG-FAIL [fdo#105079] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [fdo#105079]: https://bugs.freedesktop.org/show_bug.cgi?id=105079 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#105998]: https://bugs.freedesktop.org/show_bug.cgi?id=105998 [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108800]: https://bugs.freedesktop.org/show_bug.cgi?id=108800 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109294]: https://bugs.freedesktop.org/show_bug.cgi?id=109294 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109527]: https://bugs.freedesktop.org/show_bug.cgi?id=109527 [fdo#109528]: https://bugs.freedesktop.org/show_bug.cgi?id=109528 [fdo#109530]: https://bugs.freedesktop.org/show_bug.cgi?id=109530 [fdo#109626]: https://bugs.freedesktop.org/show_bug.cgi?id=109626 Participating hosts (46 -> 44) ------------------------------ Additional (1): fi-icl-y Missing (3): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan Build changes ------------- * IGT: IGT_4827 -> IGTPW_2410 CI_DRM_5603: 80e06a883a3c9272b3dc699c08ff43b9cca0d138 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2410: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2410/ IGT_4827: 395eaffd7e1390c9d6043c2980dc14ce3e08b154 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2410/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev ` (3 preceding siblings ...) 2019-02-14 22:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) Patchwork @ 2019-02-15 7:55 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2019-02-15 7:55 UTC (permalink / raw) To: igt-dev == Series Details == Series: series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) URL : https://patchwork.freedesktop.org/series/56682/ State : failure == Summary == CI Bug Log - changes from CI_DRM_5603_full -> IGTPW_2410_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_2410_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_2410_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://patchwork.freedesktop.org/api/1.0/series/56682/revisions/2/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_2410_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm: - shard-kbl: PASS -> FAIL * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-apl: PASS -> FAIL Known issues ------------ Here are the changes found in IGTPW_2410_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_eio@in-flight-suspend: - shard-snb: PASS -> FAIL [fdo#103375] * igt@kms_busy@extended-modeset-hang-newfb-render-b: - shard-kbl: NOTRUN -> DMESG-WARN [fdo#107956] * igt@kms_color@pipe-b-ctm-max: - shard-apl: PASS -> FAIL [fdo#108147] +1 - shard-kbl: PASS -> FAIL [fdo#108147] * igt@kms_cursor_crc@cursor-256x85-sliding: - shard-apl: PASS -> FAIL [fdo#103232] +1 * igt@kms_cursor_crc@cursor-alpha-opaque: - shard-glk: PASS -> FAIL [fdo#109350] * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: PASS -> FAIL [fdo#105767] * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-apl: PASS -> FAIL [fdo#103167] +2 * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-glk: PASS -> FAIL [fdo#103167] +5 * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-apl: NOTRUN -> FAIL [fdo#108145] * igt@kms_plane_multiple@atomic-pipe-c-tiling-x: - shard-glk: PASS -> FAIL [fdo#103166] +3 - shard-kbl: PASS -> FAIL [fdo#103166] +1 * igt@kms_plane_multiple@atomic-pipe-c-tiling-y: - shard-apl: PASS -> FAIL [fdo#103166] +1 * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: PASS -> FAIL [fdo#104894] #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - shard-kbl: INCOMPLETE [fdo#103665] / [fdo#106702] -> PASS * igt@gem_exec_big: - shard-hsw: TIMEOUT [fdo#107937] -> PASS * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-apl: INCOMPLETE [fdo#103927] / [fdo#109225] -> PASS * igt@kms_atomic_transition@plane-all-transition: - shard-apl: DMESG-WARN [fdo#103558] / [fdo#105602] / [fdo#109225] -> PASS * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a: - shard-kbl: DMESG-WARN [fdo#107956] -> PASS * igt@kms_color@pipe-c-legacy-gamma: - shard-glk: FAIL [fdo#104782] -> PASS * igt@kms_cursor_crc@cursor-128x128-onscreen: - shard-kbl: FAIL [fdo#103232] -> PASS +2 * igt@kms_cursor_crc@cursor-128x42-sliding: - shard-apl: FAIL [fdo#103232] -> PASS +5 * igt@kms_cursor_crc@cursor-64x64-suspend: - shard-apl: FAIL [fdo#103191] / [fdo#103232] -> PASS * igt@kms_cursor_legacy@short-flip-before-cursor-toggle: - shard-apl: DMESG-WARN [fdo#103558] / [fdo#105602] -> PASS +6 * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: FAIL [fdo#102887] / [fdo#105363] -> PASS * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-glk: FAIL [fdo#103167] -> PASS +3 - shard-apl: FAIL [fdo#103167] -> PASS * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-glk: FAIL [fdo#108948] -> PASS * igt@kms_plane@plane-position-covered-pipe-c-planes: - shard-apl: FAIL [fdo#103166] -> PASS +3 - shard-kbl: FAIL [fdo#103166] -> PASS * igt@kms_plane_multiple@atomic-pipe-b-tiling-y: - shard-glk: FAIL [fdo#103166] -> PASS +4 * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: DMESG-FAIL [fdo#105763] -> PASS * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-kbl: FAIL [fdo#109016] -> PASS * igt@kms_setmode@basic: - shard-apl: FAIL [fdo#99912] -> PASS * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm: - shard-apl: FAIL -> PASS - shard-kbl: FAIL -> PASS #### Warnings #### * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - shard-apl: DMESG-FAIL [fdo#103558] / [fdo#105602] / [fdo#108145] -> FAIL [fdo#108145] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887 [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#106702]: https://bugs.freedesktop.org/show_bug.cgi?id=106702 [fdo#107937]: https://bugs.freedesktop.org/show_bug.cgi?id=107937 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147 [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948 [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016 [fdo#109225]: https://bugs.freedesktop.org/show_bug.cgi?id=109225 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109350]: https://bugs.freedesktop.org/show_bug.cgi?id=109350 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (8 -> 5) ------------------------------ Missing (3): shard-skl pig-hsw-4770r shard-iclb Build changes ------------- * IGT: IGT_4827 -> IGTPW_2410 * Piglit: piglit_4509 -> None CI_DRM_5603: 80e06a883a3c9272b3dc699c08ff43b9cca0d138 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2410: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2410/ IGT_4827: 395eaffd7e1390c9d6043c2980dc14ce3e08b154 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2410/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-02-15 7:55 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-02-14 13:57 [igt-dev] [PATCH i-g-t 1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Juha-Pekka Heikkila via igt-dev 2019-02-14 13:57 ` [igt-dev] [PATCH i-g-t 2/2] HACK tests/kms_rotation_crc: use igt_pipe_crc_get_current_with_reference() Juha-Pekka Heikkila via igt-dev 2019-02-14 14:19 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference Patchwork 2019-02-14 19:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-02-14 22:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] HACK lib/igt_debugfs: add igt_pipe_crc_get_current_with_reference (rev2) Patchwork 2019-02-15 7:55 ` [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