* [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence
@ 2019-08-06 12:36 Chris Wilson
2019-08-06 13:29 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Chris Wilson @ 2019-08-06 12:36 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev, Jon Bloomfield
Sanity test existing persistence and new exciting non-persistent context
behaviour.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Jon Bloomfield <jon.bloomfield@intel.com>
---
lib/i915/gem_context.c | 37 +++++
lib/i915/gem_context.h | 9 ++
lib/ioctl_wrappers.c | 1 +
tests/Makefile.sources | 3 +
tests/i915/gem_ctx_persistence.c | 241 +++++++++++++++++++++++++++++++
tests/meson.build | 1 +
6 files changed, 292 insertions(+)
create mode 100644 tests/i915/gem_ctx_persistence.c
diff --git a/lib/i915/gem_context.c b/lib/i915/gem_context.c
index 83c5df961..1fae5191f 100644
--- a/lib/i915/gem_context.c
+++ b/lib/i915/gem_context.c
@@ -272,6 +272,43 @@ void gem_context_set_priority(int fd, uint32_t ctx_id, int prio)
igt_assert_eq(__gem_context_set_priority(fd, ctx_id, prio), 0);
}
+/**
+ * __gem_context_set_persistence:
+ * @i915: open i915 drm file descriptor
+ * @ctx: i915 context id
+ * @state: desired persistence
+ *
+ * Declare whether this context is allowed to persist after closing until
+ * its requests are complete (persistent=true) or if it should be
+ * immediately reaped on closing and its requests cancelled
+ * (persistent=false).
+ *
+ * Returns: An integer equal to zero for success and negative for failure
+ */
+int __gem_context_set_persistence(int i915, uint32_t ctx, bool state)
+{
+ struct drm_i915_gem_context_param p = {
+ .ctx_id = ctx,
+ .param = I915_CONTEXT_PARAM_PERSISTENCE,
+ .value = state,
+ };
+
+ return __gem_context_set_param(i915, &p);
+}
+
+/**
+ * __gem_context_set_persistence:
+ * @i915: open i915 drm file descriptor
+ * @ctx: i915 context id
+ * @state: desired persistence
+ *
+ * Like __gem_context_set_persistence(), except we assert on failure.
+ */
+void gem_context_set_persistence(int i915, uint32_t ctx, bool state)
+{
+ igt_assert_eq(__gem_context_set_persistence(i915, ctx, state), 0);
+}
+
int
__gem_context_clone(int i915,
uint32_t src, unsigned int share,
diff --git a/lib/i915/gem_context.h b/lib/i915/gem_context.h
index 8043c3401..6745c90c3 100644
--- a/lib/i915/gem_context.h
+++ b/lib/i915/gem_context.h
@@ -24,6 +24,11 @@
#ifndef GEM_CONTEXT_H
#define GEM_CONTEXT_H
+#include <stdbool.h>
+#include <stdint.h>
+
+struct drm_i915_gem_context_param;
+
uint32_t gem_context_create(int fd);
int __gem_context_create(int fd, uint32_t *ctx_id);
void gem_context_destroy(int fd, uint32_t ctx_id);
@@ -58,6 +63,10 @@ int __gem_context_get_param(int fd, struct drm_i915_gem_context_param *p);
int __gem_context_set_priority(int fd, uint32_t ctx, int prio);
void gem_context_set_priority(int fd, uint32_t ctx, int prio);
+#define I915_CONTEXT_PARAM_PERSISTENCE 0xb
+int __gem_context_set_persistence(int i915, uint32_t ctx, bool state);
+void gem_context_set_persistence(int i915, uint32_t ctx, bool state);
+
bool gem_context_has_engine(int fd, uint32_t ctx, uint64_t engine);
#endif /* GEM_CONTEXT_H */
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 280fdd624..628f8b830 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -445,6 +445,7 @@ int gem_wait(int fd, uint32_t handle, int64_t *timeout_ns)
ret = 0;
if (igt_ioctl(fd, DRM_IOCTL_I915_GEM_WAIT, &wait))
ret = -errno;
+ errno = 0;
if (timeout_ns)
*timeout_ns = wait.timeout_ns;
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 41a10c653..f361dc030 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -152,6 +152,9 @@ gem_ctx_isolation_SOURCES = i915/gem_ctx_isolation.c
TESTS_progs += gem_ctx_param
gem_ctx_param_SOURCES = i915/gem_ctx_param.c
+TESTS_progs += gem_ctx_persistence
+gem_ctx_persistence_SOURCES = i915/gem_ctx_ersistence.c
+
TESTS_progs += gem_ctx_shared
gem_ctx_shared_SOURCES = i915/gem_ctx_shared.c
diff --git a/tests/i915/gem_ctx_persistence.c b/tests/i915/gem_ctx_persistence.c
new file mode 100644
index 000000000..ec6add135
--- /dev/null
+++ b/tests/i915/gem_ctx_persistence.c
@@ -0,0 +1,241 @@
+/*
+ * Copyright © 2019 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 <errno.h>
+#include <sys/socket.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include "drmtest.h" /* gem_quiescent_gpu()! */
+#include "i915/gem_context.h"
+#include "i915/gem_submission.h"
+#include "igt_dummyload.h"
+#include "ioctl_wrappers.h" /* gem_wait()! */
+#include "sw_sync.h"
+
+static bool has_persistence(int i915)
+{
+ struct drm_i915_gem_context_param p = {
+ .param = I915_CONTEXT_PARAM_PERSISTENCE,
+ };
+ uint64_t saved;
+
+ if (__gem_context_get_param(i915, &p))
+ return false;
+
+ saved = p.value;
+ p.value = 0;
+ if (__gem_context_set_param(i915, &p))
+ return false;
+
+ p.value = saved;
+ return __gem_context_set_param(i915, &p) == 0;
+}
+
+static void test_idempotent(int i915)
+{
+ struct drm_i915_gem_context_param p = {
+ .param = I915_CONTEXT_PARAM_PERSISTENCE,
+ };
+ int expected;
+
+ gem_context_get_param(i915, &p);
+ expected = !!p.value;
+
+ expected = !expected;
+ p.value = expected;
+ gem_context_set_param(i915, &p);
+ gem_context_get_param(i915, &p);
+ igt_assert_eq(p.value, expected);
+
+ expected = !expected; /* and restores */
+ p.value = expected;
+ gem_context_set_param(i915, &p);
+ gem_context_get_param(i915, &p);
+ igt_assert_eq(p.value, expected);
+}
+
+static void test_persistence(int i915)
+{
+ igt_spin_t *spin;
+ int64_t timeout;
+ uint32_t ctx;
+
+ ctx = gem_context_create(i915);
+ gem_context_set_persistence(i915, ctx, true);
+
+ spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_FENCE_OUT);
+ gem_context_destroy(i915, ctx);
+
+ timeout = NSEC_PER_SEC / 5;
+ igt_assert_eq(gem_wait(i915, spin->handle, &timeout), -ETIME);
+
+ igt_spin_end(spin);
+
+ timeout = NSEC_PER_SEC / 5;
+ igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0);
+ igt_assert_eq(sync_fence_status(spin->out_fence), 1);
+
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+}
+
+static void test_nonpersistent_cleanup(int i915)
+{
+ int64_t timeout = NSEC_PER_SEC / 5;
+ igt_spin_t *spin;
+ uint32_t ctx;
+
+ ctx = gem_context_create(i915);
+ gem_context_set_persistence(i915, ctx, false);
+
+ spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_FENCE_OUT);
+ gem_context_destroy(i915, ctx);
+
+ igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0);
+ igt_assert_eq(sync_fence_status(spin->out_fence), -EIO);
+
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+}
+
+static void test_nonpersistent_hostile(int i915)
+{
+ int64_t timeout = NSEC_PER_SEC / 2;
+ igt_spin_t *spin;
+ uint32_t ctx;
+
+ ctx = gem_context_create(i915);
+ gem_context_set_persistence(i915, ctx, false);
+
+ spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_NO_PREEMPTION);
+ gem_context_destroy(i915, ctx);
+
+ igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0);
+ igt_assert_eq(sync_fence_status(spin->out_fence), -EIO);
+
+ igt_spin_free(i915, spin);
+ gem_quiescent_gpu(i915);
+}
+
+static void sendfd(int socket, int fd)
+{
+ struct iovec io = { .iov_base = (char *)"ABC", .iov_len = 3 };
+ struct msghdr msg = {};
+ char buf[CMSG_SPACE(sizeof(fd))];
+ struct cmsghdr *cmsg;
+
+ msg.msg_iov = &io;
+ msg.msg_iovlen = 1;
+ msg.msg_control = buf;
+ msg.msg_controllen = sizeof(buf);
+
+ cmsg = CMSG_FIRSTHDR(&msg);
+ cmsg->cmsg_level = SOL_SOCKET;
+ cmsg->cmsg_type = SCM_RIGHTS;
+ cmsg->cmsg_len = CMSG_LEN(sizeof(fd));
+
+ *(int *)CMSG_DATA(cmsg) = fd;
+ msg.msg_controllen = cmsg->cmsg_len;
+
+ igt_assert(sendmsg(socket, &msg, 0) != -1);
+}
+
+static int recvfd(int socket)
+{
+ char m_buffer[256], c_buffer[256];
+ struct iovec io = {
+ .iov_base = m_buffer,
+ .iov_len = sizeof(m_buffer),
+ };
+ struct msghdr msg = {
+ .msg_iov = &io,
+ .msg_iovlen = 1,
+ .msg_control = c_buffer,
+ .msg_controllen = sizeof(c_buffer),
+ };
+
+ igt_assert(recvmsg(socket, &msg, 0) != -1);
+ return *(int *)CMSG_DATA(CMSG_FIRSTHDR(&msg));
+}
+
+static void test_nonpersistent_process(int i915)
+{
+ int fence, sv[2];
+
+ igt_require(socketpair(AF_UNIX, SOCK_DGRAM, 0, sv) == 0);
+
+ igt_fork(child, 1) {
+ igt_spin_t *spin;
+
+ i915 = gem_reopen_driver(i915);
+ gem_context_set_persistence(i915, 0, false);
+ spin = igt_spin_new(i915, .flags = IGT_SPIN_FENCE_OUT);
+
+ sendfd(sv[0], spin->out_fence);
+ }
+ igt_waitchildren();
+
+ fence = recvfd(sv[1]);
+ close(sv[0]);
+ close(sv[1]);
+
+ igt_assert_eq(sync_fence_wait(fence, MSEC_PER_SEC / 5), 0);
+ igt_assert_eq(sync_fence_status(fence), -EIO);
+ close(fence);
+
+ gem_quiescent_gpu(i915);
+}
+
+igt_main
+{
+ int i915;
+
+ igt_fixture {
+ i915 = drm_open_driver(DRIVER_INTEL);
+ igt_require_gem(i915);
+
+ igt_require(has_persistence(i915));
+ }
+
+ igt_subtest_group {
+ igt_subtest("idempotent")
+ test_idempotent(i915);
+
+ igt_subtest("persistence")
+ test_persistence(i915);
+
+ igt_subtest("cleanup")
+ test_nonpersistent_cleanup(i915);
+
+ igt_subtest("hostile")
+ test_nonpersistent_hostile(i915);
+
+ igt_subtest("process")
+ test_nonpersistent_process(i915);
+ }
+
+ igt_fixture {
+ close(i915);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index ff3ba6d78..e60acd836 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -118,6 +118,7 @@ i915_progs = [
'gem_ctx_exec',
'gem_ctx_isolation',
'gem_ctx_param',
+ 'gem_ctx_persistence',
'gem_ctx_shared',
'gem_ctx_switch',
'gem_ctx_thrash',
--
2.23.0.rc1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 8+ messages in thread* [igt-dev] ✗ GitLab.Pipeline: warning for Add i915/gem_ctx_persistence 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson @ 2019-08-06 13:29 ` Patchwork 2019-08-06 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-06 13:29 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence URL : https://patchwork.freedesktop.org/series/64770/ State : warning == Summary == Pipeline status: FAILED. See https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/53912 for more details. == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/53912 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add i915/gem_ctx_persistence 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson 2019-08-06 13:29 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork @ 2019-08-06 13:44 ` Patchwork 2019-08-06 15:00 ` [igt-dev] [PATCH i-g-t] " Chris Wilson ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-06 13:44 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence URL : https://patchwork.freedesktop.org/series/64770/ State : success == Summary == CI Bug Log - changes from IGT_5122 -> IGTPW_3321 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/64770/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3321 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic-small-bo: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-icl-u3/igt@gem_mmap@basic-small-bo.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-icl-u3/igt@gem_mmap@basic-small-bo.html * igt@i915_module_load@reload-no-display: - fi-skl-6600u: [PASS][3] -> [INCOMPLETE][4] ([fdo#104108]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-skl-6600u/igt@i915_module_load@reload-no-display.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-skl-6600u/igt@i915_module_load@reload-no-display.html * igt@i915_selftest@live_execlists: - fi-skl-gvtdvm: [PASS][5] -> [DMESG-FAIL][6] ([fdo#111108]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: [PASS][7] -> [DMESG-WARN][8] ([fdo#102614]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@gem_exec_reloc@basic-write-gtt-noreloc: - fi-icl-u3: [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-icl-u3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-icl-u3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_suspend@basic-s4-devices: - fi-blb-e6850: [INCOMPLETE][11] ([fdo#107718]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-blb-e6850/igt@gem_exec_suspend@basic-s4-devices.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: [WARN][13] ([fdo#109380]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [FAIL][15] ([fdo#109483]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html - fi-kbl-7500u: [FAIL][17] ([fdo#109485]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - fi-kbl-7567u: [SKIP][19] ([fdo#109271]) -> [PASS][20] +23 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380 [fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483 [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#111108]: https://bugs.freedesktop.org/show_bug.cgi?id=111108 Participating hosts (53 -> 45) ------------------------------ Missing (8): fi-kbl-soraka fi-ilk-m540 fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * IGT: IGT_5122 -> IGTPW_3321 CI_DRM_6639: 474a7391a134134b2ddba7c7e89fb3bfa7b5a068 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3321: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/ IGT_5122: f250ada4946087af668c6b88b3fa372c98e11ede @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_ctx_persistence@cleanup +igt@gem_ctx_persistence@hostile +igt@gem_ctx_persistence@idempotent +igt@gem_ctx_persistence@persistence +igt@gem_ctx_persistence@process == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson 2019-08-06 13:29 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2019-08-06 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2019-08-06 15:00 ` Chris Wilson 2019-08-06 15:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Add i915/gem_ctx_persistence (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Chris Wilson @ 2019-08-06 15:00 UTC (permalink / raw) To: intel-gfx; +Cc: igt-dev, Jon Bloomfield Sanity test existing persistence and new exciting non-persistent context behaviour. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Michał Winiarski <michal.winiarski@intel.com> Cc: Jon Bloomfield <jon.bloomfield@intel.com> --- A couple of minor quick fixes, ickle@kabylake:~$ sudo ./intel-gpu-tools/build/tests/gem_ctx_persistence IGT-Version: 1.24-ge79c01a6e (x86_64) (Linux: 5.3.0-rc3+ x86_64) Starting subtest: idempotent Subtest idempotent: SUCCESS (0.000s) Starting subtest: persistence Subtest persistence: SUCCESS (0.220s) Starting subtest: cleanup Subtest cleanup: SUCCESS (0.031s) Starting subtest: hostile Subtest hostile: SUCCESS (0.134s) Starting subtest: process Subtest process: SUCCESS (0.023s) [ 40.326837] [IGT] gem_ctx_persistence: executing [ 40.330091] [IGT] gem_ctx_persistence: starting subtest idempotent [ 40.330151] [IGT] gem_ctx_persistence: starting subtest persistence [ 40.550073] [IGT] gem_ctx_persistence: starting subtest cleanup [ 40.581540] [IGT] gem_ctx_persistence: starting subtest hostile [ 40.689072] i915 0000:00:02.0: Resetting rcs0 for preemption time out [ 40.715172] [IGT] gem_ctx_persistence: starting subtest process [ 40.738741] [IGT] gem_ctx_persistence: exiting, ret=0 [ 40.738902] Setting dangerous option reset - tainting kernel --- lib/i915/gem_context.c | 37 +++++ lib/i915/gem_context.h | 9 ++ lib/ioctl_wrappers.c | 1 + tests/Makefile.sources | 3 + tests/i915/gem_ctx_persistence.c | 242 +++++++++++++++++++++++++++++++ tests/meson.build | 1 + 6 files changed, 293 insertions(+) create mode 100644 tests/i915/gem_ctx_persistence.c diff --git a/lib/i915/gem_context.c b/lib/i915/gem_context.c index 83c5df961..1fae5191f 100644 --- a/lib/i915/gem_context.c +++ b/lib/i915/gem_context.c @@ -272,6 +272,43 @@ void gem_context_set_priority(int fd, uint32_t ctx_id, int prio) igt_assert_eq(__gem_context_set_priority(fd, ctx_id, prio), 0); } +/** + * __gem_context_set_persistence: + * @i915: open i915 drm file descriptor + * @ctx: i915 context id + * @state: desired persistence + * + * Declare whether this context is allowed to persist after closing until + * its requests are complete (persistent=true) or if it should be + * immediately reaped on closing and its requests cancelled + * (persistent=false). + * + * Returns: An integer equal to zero for success and negative for failure + */ +int __gem_context_set_persistence(int i915, uint32_t ctx, bool state) +{ + struct drm_i915_gem_context_param p = { + .ctx_id = ctx, + .param = I915_CONTEXT_PARAM_PERSISTENCE, + .value = state, + }; + + return __gem_context_set_param(i915, &p); +} + +/** + * __gem_context_set_persistence: + * @i915: open i915 drm file descriptor + * @ctx: i915 context id + * @state: desired persistence + * + * Like __gem_context_set_persistence(), except we assert on failure. + */ +void gem_context_set_persistence(int i915, uint32_t ctx, bool state) +{ + igt_assert_eq(__gem_context_set_persistence(i915, ctx, state), 0); +} + int __gem_context_clone(int i915, uint32_t src, unsigned int share, diff --git a/lib/i915/gem_context.h b/lib/i915/gem_context.h index 8043c3401..6745c90c3 100644 --- a/lib/i915/gem_context.h +++ b/lib/i915/gem_context.h @@ -24,6 +24,11 @@ #ifndef GEM_CONTEXT_H #define GEM_CONTEXT_H +#include <stdbool.h> +#include <stdint.h> + +struct drm_i915_gem_context_param; + uint32_t gem_context_create(int fd); int __gem_context_create(int fd, uint32_t *ctx_id); void gem_context_destroy(int fd, uint32_t ctx_id); @@ -58,6 +63,10 @@ int __gem_context_get_param(int fd, struct drm_i915_gem_context_param *p); int __gem_context_set_priority(int fd, uint32_t ctx, int prio); void gem_context_set_priority(int fd, uint32_t ctx, int prio); +#define I915_CONTEXT_PARAM_PERSISTENCE 0xb +int __gem_context_set_persistence(int i915, uint32_t ctx, bool state); +void gem_context_set_persistence(int i915, uint32_t ctx, bool state); + bool gem_context_has_engine(int fd, uint32_t ctx, uint64_t engine); #endif /* GEM_CONTEXT_H */ diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c index 280fdd624..628f8b830 100644 --- a/lib/ioctl_wrappers.c +++ b/lib/ioctl_wrappers.c @@ -445,6 +445,7 @@ int gem_wait(int fd, uint32_t handle, int64_t *timeout_ns) ret = 0; if (igt_ioctl(fd, DRM_IOCTL_I915_GEM_WAIT, &wait)) ret = -errno; + errno = 0; if (timeout_ns) *timeout_ns = wait.timeout_ns; diff --git a/tests/Makefile.sources b/tests/Makefile.sources index 250dbd33f..f452ad209 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -151,6 +151,9 @@ gem_ctx_isolation_SOURCES = i915/gem_ctx_isolation.c TESTS_progs += gem_ctx_param gem_ctx_param_SOURCES = i915/gem_ctx_param.c +TESTS_progs += gem_ctx_persistence +gem_ctx_persistence_SOURCES = i915/gem_ctx_ersistence.c + TESTS_progs += gem_ctx_shared gem_ctx_shared_SOURCES = i915/gem_ctx_shared.c diff --git a/tests/i915/gem_ctx_persistence.c b/tests/i915/gem_ctx_persistence.c new file mode 100644 index 000000000..fc52c799f --- /dev/null +++ b/tests/i915/gem_ctx_persistence.c @@ -0,0 +1,242 @@ +/* + * Copyright © 2019 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 <errno.h> +#include <sys/socket.h> +#include <sys/types.h> +#include <unistd.h> + +#include "drmtest.h" /* gem_quiescent_gpu()! */ +#include "i915/gem_context.h" +#include "i915/gem_submission.h" +#include "igt_dummyload.h" +#include "ioctl_wrappers.h" /* gem_wait()! */ +#include "sw_sync.h" + +static bool has_persistence(int i915) +{ + struct drm_i915_gem_context_param p = { + .param = I915_CONTEXT_PARAM_PERSISTENCE, + }; + uint64_t saved; + + if (__gem_context_get_param(i915, &p)) + return false; + + saved = p.value; + p.value = 0; + if (__gem_context_set_param(i915, &p)) + return false; + + p.value = saved; + return __gem_context_set_param(i915, &p) == 0; +} + +static void test_idempotent(int i915) +{ + struct drm_i915_gem_context_param p = { + .param = I915_CONTEXT_PARAM_PERSISTENCE, + }; + int expected; + + gem_context_get_param(i915, &p); + expected = !!p.value; + + expected = !expected; + p.value = expected; + gem_context_set_param(i915, &p); + gem_context_get_param(i915, &p); + igt_assert_eq(p.value, expected); + + expected = !expected; /* and restores */ + p.value = expected; + gem_context_set_param(i915, &p); + gem_context_get_param(i915, &p); + igt_assert_eq(p.value, expected); +} + +static void test_persistence(int i915) +{ + igt_spin_t *spin; + int64_t timeout; + uint32_t ctx; + + ctx = gem_context_create(i915); + gem_context_set_persistence(i915, ctx, true); + + spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_FENCE_OUT); + gem_context_destroy(i915, ctx); + + timeout = NSEC_PER_SEC / 5; + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), -ETIME); + + igt_spin_end(spin); + + timeout = NSEC_PER_SEC / 5; + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0); + igt_assert_eq(sync_fence_status(spin->out_fence), 1); + + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); +} + +static void test_nonpersistent_cleanup(int i915) +{ + int64_t timeout = NSEC_PER_SEC / 5; + igt_spin_t *spin; + uint32_t ctx; + + ctx = gem_context_create(i915); + gem_context_set_persistence(i915, ctx, false); + + spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_FENCE_OUT); + gem_context_destroy(i915, ctx); + + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0); + igt_assert_eq(sync_fence_status(spin->out_fence), -EIO); + + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); +} + +static void test_nonpersistent_hostile(int i915) +{ + int64_t timeout = NSEC_PER_SEC / 2; + igt_spin_t *spin; + uint32_t ctx; + + ctx = gem_context_create(i915); + gem_context_set_persistence(i915, ctx, false); + + spin = igt_spin_new(i915, ctx, .flags = IGT_SPIN_NO_PREEMPTION); + gem_context_destroy(i915, ctx); + + igt_assert_eq(gem_wait(i915, spin->handle, &timeout), 0); + + igt_spin_free(i915, spin); + gem_quiescent_gpu(i915); +} + +static void sendfd(int socket, int fd) +{ + struct iovec io = { .iov_base = (char *)"ABC", .iov_len = 3 }; + struct msghdr msg = {}; + char buf[CMSG_SPACE(sizeof(fd))]; + struct cmsghdr *cmsg; + + msg.msg_iov = &io; + msg.msg_iovlen = 1; + msg.msg_control = buf; + msg.msg_controllen = sizeof(buf); + + cmsg = CMSG_FIRSTHDR(&msg); + cmsg->cmsg_level = SOL_SOCKET; + cmsg->cmsg_type = SCM_RIGHTS; + cmsg->cmsg_len = CMSG_LEN(sizeof(fd)); + + *(int *)CMSG_DATA(cmsg) = fd; + msg.msg_controllen = cmsg->cmsg_len; + + igt_assert(sendmsg(socket, &msg, 0) != -1); +} + +static int recvfd(int socket) +{ + char m_buffer[256], c_buffer[256]; + struct iovec io = { + .iov_base = m_buffer, + .iov_len = sizeof(m_buffer), + }; + struct msghdr msg = { + .msg_iov = &io, + .msg_iovlen = 1, + .msg_control = c_buffer, + .msg_controllen = sizeof(c_buffer), + }; + + igt_assert(recvmsg(socket, &msg, 0) != -1); + return *(int *)CMSG_DATA(CMSG_FIRSTHDR(&msg)); +} + +static void test_nonpersistent_process(int i915) +{ + int fence, sv[2]; + + igt_require(socketpair(AF_UNIX, SOCK_DGRAM, 0, sv) == 0); + + igt_fork(child, 1) { + igt_spin_t *spin; + + i915 = gem_reopen_driver(i915); + gem_context_set_persistence(i915, 0, false); + spin = igt_spin_new(i915, .flags = IGT_SPIN_FENCE_OUT); + + sendfd(sv[0], spin->out_fence); + + igt_list_del(&spin->link); /* prevent autocleanup */ + } + igt_waitchildren(); + + fence = recvfd(sv[1]); + close(sv[0]); + close(sv[1]); + + igt_assert_eq(sync_fence_wait(fence, MSEC_PER_SEC / 5), 0); + igt_assert_eq(sync_fence_status(fence), -EIO); + close(fence); + + gem_quiescent_gpu(i915); +} + +igt_main +{ + int i915; + + igt_fixture { + i915 = drm_open_driver(DRIVER_INTEL); + igt_require_gem(i915); + + igt_require(has_persistence(i915)); + } + + igt_subtest_group { + igt_subtest("idempotent") + test_idempotent(i915); + + igt_subtest("persistence") + test_persistence(i915); + + igt_subtest("cleanup") + test_nonpersistent_cleanup(i915); + + igt_subtest("hostile") + test_nonpersistent_hostile(i915); + + igt_subtest("process") + test_nonpersistent_process(i915); + } + + igt_fixture { + close(i915); + } +} diff --git a/tests/meson.build b/tests/meson.build index 34a74025a..d79e0c977 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -118,6 +118,7 @@ i915_progs = [ 'gem_ctx_exec', 'gem_ctx_isolation', 'gem_ctx_param', + 'gem_ctx_persistence', 'gem_ctx_shared', 'gem_ctx_switch', 'gem_ctx_thrash', -- 2.23.0.rc1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add i915/gem_ctx_persistence (rev2) 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson ` (2 preceding siblings ...) 2019-08-06 15:00 ` [igt-dev] [PATCH i-g-t] " Chris Wilson @ 2019-08-06 15:59 ` Patchwork 2019-08-06 16:10 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-06 15:59 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence (rev2) URL : https://patchwork.freedesktop.org/series/64770/ State : success == Summary == CI Bug Log - changes from CI_DRM_6641 -> IGTPW_3322 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/64770/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_3322 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - fi-icl-u3: [PASS][1] -> [DMESG-WARN][2] ([fdo#107724]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-u3/igt@gem_mmap@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-u3/igt@gem_mmap@basic.html * igt@i915_selftest@live_reset: - fi-icl-u3: [PASS][3] -> [INCOMPLETE][4] ([fdo#107713]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-u3/igt@i915_selftest@live_reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-u3/igt@i915_selftest@live_reset.html * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: [PASS][5] -> [DMESG-WARN][6] ([fdo#102614]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * {igt@i915_selftest@live_gem_contexts}: - {fi-icl-guc}: [INCOMPLETE][7] ([fdo#107713]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-guc/igt@i915_selftest@live_gem_contexts.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-guc/igt@i915_selftest@live_gem_contexts.html * igt@kms_chamelium@hdmi-edid-read: - {fi-icl-u4}: [FAIL][9] ([fdo#111045] / [fdo#111046 ]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-u4/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-fast: - {fi-icl-u4}: [FAIL][11] ([fdo#109485]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-u4/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - {fi-icl-dsi}: [DMESG-WARN][13] ([fdo#106107]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-dsi/igt@kms_pipe_crc_basic@read-crc-pipe-c.html * igt@prime_vgem@basic-fence-read: - fi-icl-u3: [DMESG-WARN][15] ([fdo#107724]) -> [PASS][16] +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/fi-icl-u3/igt@prime_vgem@basic-fence-read.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/fi-icl-u3/igt@prime_vgem@basic-fence-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485 [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045 [fdo#111046 ]: https://bugs.freedesktop.org/show_bug.cgi?id=111046 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 Participating hosts (53 -> 46) ------------------------------ Missing (7): fi-kbl-soraka fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5122 -> IGTPW_3322 CI-20190529: 20190529 CI_DRM_6641: 250780d287e3f46098e39aa0fc8c7a806e996de5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3322: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/ IGT_5122: f250ada4946087af668c6b88b3fa372c98e11ede @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_ctx_persistence@cleanup +igt@gem_ctx_persistence@hostile +igt@gem_ctx_persistence@idempotent +igt@gem_ctx_persistence@persistence +igt@gem_ctx_persistence@process == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Add i915/gem_ctx_persistence (rev2) 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson ` (3 preceding siblings ...) 2019-08-06 15:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Add i915/gem_ctx_persistence (rev2) Patchwork @ 2019-08-06 16:10 ` Patchwork 2019-08-06 23:23 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence Patchwork 2019-08-07 4:05 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence (rev2) Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-06 16:10 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence (rev2) URL : https://patchwork.freedesktop.org/series/64770/ State : warning == Summary == Pipeline status: FAILED. See https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/53992 for more details. == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/53992 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson ` (4 preceding siblings ...) 2019-08-06 16:10 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork @ 2019-08-06 23:23 ` Patchwork 2019-08-07 4:05 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence (rev2) Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-06 23:23 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence URL : https://patchwork.freedesktop.org/series/64770/ State : success == Summary == CI Bug Log - changes from IGT_5122_full -> IGTPW_3321_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/64770/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3321_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_ctx_persistence@process} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb8/igt@gem_ctx_persistence@process.html New tests --------- New tests have been introduced between IGT_5122_full and IGTPW_3321_full: ### New IGT tests (5) ### * igt@gem_ctx_persistence@cleanup: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@hostile: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@idempotent: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@persistence: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@process: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_3321_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_tiled_swapping@non-threaded: - shard-glk: [PASS][2] -> [DMESG-WARN][3] ([fdo#108686]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-glk5/igt@gem_tiled_swapping@non-threaded.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-glk2/igt@gem_tiled_swapping@non-threaded.html - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108686]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl6/igt@gem_tiled_swapping@non-threaded.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl2/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-glk: [PASS][6] -> [INCOMPLETE][7] ([fdo#103359] / [k.org#198133]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-glk2/igt@i915_pm_rpm@gem-execbuf-stress.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][8] -> [DMESG-WARN][9] ([fdo#108566]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl3/igt@i915_suspend@debugfs-reader.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl2/igt@i915_suspend@debugfs-reader.html - shard-kbl: [PASS][10] -> [DMESG-WARN][11] ([fdo#108566]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl2/igt@i915_suspend@debugfs-reader.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl1/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-random: - shard-kbl: [PASS][12] -> [FAIL][13] ([fdo#103232]) +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-random.html * igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque: - shard-apl: [PASS][14] -> [FAIL][15] ([fdo#103232]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl5/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [PASS][16] -> [FAIL][17] ([fdo#105363]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-glk: [PASS][18] -> [FAIL][19] ([fdo#100368]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-iclb: [PASS][20] -> [FAIL][21] ([fdo#103167]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_psr2_su@page_flip: - shard-iclb: [PASS][22] -> [SKIP][23] ([fdo#109642] / [fdo#111068]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb2/igt@kms_psr2_su@page_flip.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb5/igt@kms_psr2_su@page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][24] -> [SKIP][25] ([fdo#109441]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb3/igt@kms_psr@psr2_cursor_render.html * igt@perf_pmu@busy-idle-no-semaphores-vcs0: - shard-iclb: [PASS][26] -> [INCOMPLETE][27] ([fdo#107713]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb8/igt@perf_pmu@busy-idle-no-semaphores-vcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb7/igt@perf_pmu@busy-idle-no-semaphores-vcs0.html #### Possible fixes #### * igt@gem_ctx_isolation@bcs0-s3: - shard-apl: [DMESG-WARN][28] ([fdo#108566]) -> [PASS][29] +6 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl5/igt@gem_ctx_isolation@bcs0-s3.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl3/igt@gem_ctx_isolation@bcs0-s3.html * igt@i915_selftest@live_hangcheck: - shard-iclb: [INCOMPLETE][30] ([fdo#107713] / [fdo#108569]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb1/igt@i915_selftest@live_hangcheck.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb4/igt@i915_selftest@live_hangcheck.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-apl: [FAIL][32] ([fdo#103232]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-kbl: [FAIL][34] ([fdo#103232]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-hsw: [DMESG-FAIL][36] ([fdo#102614]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-hsw5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-hsw5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-kbl: [FAIL][38] ([fdo#103167]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html - shard-apl: [FAIL][40] ([fdo#103167]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-iclb: [FAIL][42] ([fdo#103167]) -> [PASS][43] +5 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_psr@no_drrs: - shard-iclb: [FAIL][44] ([fdo#108341]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb1/igt@kms_psr@no_drrs.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb8/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_sprite_mmap_cpu: - shard-iclb: [SKIP][46] ([fdo#109441]) -> [PASS][47] +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_cpu.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html * igt@kms_setmode@basic: - shard-apl: [FAIL][48] ([fdo#99912]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-apl2/igt@kms_setmode@basic.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-apl7/igt@kms_setmode@basic.html - shard-kbl: [FAIL][50] ([fdo#99912]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl7/igt@kms_setmode@basic.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl4/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][52] ([fdo#108566]) -> [PASS][53] +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5122/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#100368]: https://bugs.freedesktop.org/show_bug.cgi?id=100368 [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [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#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [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 (7 -> 6) ------------------------------ Missing (1): shard-skl Build changes ------------- * IGT: IGT_5122 -> IGTPW_3321 CI_DRM_6639: 474a7391a134134b2ddba7c7e89fb3bfa7b5a068 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3321: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/ IGT_5122: f250ada4946087af668c6b88b3fa372c98e11ede @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3321/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence (rev2) 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson ` (5 preceding siblings ...) 2019-08-06 23:23 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence Patchwork @ 2019-08-07 4:05 ` Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2019-08-07 4:05 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: Add i915/gem_ctx_persistence (rev2) URL : https://patchwork.freedesktop.org/series/64770/ State : success == Summary == CI Bug Log - changes from CI_DRM_6641_full -> IGTPW_3322_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/64770/revisions/2/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3322_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_ctx_persistence@process} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb6/igt@gem_ctx_persistence@process.html New tests --------- New tests have been introduced between CI_DRM_6641_full and IGTPW_3322_full: ### New IGT tests (5) ### * igt@gem_ctx_persistence@cleanup: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@hostile: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@idempotent: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@persistence: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@gem_ctx_persistence@process: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_3322_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_tiled_swapping@non-threaded: - shard-apl: [PASS][2] -> [DMESG-WARN][3] ([fdo#108686]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl3/igt@gem_tiled_swapping@non-threaded.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl6/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([fdo#108566]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl3/igt@gem_workarounds@suspend-resume-context.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl7/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_rpm@i2c: - shard-hsw: [PASS][6] -> [FAIL][7] ([fdo#104097]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-hsw1/igt@i915_pm_rpm@i2c.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-hsw5/igt@i915_pm_rpm@i2c.html * igt@kms_cursor_crc@pipe-a-cursor-size-change: - shard-glk: [PASS][8] -> [FAIL][9] ([fdo#103232]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-glk2/igt@kms_cursor_crc@pipe-a-cursor-size-change.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-glk9/igt@kms_cursor_crc@pipe-a-cursor-size-change.html - shard-apl: [PASS][10] -> [FAIL][11] ([fdo#103232]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-size-change.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl5/igt@kms_cursor_crc@pipe-a-cursor-size-change.html - shard-kbl: [PASS][12] -> [FAIL][13] ([fdo#103232]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-size-change.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-size-change.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][14] -> [INCOMPLETE][15] ([fdo#103540]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-hsw6/igt@kms_flip@flip-vs-suspend.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-hsw2/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][16] -> [FAIL][17] ([fdo#103167]) +6 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][18] -> [SKIP][19] ([fdo#109441]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html * igt@perf_pmu@rc6: - shard-kbl: [PASS][20] -> [SKIP][21] ([fdo#109271]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl7/igt@perf_pmu@rc6.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl1/igt@perf_pmu@rc6.html #### Possible fixes #### * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-iclb: [INCOMPLETE][22] ([fdo#107713] / [fdo#109801]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb7/igt@gem_ppgtt@blt-vs-render-ctx0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb2/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@i915_pm_rpm@system-suspend: - shard-kbl: [INCOMPLETE][24] ([fdo#103665] / [fdo#107807]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl2/igt@i915_pm_rpm@system-suspend.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl1/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][26] ([fdo#108566]) -> [PASS][27] +5 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl5/igt@i915_suspend@sysfs-reader.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl3/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding: - shard-apl: [FAIL][28] ([fdo#103232]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html - shard-kbl: [FAIL][30] ([fdo#103232]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl1/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-128x42-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: [INCOMPLETE][32] ([fdo#103665]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge: - shard-snb: [SKIP][34] ([fdo#109271] / [fdo#109278]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-snb1/igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-snb7/igt@kms_cursor_edge_walk@pipe-b-128x128-top-edge.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-kbl: [FAIL][36] ([fdo#103167]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html - shard-apl: [FAIL][38] ([fdo#103167]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-apl5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-apl5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][40] ([fdo#108566]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: [FAIL][42] ([fdo#103167]) -> [PASS][43] +6 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_plane_lowres@pipe-a-tiling-y: - shard-iclb: [FAIL][44] ([fdo#103166]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-y.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-y.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][46] ([fdo#109642] / [fdo#111068]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb7/igt@kms_psr2_su@frontbuffer.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-iclb: [SKIP][48] ([fdo#109441]) -> [PASS][49] +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-iclb1/igt@kms_psr@psr2_primary_mmap_gtt.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-hang: - shard-snb: [SKIP][50] ([fdo#109271]) -> [PASS][51] +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6641/shard-snb1/igt@kms_vblank@pipe-b-ts-continuation-modeset-hang.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/shard-snb4/igt@kms_vblank@pipe-b-ts-continuation-modeset-hang.html {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#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#104097]: https://bugs.freedesktop.org/show_bug.cgi?id=104097 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107807]: https://bugs.freedesktop.org/show_bug.cgi?id=107807 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#109801]: https://bugs.freedesktop.org/show_bug.cgi?id=109801 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5122 -> IGTPW_3322 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6641: 250780d287e3f46098e39aa0fc8c7a806e996de5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3322: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3322/ IGT_5122: f250ada4946087af668c6b88b3fa372c98e11ede @ 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_3322/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2019-08-07 4:05 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-06 12:36 [igt-dev] [PATCH i-g-t] Add i915/gem_ctx_persistence Chris Wilson 2019-08-06 13:29 ` [igt-dev] ✗ GitLab.Pipeline: warning for " Patchwork 2019-08-06 13:44 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2019-08-06 15:00 ` [igt-dev] [PATCH i-g-t] " Chris Wilson 2019-08-06 15:59 ` [igt-dev] ✓ Fi.CI.BAT: success for Add i915/gem_ctx_persistence (rev2) Patchwork 2019-08-06 16:10 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork 2019-08-06 23:23 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence Patchwork 2019-08-07 4:05 ` [igt-dev] ✓ Fi.CI.IGT: success for Add i915/gem_ctx_persistence (rev2) Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox