* [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir
@ 2018-10-22 17:05 Ramalingam C
2018-10-22 17:05 ` [igt-dev] [PATCH i-g-t v5 2/2] kms_content_protection: Add Content Protection test Ramalingam C
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Ramalingam C @ 2018-10-22 17:05 UTC (permalink / raw)
To: igt-dev, daniel.vetter
Function to open a debugfs directory of a connector associated to
a device.
v2:
instead of string manipulation openat used [Chris]
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
---
lib/igt_debugfs.c | 27 +++++++++++++++++++++++++++
lib/igt_debugfs.h | 1 +
2 files changed, 28 insertions(+)
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index baedc2255ac9..181e2cfc114f 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -237,6 +237,33 @@ int igt_debugfs_dir(int device)
}
/**
+ * igt_debugfs_connector_dir:
+ * @device: fd of the device
+ * @conn_name: conenctor name
+ * @mode: mode bits as used by open()
+ *
+ * This opens the debugfs directory corresponding to connector on the device
+ * for use with igt_sysfs_get() and related functions.
+ *
+ * Returns:
+ * The directory fd, or -1 on failure.
+ */
+int igt_debugfs_connector_dir(int device, char *conn_name, int mode)
+{
+ int dir, ret;
+
+ dir = igt_debugfs_dir(device);
+ if (dir < 0)
+ return dir;
+
+ ret = openat(dir, conn_name, mode);
+
+ close(dir);
+
+ return ret;
+}
+
+/**
* igt_debugfs_open:
* @filename: name of the debugfs node to open
* @mode: mode bits as used by open()
diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h
index ff8612dc66c2..8349ce948d49 100644
--- a/lib/igt_debugfs.h
+++ b/lib/igt_debugfs.h
@@ -35,6 +35,7 @@ const char *igt_debugfs_mount(void);
char *igt_debugfs_path(int device, char *path, int pathlen);
int igt_debugfs_dir(int device);
+int igt_debugfs_connector_dir(int device, char *conn_name, int mode);
int igt_debugfs_open(int fd, const char *filename, int mode);
void __igt_debugfs_read(int fd, const char *filename, char *buf, int size);
--
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] 11+ messages in thread* [igt-dev] [PATCH i-g-t v5 2/2] kms_content_protection: Add Content Protection test 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C @ 2018-10-22 17:05 ` Ramalingam C 2018-10-22 22:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir Patchwork ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Ramalingam C @ 2018-10-22 17:05 UTC (permalink / raw) To: igt-dev, daniel.vetter Pretty simple test: - picks the hdcp capable output with suitable pipe and apply modeset. - checks the connected sink's hdcp capability through debugfs - apply a FB and wait for the flip completion. - clears the content protection property - verifies that it clears - sets the content protection property to desired - verifies that it transitions to enabled - incase of timeout three reattempts are implemented - clear the content protection property and modeset on the crtc Above steps are repeated on all HDCP capable connectors for both legacy and atomic subtests. v2: dynamic subtests are dropped [Daniel] v3: debugfs is used to detect the sink's hdcp capability [Daniel] data structure is made as global variable. v4: debugfs file from connector's debugfs dir is used [Daniel] v5: i915_debugfs_connector_dir() usage is modified [Chris] Signed-off-by: Sean Paul <seanpaul@chromium.org> Signed-off-by: Ramalingam C <ramalingam.c@intel.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> --- lib/igt_kms.c | 1 + lib/igt_kms.h | 1 + tests/Makefile.sources | 1 + tests/kms_content_protection.c | 302 +++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 5 files changed, 306 insertions(+) create mode 100644 tests/kms_content_protection.c diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 62d8468415c6..4231996c65ca 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -194,6 +194,7 @@ const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { [IGT_CONNECTOR_CRTC_ID] = "CRTC_ID", [IGT_CONNECTOR_DPMS] = "DPMS", [IGT_CONNECTOR_BROADCAST_RGB] = "Broadcast RGB", + [IGT_CONNECTOR_CONTENT_PROTECTION] = "Content Protection", }; /* diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 3a12f2782eed..aa068e58e607 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -120,6 +120,7 @@ enum igt_atomic_connector_properties { IGT_CONNECTOR_CRTC_ID, IGT_CONNECTOR_DPMS, IGT_CONNECTOR_BROADCAST_RGB, + IGT_CONNECTOR_CONTENT_PROTECTION, IGT_NUM_CONNECTOR_PROPS }; diff --git a/tests/Makefile.sources b/tests/Makefile.sources index c84933f1d971..5af68a61df51 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -174,6 +174,7 @@ TESTS_progs = \ kms_chv_cursor_fail \ kms_color \ kms_concurrent \ + kms_content_protection\ kms_crtc_background_color \ kms_cursor_crc \ kms_cursor_legacy \ diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c new file mode 100644 index 000000000000..47acbeedaa12 --- /dev/null +++ b/tests/kms_content_protection.c @@ -0,0 +1,302 @@ +/* + * Copyright © 2018 Intel Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + * + */ + +#include <poll.h> +#include <fcntl.h> +#include "igt.h" +#include "igt_sysfs.h" + +IGT_TEST_DESCRIPTION("Test content protection (HDCP)"); + +struct data { + int drm_fd; + igt_display_t display; +} data; + + +static void flip_handler(int fd, unsigned int sequence, unsigned int tv_sec, + unsigned int tv_usec, void *_data) +{ + igt_debug("Flip event received.\n"); +} + +static int wait_flip_event(void) +{ + int rc; + drmEventContext evctx; + struct pollfd pfd; + + evctx.version = 2; + evctx.vblank_handler = NULL; + evctx.page_flip_handler = flip_handler; + + pfd.fd = data.drm_fd; + pfd.events = POLLIN; + pfd.revents = 0; + + rc = poll(&pfd, 1, 1000); + switch (rc) { + case 0: + igt_info("Poll timeout. 1Sec.\n"); + rc = -ETIMEDOUT; + break; + case 1: + rc = drmHandleEvent(data.drm_fd, &evctx); + igt_assert_eq(rc, 0); + rc = 0; + break; + default: + igt_info("Unexpected poll rc %d\n", rc); + rc = -1; + break; + } + + return rc; +} + +static bool +wait_for_prop_value(igt_output_t *output, uint64_t expected, + uint32_t timeout_mSec) +{ + uint64_t val; + int i; + + for (i = 0; i < timeout_mSec; i++) { + val = igt_output_get_prop(output, + IGT_CONNECTOR_CONTENT_PROTECTION); + if (val == expected) + return true; + usleep(1000); + } + igt_info("prop_value mismatch %ld != %ld\n", val, expected); + + return false; +} + +static void +commit_display_and_wait_for_flip(enum igt_commit_style s) +{ + int ret; + uint32_t flag; + + if (s == COMMIT_ATOMIC) { + flag = DRM_MODE_PAGE_FLIP_EVENT | DRM_MODE_ATOMIC_ALLOW_MODESET; + igt_display_commit_atomic(&data.display, flag, NULL); + + ret = wait_flip_event(); + igt_assert_f(!ret, "wait_flip_event failed. %d\n", ret); + } else { + igt_display_commit2(&data.display, s); + + /* Wait for 50mSec */ + usleep(50 * 1000); + } +} + +static void +test_cp_enable_disable(const enum pipe pipe, igt_output_t *output, + enum igt_commit_style s) +{ + igt_display_t *display = &data.display; + drmModeModeInfo mode; + igt_plane_t *primary; + struct igt_fb red, green; + bool ret; + int retry = 3; + + igt_assert(kmstest_get_connector_default_mode( + display->drm_fd, output->config.connector, &mode)); + + igt_output_override_mode(output, &mode); + igt_output_set_pipe(output, pipe); + + igt_create_color_fb(display->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, + 1.f, 0.f, 0.f, &red); + igt_create_color_fb(display->drm_fd, mode.hdisplay, mode.vdisplay, + DRM_FORMAT_XRGB8888, LOCAL_DRM_FORMAT_MOD_NONE, + 0.f, 1.f, 0.f, &green); + + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + igt_display_commit2(display, s); + + igt_plane_set_fb(primary, &red); + + /* Wait for Flip completion before starting the HDCP authentication */ + commit_display_and_wait_for_flip(s); + + do { + igt_output_set_prop_value(output, + IGT_CONNECTOR_CONTENT_PROTECTION, 0); + igt_display_commit2(display, s); + + /* Wait for HDCP to be disabled for fresh start. */ + ret = wait_for_prop_value(output, 0, 1000); + igt_assert_f(ret, "Content Protection not cleared\n"); + + igt_output_set_prop_value(output, + IGT_CONNECTOR_CONTENT_PROTECTION, 1); + igt_display_commit2(display, s); + + /* Wait for 18000mSec (3 authentication * 6Sec) */ + ret = wait_for_prop_value(output, 2, 18000); + if (ret) { + igt_plane_set_fb(primary, &green); + igt_display_commit2(display, s); + } + + if (!ret && --retry) + igt_debug("Retry (%d/2) ...\n", 3 - retry); + } while (retry && !ret); + + igt_assert_f(ret, "Content Protection not enabled\n"); + + igt_output_set_prop_value(output, IGT_CONNECTOR_CONTENT_PROTECTION, 0); + igt_plane_set_fb(primary, &red); + igt_display_commit2(display, s); + + /* Wait for HDCP to be disabled, before crtc off */ + wait_for_prop_value(output, 0, 1000); + + igt_plane_set_fb(primary, NULL); + igt_output_set_pipe(output, PIPE_NONE); +} + +static bool igt_pipe_is_free(igt_display_t *display, enum pipe pipe) +{ + int i; + + for (i = 0; i < display->n_outputs; i++) + if (display->outputs[i].pending_pipe == pipe) + return false; + + return true; +} + +static void +test_content_protection_on_output(igt_output_t *output, + enum igt_commit_style s) +{ + igt_display_t *display = &data.display; + enum pipe pipe; + + for_each_pipe(display, pipe) { + if (!igt_pipe_connector_valid(pipe, output)) + continue; + + /* + * If previous subtest of connector failed, pipe + * attached to that connector is not released. + * Because of that we have to choose the non + * attached pipe for this subtest. + */ + if (!igt_pipe_is_free(display, pipe)) + continue; + + test_cp_enable_disable(pipe, output, s); + + /* + * Testing a output with a pipe is enough for HDCP + * testing. No ROI in testing the connector with other + * pipes. So Break the loop on pipe. + */ + break; + } + +} + +static void __debugfs_read(int fd, const char *param, char *buf, int len) +{ + len = igt_debugfs_simple_read(fd, param, buf, len); + if (len < 0) + igt_assert_eq(len, -ENODEV); +} + +#define debugfs_read(fd, p, arr) __debugfs_read(fd, p, arr, sizeof(arr)) + +#define MAX_SINK_HDCP_CAP_BUF_LEN 500 +static bool sink_hdcp_capable(igt_output_t *output) +{ + char buf[MAX_SINK_HDCP_CAP_BUF_LEN]; + int fd; + + fd = igt_debugfs_connector_dir(data.drm_fd, output->name, O_RDONLY); + if (fd < 0) + return false; + + debugfs_read(fd, "i915_hdcp_sink_capability", buf); + close(fd); + + igt_debug("Sink capability: %s\n", buf); + + return strstr(buf, "HDCP1.4"); +} + + +static void +test_content_protection(enum igt_commit_style s) +{ + igt_display_t *display = &data.display; + igt_output_t *output; + int valid_tests = 0; + + for_each_connected_output(display, output) { + if (!output->props[IGT_CONNECTOR_CONTENT_PROTECTION]) + continue; + + igt_info("CP Test execution on %s\n", output->name); + if (!sink_hdcp_capable(output)) { + igt_info("\tSkip %s (Sink has no HDCP support)\n", + output->name); + continue; + } + + test_content_protection_on_output(output, s); + valid_tests++; + } + + igt_require_f(valid_tests, "No connector found with HDCP capability\n"); +} + +igt_main +{ + igt_fixture { + igt_skip_on_simulation(); + + data.drm_fd = drm_open_driver(DRIVER_ANY); + + igt_display_init(&data.display, data.drm_fd); + } + + igt_subtest("legacy") + test_content_protection(COMMIT_LEGACY); + + igt_subtest("atomic") { + igt_require(data.display.is_atomic); + test_content_protection(COMMIT_ATOMIC); + } + + igt_fixture + igt_display_fini(&data.display); +} diff --git a/tests/meson.build b/tests/meson.build index 17deb945ec95..a74de4ff0ece 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -149,6 +149,7 @@ test_progs = [ 'kms_chv_cursor_fail', 'kms_color', 'kms_concurrent', + 'kms_content_protection', 'kms_crtc_background_color', 'kms_cursor_crc', 'kms_cursor_legacy', -- 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] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C 2018-10-22 17:05 ` [igt-dev] [PATCH i-g-t v5 2/2] kms_content_protection: Add Content Protection test Ramalingam C @ 2018-10-22 22:45 ` Patchwork 2018-10-23 5:49 ` C, Ramalingam 2018-10-23 6:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (5 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2018-10-22 22:45 UTC (permalink / raw) To: Ramalingam C; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : failure == Summary == = CI Bug Log - changes from CI_DRM_5013 -> IGTPW_1974 = == Summary - FAILURE == Serious unknown changes coming with IGTPW_1974 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1974, 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/51338/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1974: === IGT changes === ==== Possible regressions ==== igt@drv_selftest@live_coherency: fi-byt-j1900: PASS -> DMESG-WARN == Known issues == Here are the changes found in IGTPW_1974 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_store@basic-all: fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107724) +25 igt@gem_exec_store@basic-bsd: fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107732) +7 igt@gem_exec_suspend@basic-s3: fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108512) igt@kms_flip@basic-flip-vs-dpms: fi-skl-6700hq: PASS -> DMESG-WARN (fdo#105998) igt@kms_frontbuffer_tracking@basic: fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@prime_vgem@basic-fence-flip: fi-cfl-8700k: PASS -> FAIL (fdo#104008) ==== Possible fixes ==== igt@gem_exec_suspend@basic-s4-devices: fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: fi-byt-clapper: FAIL (fdo#107362) -> PASS fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008 fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 fdo#107732 https://bugs.freedesktop.org/show_bug.cgi?id=107732 fdo#108512 https://bugs.freedesktop.org/show_bug.cgi?id=108512 == Participating hosts (41 -> 46) == Additional (10): fi-icl-u fi-skl-guc fi-bdw-gvtdvm fi-glk-dsi fi-gdg-551 fi-pnv-d510 fi-ivb-3520m fi-kbl-7560u fi-byt-n2820 fi-snb-2600 Missing (5): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-u2 fi-ivb-3770 == Build changes == * IGT: IGT_4684 -> IGTPW_1974 CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1974: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/ IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_content_protection@atomic +igt@kms_content_protection@legacy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 22:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir Patchwork @ 2018-10-23 5:49 ` C, Ramalingam 2018-10-23 13:33 ` Daniel Vetter 0 siblings, 1 reply; 11+ messages in thread From: C, Ramalingam @ 2018-10-23 5:49 UTC (permalink / raw) To: igt-dev, Daniel Vetter [-- Attachment #1.1: Type: text/plain, Size: 3551 bytes --] On 10/23/2018 4:15 AM, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir > URL : https://patchwork.freedesktop.org/series/51338/ > State : failure > > == Summary == > > = CI Bug Log - changes from CI_DRM_5013 -> IGTPW_1974 = > > == Summary - FAILURE == > > Serious unknown changes coming with IGTPW_1974 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_1974, 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/51338/revisions/1/mbox/ > > == Possible new issues == > > Here are the unknown changes that may have been introduced in IGTPW_1974: > > === IGT changes === > > ==== Possible regressions ==== > > igt@drv_selftest@live_coherency: > fi-byt-j1900: PASS -> DMESG-WARN Daniel, __unclaimed_reg_debug warning is not related to these changes. --Ram > > == Known issues == > > Here are the changes found in IGTPW_1974 that come from known issues: > > === IGT changes === > > ==== Issues hit ==== > > igt@gem_exec_store@basic-all: > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107724) +25 > > igt@gem_exec_store@basic-bsd: > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107732) +7 > > igt@gem_exec_suspend@basic-s3: > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108512) > > igt@kms_flip@basic-flip-vs-dpms: > fi-skl-6700hq: PASS -> DMESG-WARN (fdo#105998) > > igt@kms_frontbuffer_tracking@basic: > fi-byt-clapper: PASS -> FAIL (fdo#103167) > > igt@prime_vgem@basic-fence-flip: > fi-cfl-8700k: PASS -> FAIL (fdo#104008) > > > ==== Possible fixes ==== > > igt@gem_exec_suspend@basic-s4-devices: > fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS > > igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: > fi-byt-clapper: FAIL (fdo#107362) -> PASS > > > fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 > fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008 > fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 > fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 > fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 > fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 > fdo#107732 https://bugs.freedesktop.org/show_bug.cgi?id=107732 > fdo#108512 https://bugs.freedesktop.org/show_bug.cgi?id=108512 > > > == Participating hosts (41 -> 46) == > > Additional (10): fi-icl-u fi-skl-guc fi-bdw-gvtdvm fi-glk-dsi fi-gdg-551 fi-pnv-d510 fi-ivb-3520m fi-kbl-7560u fi-byt-n2820 fi-snb-2600 > Missing (5): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-u2 fi-ivb-3770 > > > == Build changes == > > * IGT: IGT_4684 -> IGTPW_1974 > > CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_1974: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/ > IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Testlist changes == > > +igt@kms_content_protection@atomic > +igt@kms_content_protection@legacy > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/issues.html [-- Attachment #1.2: Type: text/html, Size: 5119 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-23 5:49 ` C, Ramalingam @ 2018-10-23 13:33 ` Daniel Vetter 0 siblings, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2018-10-23 13:33 UTC (permalink / raw) To: C, Ramalingam; +Cc: igt-dev, Daniel Vetter On Tue, Oct 23, 2018 at 11:19:26AM +0530, C, Ramalingam wrote: > > On 10/23/2018 4:15 AM, Patchwork wrote: > > == Series Details == > > > > Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir > > URL : https://patchwork.freedesktop.org/series/51338/ > > State : failure > > > > == Summary == > > > > = CI Bug Log - changes from CI_DRM_5013 -> IGTPW_1974 = > > > > == Summary - FAILURE == > > > > Serious unknown changes coming with IGTPW_1974 absolutely need to be > > verified manually. > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_1974, 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/51338/revisions/1/mbox/ > > > > == Possible new issues == > > > > Here are the unknown changes that may have been introduced in IGTPW_1974: > > > > === IGT changes === > > > > ==== Possible regressions ==== > > > > igt@drv_selftest@live_coherency: > > fi-byt-j1900: PASS -> DMESG-WARN > > Daniel, > > __unclaimed_reg_debug warning is not related to these changes. Rerun looks clean, both patches applied, thanks. -Daniel > > --Ram > > > == Known issues == > > > > Here are the changes found in IGTPW_1974 that come from known issues: > > > > === IGT changes === > > > > ==== Issues hit ==== > > > > igt@gem_exec_store@basic-all: > > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107724) +25 > > > > igt@gem_exec_store@basic-bsd: > > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107732) +7 > > > > igt@gem_exec_suspend@basic-s3: > > fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108512) > > > > igt@kms_flip@basic-flip-vs-dpms: > > fi-skl-6700hq: PASS -> DMESG-WARN (fdo#105998) > > > > igt@kms_frontbuffer_tracking@basic: > > fi-byt-clapper: PASS -> FAIL (fdo#103167) > > > > igt@prime_vgem@basic-fence-flip: > > fi-cfl-8700k: PASS -> FAIL (fdo#104008) > > > > ==== Possible fixes ==== > > > > igt@gem_exec_suspend@basic-s4-devices: > > fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS > > > > igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: > > fi-byt-clapper: FAIL (fdo#107362) -> PASS > > > > fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 > > fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008 > > fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 > > fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 > > fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 > > fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 > > fdo#107732 https://bugs.freedesktop.org/show_bug.cgi?id=107732 > > fdo#108512 https://bugs.freedesktop.org/show_bug.cgi?id=108512 > > > > > > == Participating hosts (41 -> 46) == > > > > Additional (10): fi-icl-u fi-skl-guc fi-bdw-gvtdvm fi-glk-dsi fi-gdg-551 fi-pnv-d510 fi-ivb-3520m fi-kbl-7560u fi-byt-n2820 fi-snb-2600 > > Missing (5): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-u2 fi-ivb-3770 > > > > > > == Build changes == > > > > * IGT: IGT_4684 -> IGTPW_1974 > > > > CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux > > IGTPW_1974: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/ > > IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > > > > > == Testlist changes == > > > > +igt@kms_content_protection@atomic > > +igt@kms_content_protection@legacy > > > > == Logs == > > > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1974/issues.html -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C 2018-10-22 17:05 ` [igt-dev] [PATCH i-g-t v5 2/2] kms_content_protection: Add Content Protection test Ramalingam C 2018-10-22 22:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir Patchwork @ 2018-10-23 6:24 ` Patchwork 2018-10-23 7:29 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 6:24 UTC (permalink / raw) To: C, Ramalingam; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from CI_DRM_5013 -> IGTPW_1977 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/51338/revisions/1/mbox/ == Known issues == Here are the changes found in IGTPW_1977 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_reloc@basic-gtt-read-active: fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107724) +24 igt@gem_exec_store@basic-all: fi-icl-u: NOTRUN -> DMESG-WARN (fdo#107732) +8 igt@gem_exec_suspend@basic-s3: fi-kbl-soraka: NOTRUN -> INCOMPLETE (fdo#107859, fdo#107774, fdo#107556) igt@gem_exec_suspend@basic-s4-devices: fi-icl-u2: PASS -> DMESG-WARN (fdo#108070, fdo#107732) +1 igt@gem_flink_basic@flink-lifetime: fi-icl-u2: PASS -> DMESG-WARN (fdo#107732) +7 igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence: fi-byt-clapper: PASS -> FAIL (fdo#107362, fdo#103191) ==== Possible fixes ==== igt@gem_exec_suspend@basic-s4-devices: fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b: fi-byt-clapper: FAIL (fdo#107362) -> PASS fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107556 https://bugs.freedesktop.org/show_bug.cgi?id=107556 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 fdo#107732 https://bugs.freedesktop.org/show_bug.cgi?id=107732 fdo#107774 https://bugs.freedesktop.org/show_bug.cgi?id=107774 fdo#107859 https://bugs.freedesktop.org/show_bug.cgi?id=107859 fdo#108070 https://bugs.freedesktop.org/show_bug.cgi?id=108070 == Participating hosts (41 -> 46) == Additional (9): fi-kbl-soraka fi-icl-u fi-bdw-gvtdvm fi-glk-dsi fi-gdg-551 fi-ivb-3520m fi-kbl-7560u fi-byt-n2820 fi-snb-2600 Missing (4): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-ivb-3770 == Build changes == * IGT: IGT_4684 -> IGTPW_1977 CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1977: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/ IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_content_protection@atomic +igt@kms_content_protection@legacy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C ` (2 preceding siblings ...) 2018-10-23 6:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2018-10-23 7:29 ` Patchwork 2018-10-23 7:42 ` Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 7:29 UTC (permalink / raw) To: C, Ramalingam; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from IGT_4684_full -> IGTPW_1977_full = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/51338/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1977_full: === IGT changes === ==== Possible regressions ==== {igt@kms_content_protection@atomic}: shard-kbl: NOTRUN -> FAIL +1 shard-hsw: NOTRUN -> FAIL +1 shard-apl: NOTRUN -> FAIL +1 {igt@kms_content_protection@legacy}: shard-glk: NOTRUN -> FAIL +1 == Known issues == Here are the changes found in IGTPW_1977_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@drv_suspend@shrink: shard-apl: PASS -> INCOMPLETE (fdo#106886, fdo#103927) igt@drv_suspend@sysfs-reader: shard-kbl: PASS -> INCOMPLETE (fdo#103665) igt@gem_exec_schedule@pi-ringfull-bsd: shard-glk: NOTRUN -> FAIL (fdo#103158) shard-apl: NOTRUN -> FAIL (fdo#103158) igt@gem_pwrite@small-cpu-random: shard-hsw: PASS -> INCOMPLETE (fdo#103540) igt@kms_available_modes_crc@available_mode_test_crc: shard-hsw: NOTRUN -> FAIL (fdo#106641) igt@kms_busy@extended-pageflip-hang-newfb-render-a: shard-glk: PASS -> DMESG-WARN (fdo#107956) shard-apl: PASS -> DMESG-WARN (fdo#107956) igt@kms_cursor_crc@cursor-256x256-sliding: shard-kbl: NOTRUN -> FAIL (fdo#103232) shard-apl: NOTRUN -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-256x85-sliding: shard-glk: NOTRUN -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-64x21-random: shard-apl: PASS -> FAIL (fdo#103232) +3 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: shard-apl: PASS -> FAIL (fdo#103167) +1 igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: shard-glk: PASS -> FAIL (fdo#103167) igt@kms_plane@plane-position-covered-pipe-c-planes: shard-apl: PASS -> FAIL (fdo#103166) +2 shard-glk: PASS -> FAIL (fdo#103166) igt@kms_plane_multiple@atomic-pipe-a-tiling-y: shard-glk: NOTRUN -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-b-tiling-y: shard-apl: NOTRUN -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: shard-kbl: PASS -> FAIL (fdo#103166) +2 igt@kms_setmode@basic: shard-snb: NOTRUN -> FAIL (fdo#99912) igt@kms_universal_plane@universal-plane-pipe-a-functional: shard-kbl: NOTRUN -> FAIL (fdo#103166) igt@pm_rpm@system-suspend-execbuf: shard-apl: PASS -> INCOMPLETE (fdo#103927) shard-glk: PASS -> INCOMPLETE (k.org#198133, fdo#103359) ==== Possible fixes ==== igt@kms_color@pipe-c-degamma: shard-apl: FAIL (fdo#104782) -> PASS igt@kms_cursor_crc@cursor-128x42-sliding: shard-glk: FAIL (fdo#103232) -> PASS +1 igt@kms_cursor_crc@cursor-256x85-random: shard-apl: FAIL (fdo#103232) -> PASS +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: shard-glk: FAIL (fdo#103167) -> PASS +5 shard-apl: FAIL (fdo#103167) -> PASS igt@kms_plane@plane-position-covered-pipe-a-planes: shard-glk: FAIL (fdo#103166) -> PASS igt@kms_plane_multiple@atomic-pipe-a-tiling-x: shard-apl: FAIL (fdo#103166) -> PASS {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232 fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359 fdo#103540 https://bugs.freedesktop.org/show_bug.cgi?id=103540 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#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641 fdo#106886 https://bugs.freedesktop.org/show_bug.cgi?id=106886 fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133 == Participating hosts (6 -> 5) == Missing (1): shard-skl == Build changes == * IGT: IGT_4684 -> IGTPW_1977 * Linux: CI_DRM_5010 -> CI_DRM_5013 CI_DRM_5010: 27a4f334d3ec8882d50227c26ae4e393d7d1f4a1 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1977: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/ IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C ` (3 preceding siblings ...) 2018-10-23 7:29 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2018-10-23 7:42 ` Patchwork 2018-10-23 12:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 7:42 UTC (permalink / raw) To: C, Ramalingam; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from IGT_4684_full -> IGTPW_1977_full = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/51338/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1977_full: === IGT changes === ==== Possible regressions ==== {igt@kms_content_protection@atomic}: shard-kbl: NOTRUN -> FAIL +1 shard-hsw: NOTRUN -> FAIL +1 shard-apl: NOTRUN -> FAIL +1 {igt@kms_content_protection@legacy}: shard-glk: NOTRUN -> FAIL +1 == Known issues == Here are the changes found in IGTPW_1977_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@drv_suspend@shrink: shard-apl: PASS -> INCOMPLETE (fdo#106886, fdo#103927) igt@drv_suspend@sysfs-reader: shard-kbl: PASS -> INCOMPLETE (fdo#103665) igt@gem_exec_schedule@pi-ringfull-bsd: shard-glk: NOTRUN -> FAIL (fdo#103158) shard-apl: NOTRUN -> FAIL (fdo#103158) igt@gem_pwrite@small-cpu-random: shard-hsw: PASS -> INCOMPLETE (fdo#103540) igt@kms_available_modes_crc@available_mode_test_crc: shard-hsw: NOTRUN -> FAIL (fdo#106641) igt@kms_busy@extended-pageflip-hang-newfb-render-a: shard-glk: PASS -> DMESG-WARN (fdo#107956) shard-apl: PASS -> DMESG-WARN (fdo#107956) igt@kms_cursor_crc@cursor-256x256-sliding: shard-kbl: NOTRUN -> FAIL (fdo#103232) shard-apl: NOTRUN -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-256x85-sliding: shard-glk: NOTRUN -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-64x21-random: shard-apl: PASS -> FAIL (fdo#103232) +3 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: shard-apl: PASS -> FAIL (fdo#103167) +1 igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: shard-glk: PASS -> FAIL (fdo#103167) igt@kms_plane@plane-position-covered-pipe-c-planes: shard-apl: PASS -> FAIL (fdo#103166) +2 shard-glk: PASS -> FAIL (fdo#103166) igt@kms_plane_multiple@atomic-pipe-a-tiling-y: shard-glk: NOTRUN -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-b-tiling-y: shard-apl: NOTRUN -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: shard-kbl: PASS -> FAIL (fdo#103166) +2 igt@kms_setmode@basic: shard-snb: NOTRUN -> FAIL (fdo#99912) igt@kms_universal_plane@universal-plane-pipe-a-functional: shard-kbl: NOTRUN -> FAIL (fdo#103166) igt@pm_rpm@system-suspend-execbuf: shard-apl: PASS -> INCOMPLETE (fdo#103927) shard-glk: PASS -> INCOMPLETE (k.org#198133, fdo#103359) ==== Possible fixes ==== igt@kms_color@pipe-c-degamma: shard-apl: FAIL (fdo#104782) -> PASS igt@kms_cursor_crc@cursor-128x42-sliding: shard-glk: FAIL (fdo#103232) -> PASS +1 igt@kms_cursor_crc@cursor-256x85-random: shard-apl: FAIL (fdo#103232) -> PASS +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: shard-glk: FAIL (fdo#103167) -> PASS +5 shard-apl: FAIL (fdo#103167) -> PASS igt@kms_plane@plane-position-covered-pipe-a-planes: shard-glk: FAIL (fdo#103166) -> PASS igt@kms_plane_multiple@atomic-pipe-a-tiling-x: shard-apl: FAIL (fdo#103166) -> PASS {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232 fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359 fdo#103540 https://bugs.freedesktop.org/show_bug.cgi?id=103540 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#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641 fdo#106886 https://bugs.freedesktop.org/show_bug.cgi?id=106886 fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133 == Participating hosts (6 -> 5) == Missing (1): shard-skl == Build changes == * IGT: IGT_4684 -> IGTPW_1977 * Linux: CI_DRM_5010 -> CI_DRM_5013 CI_DRM_5010: 27a4f334d3ec8882d50227c26ae4e393d7d1f4a1 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_5013: 0008b23799728680da3d6d871d46f746a3f69c35 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1977: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/ IGT_4684: 6f27fddc6dd79c0486181b64201c6773c5c42a24 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1977/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C ` (4 preceding siblings ...) 2018-10-23 7:42 ` Patchwork @ 2018-10-23 12:41 ` Patchwork 2018-10-23 12:59 ` Patchwork 2018-10-23 15:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 12:41 UTC (permalink / raw) To: Ramalingam C; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from CI_DRM_5020 -> IGTPW_1978 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/51338/revisions/1/mbox/ == Known issues == Here are the changes found in IGTPW_1978 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_suspend@basic-s3: fi-kbl-soraka: NOTRUN -> INCOMPLETE (fdo#107774, fdo#107556, fdo#107859) igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-cfl-8109u: NOTRUN -> INCOMPLETE (fdo#108126, fdo#106070) igt@pm_rpm@module-reload: fi-skl-6600u: PASS -> INCOMPLETE (fdo#107807) ==== Possible fixes ==== igt@kms_flip@basic-flip-vs-dpms: fi-skl-6700hq: DMESG-WARN (fdo#105998) -> PASS igt@kms_frontbuffer_tracking@basic: fi-hsw-peppy: DMESG-WARN (fdo#102614) -> PASS igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: fi-byt-clapper: FAIL (fdo#103191, fdo#107362) -> PASS +1 fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@prime_vgem@basic-fence-flip: fi-cfl-8700k: FAIL (fdo#104008) -> PASS fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008 fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107556 https://bugs.freedesktop.org/show_bug.cgi?id=107556 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107774 https://bugs.freedesktop.org/show_bug.cgi?id=107774 fdo#107807 https://bugs.freedesktop.org/show_bug.cgi?id=107807 fdo#107859 https://bugs.freedesktop.org/show_bug.cgi?id=107859 fdo#108126 https://bugs.freedesktop.org/show_bug.cgi?id=108126 == Participating hosts (47 -> 42) == Additional (2): fi-kbl-soraka fi-cfl-8109u Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-glk-j4005 == Build changes == * IGT: IGT_4686 -> IGTPW_1978 CI_DRM_5020: 95151c25e0433a2fe771b8bc272f3f8fb54a7e27 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1978: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1978/ IGT_4686: 741bf7064c467df725c14cc0b3b8b50436f9ee09 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_content_protection@atomic +igt@kms_content_protection@legacy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1978/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C ` (5 preceding siblings ...) 2018-10-23 12:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2018-10-23 12:59 ` Patchwork 2018-10-23 15:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 12:59 UTC (permalink / raw) To: Ramalingam C; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from CI_DRM_5020 -> IGTPW_1979 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/51338/revisions/1/mbox/ == Known issues == Here are the changes found in IGTPW_1979 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_suspend@basic-s3: fi-cfl-8109u: NOTRUN -> DMESG-WARN (fdo#107345) +1 fi-kbl-soraka: NOTRUN -> INCOMPLETE (fdo#107774, fdo#107556, fdo#107859) igt@kms_frontbuffer_tracking@basic: fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b-frame-sequence: fi-byt-clapper: PASS -> FAIL (fdo#107362, fdo#103191) +1 igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: fi-cfl-8109u: NOTRUN -> INCOMPLETE (fdo#108126, fdo#106070) ==== Possible fixes ==== igt@kms_frontbuffer_tracking@basic: fi-hsw-peppy: DMESG-WARN (fdo#102614) -> PASS igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: fi-byt-clapper: FAIL (fdo#107362, fdo#103191) -> PASS +1 fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@prime_vgem@basic-fence-flip: fi-cfl-8700k: FAIL (fdo#104008) -> PASS fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008 fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070 fdo#107345 https://bugs.freedesktop.org/show_bug.cgi?id=107345 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107556 https://bugs.freedesktop.org/show_bug.cgi?id=107556 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107774 https://bugs.freedesktop.org/show_bug.cgi?id=107774 fdo#107859 https://bugs.freedesktop.org/show_bug.cgi?id=107859 fdo#108126 https://bugs.freedesktop.org/show_bug.cgi?id=108126 == Participating hosts (47 -> 43) == Additional (2): fi-kbl-soraka fi-cfl-8109u Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-glk-j4005 == Build changes == * IGT: IGT_4686 -> IGTPW_1979 CI_DRM_5020: 95151c25e0433a2fe771b8bc272f3f8fb54a7e27 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1979/ IGT_4686: 741bf7064c467df725c14cc0b3b8b50436f9ee09 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_content_protection@atomic +igt@kms_content_protection@legacy == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1979/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C ` (6 preceding siblings ...) 2018-10-23 12:59 ` Patchwork @ 2018-10-23 15:44 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2018-10-23 15:44 UTC (permalink / raw) To: Ramalingam C; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir URL : https://patchwork.freedesktop.org/series/51338/ State : success == Summary == = CI Bug Log - changes from IGT_4686_full -> IGTPW_1979_full = == Summary - WARNING == Minor unknown changes coming with IGTPW_1979_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1979_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/51338/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1979_full: === IGT changes === ==== Possible regressions ==== {igt@kms_content_protection@atomic}: shard-kbl: NOTRUN -> FAIL +1 shard-hsw: NOTRUN -> FAIL +1 shard-apl: NOTRUN -> FAIL +1 {igt@kms_content_protection@legacy}: shard-glk: NOTRUN -> FAIL +1 ==== Warnings ==== igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: shard-snb: SKIP -> PASS igt@perf_pmu@rc6: shard-kbl: SKIP -> PASS == Known issues == Here are the changes found in IGTPW_1979_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_tiled_blits@interruptible: shard-apl: PASS -> INCOMPLETE (fdo#103927) igt@kms_available_modes_crc@available_mode_test_crc: shard-apl: PASS -> FAIL (fdo#106641) igt@kms_busy@extended-pageflip-hang-newfb-render-b: shard-apl: NOTRUN -> DMESG-WARN (fdo#107956) +1 shard-glk: NOTRUN -> DMESG-WARN (fdo#107956) +1 igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a: shard-snb: NOTRUN -> DMESG-WARN (fdo#107956) shard-kbl: NOTRUN -> DMESG-WARN (fdo#107956) shard-hsw: NOTRUN -> DMESG-WARN (fdo#107956) igt@kms_color@pipe-c-legacy-gamma: shard-apl: PASS -> FAIL (fdo#104782) igt@kms_cursor_crc@cursor-128x42-sliding: shard-kbl: PASS -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-256x256-random: shard-apl: PASS -> FAIL (fdo#103232) +2 igt@kms_cursor_crc@cursor-256x256-suspend: shard-apl: NOTRUN -> FAIL (fdo#103232, fdo#103191) igt@kms_cursor_crc@cursor-64x21-onscreen: shard-glk: PASS -> FAIL (fdo#103232) igt@kms_cursor_crc@cursor-64x64-suspend: shard-apl: PASS -> FAIL (fdo#103232, fdo#103191) igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: shard-apl: NOTRUN -> FAIL (fdo#103167) igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: shard-glk: PASS -> FAIL (fdo#103167) +4 shard-apl: PASS -> FAIL (fdo#103167) igt@kms_plane@pixel-format-pipe-c-planes: shard-apl: NOTRUN -> FAIL (fdo#103166) shard-glk: NOTRUN -> FAIL (fdo#103166) shard-kbl: NOTRUN -> FAIL (fdo#103166) igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: shard-glk: PASS -> FAIL (fdo#108145) igt@kms_plane_alpha_blend@pipe-b-alpha-basic: shard-apl: NOTRUN -> FAIL (fdo#108145) +1 igt@kms_plane_alpha_blend@pipe-b-alpha-transparant-fb: shard-kbl: NOTRUN -> FAIL (fdo#108145) +1 shard-glk: NOTRUN -> FAIL (fdo#108145) +1 igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: shard-kbl: NOTRUN -> FAIL (fdo#108146) shard-apl: NOTRUN -> FAIL (fdo#108146) shard-glk: NOTRUN -> FAIL (fdo#108146) igt@kms_plane_multiple@atomic-pipe-b-tiling-y: shard-glk: PASS -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-c-tiling-y: shard-apl: PASS -> FAIL (fdo#103166) igt@syncobj_wait@wait-for-submit-delayed-submit: shard-snb: NOTRUN -> INCOMPLETE (fdo#105411) +4 ==== Possible fixes ==== igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b: shard-hsw: DMESG-WARN (fdo#107956) -> PASS igt@kms_color@pipe-a-legacy-gamma: shard-kbl: FAIL (fdo#108145, fdo#104782) -> PASS shard-apl: FAIL (fdo#108145, fdo#104782) -> PASS +1 igt@kms_color@pipe-c-degamma: shard-apl: FAIL (fdo#104782) -> PASS igt@kms_cursor_crc@cursor-64x64-onscreen: shard-apl: FAIL (fdo#103232) -> PASS +1 igt@kms_draw_crc@draw-method-xrgb8888-mmap-cpu-ytiled: shard-glk: FAIL (fdo#107791) -> PASS igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: shard-apl: FAIL (fdo#103167) -> PASS +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: shard-glk: FAIL (fdo#103167) -> PASS +1 shard-kbl: FAIL (fdo#103167) -> PASS igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb: shard-apl: FAIL (fdo#108145) -> PASS shard-glk: FAIL (fdo#108145) -> PASS igt@kms_universal_plane@universal-plane-pipe-c-functional: shard-apl: FAIL (fdo#103166) -> PASS igt@kms_vblank@pipe-b-accuracy-idle: shard-glk: DMESG-WARN (fdo#105763, fdo#106538) -> PASS +2 {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). 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#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927 fdo#104782 https://bugs.freedesktop.org/show_bug.cgi?id=104782 fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411 fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763 fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538 fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641 fdo#107791 https://bugs.freedesktop.org/show_bug.cgi?id=107791 fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956 fdo#108145 https://bugs.freedesktop.org/show_bug.cgi?id=108145 fdo#108146 https://bugs.freedesktop.org/show_bug.cgi?id=108146 == Participating hosts (6 -> 5) == Missing (1): shard-skl == Build changes == * IGT: IGT_4686 -> IGTPW_1979 * Linux: CI_DRM_5019 -> CI_DRM_5020 CI_DRM_5019: 8d7ffd2298c607c3e1a16f94d51450d7940fd6a7 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_5020: 95151c25e0433a2fe771b8bc272f3f8fb54a7e27 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1979/ IGT_4686: 741bf7064c467df725c14cc0b3b8b50436f9ee09 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1979/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2018-10-23 15:44 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-10-22 17:05 [igt-dev] [PATCH i-g-t v5 1/2] lib/debugfs: function to open connector debugfs dir Ramalingam C 2018-10-22 17:05 ` [igt-dev] [PATCH i-g-t v5 2/2] kms_content_protection: Add Content Protection test Ramalingam C 2018-10-22 22:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,v5,1/2] lib/debugfs: function to open connector debugfs dir Patchwork 2018-10-23 5:49 ` C, Ramalingam 2018-10-23 13:33 ` Daniel Vetter 2018-10-23 6:24 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2018-10-23 7:29 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2018-10-23 7:42 ` Patchwork 2018-10-23 12:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2018-10-23 12:59 ` Patchwork 2018-10-23 15:44 ` [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