* [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test
@ 2023-07-12 7:17 Simon Ser
2023-07-12 7:37 ` Lionel Landwerlin
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Simon Ser @ 2023-07-12 7:17 UTC (permalink / raw)
To: igt-dev
Cc: James Jones, Austin Shafer, Bas Nieuwenhuizen,
Christian König, Faith Ekstrand
This series implements a new test suite for the DRM_IOCTL_SYNCOBJ_EVENTFD
IOCTL introduced in [1].
v2:
- Check for DRM_CAP_SYNCOBJ_TIMELINE instead of DRM_CAP_SYNCOBJ
- Fix syncobj_eventfd availability check: ENOENT is returned when an
IOCTL doesn't exist, so use an error path which returns a different
errno
[1]: https://lore.kernel.org/dri-devel/20230711142803.4054-1-contact@emersion.fr/T/#u
Signed-off-by: Simon Ser <contact@emersion.fr>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: Faith Ekstrand <faith.ekstrand@collabora.com>
Cc: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Cc: Daniel Stone <daniel@fooishbar.org>
Cc: James Jones <jajones@nvidia.com>
Cc: Austin Shafer <ashafer@nvidia.com>
---
include/drm-uapi/drm.h | 22 +++
lib/igt_syncobj.c | 40 +++++
lib/igt_syncobj.h | 4 +
tests/meson.build | 1 +
tests/syncobj_eventfd.c | 344 ++++++++++++++++++++++++++++++++++++++++
5 files changed, 411 insertions(+)
create mode 100644 tests/syncobj_eventfd.c
diff --git a/include/drm-uapi/drm.h b/include/drm-uapi/drm.h
index 5e54c3aa4c3a..7368a533c74b 100644
--- a/include/drm-uapi/drm.h
+++ b/include/drm-uapi/drm.h
@@ -903,6 +903,27 @@ struct drm_syncobj_timeline_wait {
__u32 pad;
};
+/**
+ * struct drm_syncobj_eventfd
+ * @handle: syncobj handle.
+ * @flags: Zero to wait for the point to be signalled, or
+ * &DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE to wait for a fence to be
+ * available for the point.
+ * @point: syncobj timeline point (set to zero for binary syncobjs).
+ * @fd: Existing eventfd to sent events to.
+ * @pad: Must be zero.
+ *
+ * Register an eventfd to be signalled by a syncobj. The eventfd counter will
+ * be incremented by one.
+ */
+struct drm_syncobj_eventfd {
+ __u32 handle;
+ __u32 flags;
+ __u64 point;
+ __s32 fd;
+ __u32 pad;
+};
+
struct drm_syncobj_array {
__u64 handles;
@@ -1089,6 +1110,7 @@ extern "C" {
#define DRM_IOCTL_SYNCOBJ_QUERY DRM_IOWR(0xCB, struct drm_syncobj_timeline_array)
#define DRM_IOCTL_SYNCOBJ_TRANSFER DRM_IOWR(0xCC, struct drm_syncobj_transfer)
#define DRM_IOCTL_SYNCOBJ_TIMELINE_SIGNAL DRM_IOWR(0xCD, struct drm_syncobj_timeline_array)
+#define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCE, struct drm_syncobj_eventfd)
#define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct drm_mode_fb_cmd2)
diff --git a/lib/igt_syncobj.c b/lib/igt_syncobj.c
index a24ed10b7a0e..a53393bd7245 100644
--- a/lib/igt_syncobj.c
+++ b/lib/igt_syncobj.c
@@ -543,3 +543,43 @@ syncobj_timeline_to_timeline(int fd,
timeline_dst, point_dst,
timeline_src, point_src, 0), 0);
}
+
+int
+__syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags,
+ int ev_fd)
+{
+ struct drm_syncobj_eventfd args;
+ int ret;
+
+ args.handle = handle;
+ args.flags = flags;
+ args.point = point;
+ args.fd = ev_fd;
+ args.pad = 0;
+
+ ret = igt_ioctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args);
+ if (ret) {
+ ret = -errno;
+ igt_assume(ret);
+ errno = 0;
+ }
+
+ return ret;
+}
+
+/**
+ * syncobj_eventfd:
+ * @fd: The DRM file descriptor.
+ * @handle: A syncobj handle.
+ * @point: A point on the timeline syncobj, or 0 for binary syncobjs.
+ * @flags: Flags.
+ * @ev_fd: An eventfd.
+ *
+ * Wait for a syncobj with an eventfd.
+ */
+void
+syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags,
+ int ev_fd)
+{
+ igt_assert_eq(__syncobj_eventfd(fd, handle, point, flags, ev_fd), 0);
+}
diff --git a/lib/igt_syncobj.h b/lib/igt_syncobj.h
index e6725671d900..3911696d52f0 100644
--- a/lib/igt_syncobj.h
+++ b/lib/igt_syncobj.h
@@ -65,5 +65,9 @@ void syncobj_timeline_to_timeline(int fd,
uint64_t timeline_src, uint32_t point_src);
void syncobj_timeline_signal(int fd, uint32_t *handles, uint64_t *points,
uint32_t count);
+int __syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags,
+ int ev_fd);
+void syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags,
+ int ev_fd);
#endif /* IGT_SYNCOBJ_H */
diff --git a/tests/meson.build b/tests/meson.build
index d56e4c89daf3..9fc9199e267b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -78,6 +78,7 @@ test_progs = [
'prime_udl',
'prime_vgem',
'syncobj_basic',
+ 'syncobj_eventfd',
'syncobj_wait',
'syncobj_timeline',
'sw_sync',
diff --git a/tests/syncobj_eventfd.c b/tests/syncobj_eventfd.c
new file mode 100644
index 000000000000..95a2a4632114
--- /dev/null
+++ b/tests/syncobj_eventfd.c
@@ -0,0 +1,344 @@
+/*
+ * Copyright © 2023 Simon Ser
+ *
+ * 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 "igt.h"
+#include "sw_sync.h"
+#include "igt_syncobj.h"
+#include <fcntl.h>
+#include <poll.h>
+#include <sys/eventfd.h>
+#include <stdint.h>
+#include "drm.h"
+/**
+ * TEST: syncobj eventfd
+ * Category: Infrastructure
+ * Description: Tests for the drm sync object eventfd API
+ * Feature: synchronization
+ * Functionality: semaphore
+ * Run type: FULL
+ * Sub-category: DRM
+ * Test category: GEM_Legacy
+ */
+
+IGT_TEST_DESCRIPTION("Tests for the drm sync object eventfd API");
+
+static bool
+has_syncobj_eventfd(int fd)
+{
+ uint64_t value;
+ int ret;
+
+ if (drmGetCap(fd, DRM_CAP_SYNCOBJ_TIMELINE, &value))
+ return false;
+ if (!value)
+ return false;
+
+ /* Try waiting with invalid flags should fail with EINVAL */
+ ret = __syncobj_eventfd(fd, 0, 0, 0xdeadbeef, -1);
+ return ret == -EINVAL;
+}
+
+static int
+syncobj_attach_sw_sync(int fd, uint32_t handle, uint64_t point)
+{
+ int timeline, fence;
+ uint32_t syncobj;
+
+ timeline = sw_sync_timeline_create();
+ fence = sw_sync_timeline_create_fence(timeline, 1);
+
+ if (point == 0) {
+ syncobj_import_sync_file(fd, handle, fence);
+ } else {
+ syncobj = syncobj_create(fd, 0);
+
+ syncobj_import_sync_file(fd, syncobj, fence);
+ syncobj_binary_to_timeline(fd, handle, point, syncobj);
+ syncobj_destroy(fd, syncobj);
+ }
+
+ close(fence);
+
+ return timeline;
+}
+
+static int
+ev_fd_read(int ev_fd)
+{
+ uint64_t ev_fd_value;
+ int ret;
+
+ ret = read(ev_fd, &ev_fd_value, sizeof(ev_fd_value));
+ if (ret == -1)
+ return -errno;
+ igt_assert_eq(ret, sizeof(ev_fd_value));
+ return 0;
+}
+
+static void
+ev_fd_poll_in(int ev_fd, bool avail)
+{
+ struct pollfd pollfd;
+ int ret;
+ int timeout_ms;
+
+ /* Wait 5s if we're expecting data, 10ms otherwise */
+ timeout_ms = avail ? 5000 : 10;
+ pollfd.fd = ev_fd;
+ pollfd.events = POLLIN;
+ pollfd.revents = 0;
+ ret = poll(&pollfd, 1, timeout_ms);
+ if (avail) {
+ igt_assert(ret >= 0);
+ igt_assert(pollfd.revents & POLLIN);
+ } else {
+ igt_assert_eq(ret, 0);
+ }
+}
+
+static void
+ev_fd_assert_unsignaled(int ev_fd)
+{
+ /* Poll the eventfd to give the kernel time to signal it, error out if
+ * that happens */
+ ev_fd_poll_in(ev_fd, false);
+ igt_assert_eq(ev_fd_read(ev_fd), -EAGAIN);
+}
+
+static void
+ev_fd_assert_signaled(int ev_fd)
+{
+ ev_fd_poll_in(ev_fd, true);
+ igt_assert_eq(ev_fd_read(ev_fd), 0);
+}
+
+static const char test_bad_flags_desc[] =
+ "Verifies that passing bad flags is rejected";
+static void
+test_bad_flags(int fd)
+{
+ uint32_t flags;
+ uint32_t syncobj;
+ int ev_fd;
+
+ syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
+ flags = 0xdeadbeef;
+ ev_fd = eventfd(0, EFD_NONBLOCK);
+ igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, flags, ev_fd), -EINVAL);
+
+ close(ev_fd);
+ syncobj_destroy(fd, syncobj);
+}
+
+static const char test_illegal_handle_desc[] =
+ "Verifies that passing an invalid syncobj handle is rejected";
+static void
+test_illegal_handle(int fd)
+{
+ int ev_fd;
+
+ ev_fd = eventfd(0, EFD_NONBLOCK);
+ igt_assert_eq(__syncobj_eventfd(fd, 0, 0, 0, ev_fd), -ENOENT);
+
+ close(ev_fd);
+}
+
+static const char test_illegal_eventfd_desc[] =
+ "Verifies that passing an invalid eventfd is rejected";
+static void
+test_illegal_eventfd(int fd)
+{
+ int dev_null;
+ uint32_t syncobj;
+
+ syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
+
+ dev_null = open("/dev/null", O_RDWR);
+ igt_assert(dev_null >= 0);
+
+ igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, 0, dev_null), -EINVAL);
+
+ close(dev_null);
+ syncobj_destroy(fd, syncobj);
+}
+
+static const char test_bad_pad_desc[] =
+ "Verifies that passing a non-zero padding is rejected";
+static void
+test_bad_pad(int fd)
+{
+ struct drm_syncobj_eventfd args;
+ int ret;
+
+ args.handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
+ args.flags = 0;
+ args.point = 0;
+ args.fd = eventfd(0, EFD_NONBLOCK);
+ args.pad = 0xdeadbeef;
+
+ ret = drmIoctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args);
+ igt_assert(ret == -1 && errno == EINVAL);
+}
+
+static const char test_wait_desc[] =
+ "Verifies waiting an already-materialized fence";
+static void
+test_wait(int fd, bool use_timeline)
+{
+ uint32_t syncobj;
+ int timeline, ev_fd_wait, ev_fd_avail;
+ uint64_t point = use_timeline ? 1 : 0;
+
+ syncobj = syncobj_create(fd, 0);
+ timeline = syncobj_attach_sw_sync(fd, syncobj, point);
+ ev_fd_wait = eventfd(0, EFD_NONBLOCK);
+ ev_fd_avail = eventfd(0, EFD_NONBLOCK);
+
+ syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait);
+ syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE,
+ ev_fd_avail);
+
+ ev_fd_assert_unsignaled(ev_fd_wait);
+ ev_fd_assert_signaled(ev_fd_avail);
+
+ sw_sync_timeline_inc(timeline, 1);
+
+ ev_fd_assert_signaled(ev_fd_wait);
+
+ close(ev_fd_wait);
+ close(ev_fd_avail);
+ close(timeline);
+ syncobj_destroy(fd, syncobj);
+}
+
+static const char test_wait_before_signal_desc[] =
+ "Verifies waiting a fence not yet materialized";
+static void
+test_wait_before_signal(int fd, bool use_timeline)
+{
+ uint32_t syncobj;
+ int timeline, ev_fd_wait, ev_fd_avail;
+ uint64_t point = use_timeline ? 1 : 0;
+
+ syncobj = syncobj_create(fd, 0);
+ ev_fd_wait = eventfd(0, EFD_NONBLOCK);
+ ev_fd_avail = eventfd(0, EFD_NONBLOCK);
+
+ syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait);
+ syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE,
+ ev_fd_avail);
+
+ ev_fd_assert_unsignaled(ev_fd_wait);
+ ev_fd_assert_unsignaled(ev_fd_avail);
+
+ timeline = syncobj_attach_sw_sync(fd, syncobj, point);
+
+ ev_fd_assert_unsignaled(ev_fd_wait);
+ ev_fd_assert_signaled(ev_fd_avail);
+
+ sw_sync_timeline_inc(timeline, 1);
+
+ ev_fd_assert_signaled(ev_fd_wait);
+
+ close(ev_fd_wait);
+ close(ev_fd_avail);
+ close(timeline);
+ syncobj_destroy(fd, syncobj);
+}
+
+static const char test_wait_signaled_desc[] =
+ "Verifies waiting an already-signaled fence";
+static void
+test_wait_signaled(int fd, bool use_timeline)
+{
+ uint32_t syncobj;
+ int timeline, ev_fd_wait, ev_fd_avail;
+ uint64_t point = use_timeline ? 1 : 0;
+
+ syncobj = syncobj_create(fd, 0);
+ ev_fd_wait = eventfd(0, EFD_NONBLOCK);
+ ev_fd_avail = eventfd(0, EFD_NONBLOCK);
+
+ timeline = syncobj_attach_sw_sync(fd, syncobj, point);
+ sw_sync_timeline_inc(timeline, 1);
+
+ syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait);
+ syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE,
+ ev_fd_avail);
+
+ ev_fd_assert_signaled(ev_fd_wait);
+ ev_fd_assert_signaled(ev_fd_avail);
+
+ close(ev_fd_wait);
+ close(ev_fd_avail);
+ close(timeline);
+ syncobj_destroy(fd, syncobj);
+}
+
+igt_main
+{
+ int fd = -1, i;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_ANY);
+ igt_require(has_syncobj_eventfd(fd));
+ igt_require_sw_sync();
+ }
+
+ igt_describe(test_bad_flags_desc);
+ igt_subtest("invalid-bad-flags")
+ test_bad_flags(fd);
+
+ igt_describe(test_illegal_handle_desc);
+ igt_subtest("invalid-illegal-handle")
+ test_illegal_handle(fd);
+
+ igt_describe(test_illegal_eventfd_desc);
+ igt_subtest("invalid-illegal-eventfd")
+ test_illegal_eventfd(fd);
+
+ igt_describe(test_bad_pad_desc);
+ igt_subtest("invalid-bad-pad")
+ test_bad_pad(fd);
+
+ for (i = 0; i < 2; i++) {
+ bool use_timeline = i == 1;
+ const char *kind = use_timeline ? "timeline" : "binary";
+
+ igt_describe(test_wait_desc);
+ igt_subtest_f("%s-wait", kind)
+ test_wait(fd, use_timeline);
+
+ igt_describe(test_wait_before_signal_desc);
+ igt_subtest_f("%s-wait-before-signal", kind)
+ test_wait_before_signal(fd, use_timeline);
+
+ igt_describe(test_wait_signaled_desc);
+ igt_subtest_f("%s-wait-signaled", kind)
+ test_wait_signaled(fd, use_timeline);
+ }
+
+ igt_fixture {
+ drm_close_driver(fd);
+ }
+}
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser @ 2023-07-12 7:37 ` Lionel Landwerlin 2023-07-12 7:45 ` Simon Ser 2023-07-12 8:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/syncobj_eventfd: new test (rev2) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Lionel Landwerlin @ 2023-07-12 7:37 UTC (permalink / raw) To: Simon Ser, igt-dev Cc: James Jones, Austin Shafer, Bas Nieuwenhuizen, Christian König, Faith Ekstrand On 12/07/2023 10:17, Simon Ser wrote: > This series implements a new test suite for the DRM_IOCTL_SYNCOBJ_EVENTFD > IOCTL introduced in [1]. > > v2: > - Check for DRM_CAP_SYNCOBJ_TIMELINE instead of DRM_CAP_SYNCOBJ > - Fix syncobj_eventfd availability check: ENOENT is returned when an > IOCTL doesn't exist, so use an error path which returns a different > errno > > [1]: https://lore.kernel.org/dri-devel/20230711142803.4054-1-contact@emersion.fr/T/#u > > Signed-off-by: Simon Ser <contact@emersion.fr> > Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com> > Cc: Christian König <christian.koenig@amd.com> > Cc: Faith Ekstrand <faith.ekstrand@collabora.com> > Cc: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> > Cc: Daniel Stone <daniel@fooishbar.org> > Cc: James Jones <jajones@nvidia.com> > Cc: Austin Shafer <ashafer@nvidia.com> These tests look correct to me. Are you not planning on testing/supporting DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT and DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL ? Thanks, -Lionel > --- > include/drm-uapi/drm.h | 22 +++ > lib/igt_syncobj.c | 40 +++++ > lib/igt_syncobj.h | 4 + > tests/meson.build | 1 + > tests/syncobj_eventfd.c | 344 ++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 411 insertions(+) > create mode 100644 tests/syncobj_eventfd.c > > diff --git a/include/drm-uapi/drm.h b/include/drm-uapi/drm.h > index 5e54c3aa4c3a..7368a533c74b 100644 > --- a/include/drm-uapi/drm.h > +++ b/include/drm-uapi/drm.h > @@ -903,6 +903,27 @@ struct drm_syncobj_timeline_wait { > __u32 pad; > }; > > +/** > + * struct drm_syncobj_eventfd > + * @handle: syncobj handle. > + * @flags: Zero to wait for the point to be signalled, or > + * &DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE to wait for a fence to be > + * available for the point. > + * @point: syncobj timeline point (set to zero for binary syncobjs). > + * @fd: Existing eventfd to sent events to. > + * @pad: Must be zero. > + * > + * Register an eventfd to be signalled by a syncobj. The eventfd counter will > + * be incremented by one. > + */ > +struct drm_syncobj_eventfd { > + __u32 handle; > + __u32 flags; > + __u64 point; > + __s32 fd; > + __u32 pad; > +}; > + > > struct drm_syncobj_array { > __u64 handles; > @@ -1089,6 +1110,7 @@ extern "C" { > #define DRM_IOCTL_SYNCOBJ_QUERY DRM_IOWR(0xCB, struct drm_syncobj_timeline_array) > #define DRM_IOCTL_SYNCOBJ_TRANSFER DRM_IOWR(0xCC, struct drm_syncobj_transfer) > #define DRM_IOCTL_SYNCOBJ_TIMELINE_SIGNAL DRM_IOWR(0xCD, struct drm_syncobj_timeline_array) > +#define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCE, struct drm_syncobj_eventfd) > > #define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct drm_mode_fb_cmd2) > > diff --git a/lib/igt_syncobj.c b/lib/igt_syncobj.c > index a24ed10b7a0e..a53393bd7245 100644 > --- a/lib/igt_syncobj.c > +++ b/lib/igt_syncobj.c > @@ -543,3 +543,43 @@ syncobj_timeline_to_timeline(int fd, > timeline_dst, point_dst, > timeline_src, point_src, 0), 0); > } > + > +int > +__syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd) > +{ > + struct drm_syncobj_eventfd args; > + int ret; > + > + args.handle = handle; > + args.flags = flags; > + args.point = point; > + args.fd = ev_fd; > + args.pad = 0; > + > + ret = igt_ioctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); > + if (ret) { > + ret = -errno; > + igt_assume(ret); > + errno = 0; > + } > + > + return ret; > +} > + > +/** > + * syncobj_eventfd: > + * @fd: The DRM file descriptor. > + * @handle: A syncobj handle. > + * @point: A point on the timeline syncobj, or 0 for binary syncobjs. > + * @flags: Flags. > + * @ev_fd: An eventfd. > + * > + * Wait for a syncobj with an eventfd. > + */ > +void > +syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd) > +{ > + igt_assert_eq(__syncobj_eventfd(fd, handle, point, flags, ev_fd), 0); > +} > diff --git a/lib/igt_syncobj.h b/lib/igt_syncobj.h > index e6725671d900..3911696d52f0 100644 > --- a/lib/igt_syncobj.h > +++ b/lib/igt_syncobj.h > @@ -65,5 +65,9 @@ void syncobj_timeline_to_timeline(int fd, > uint64_t timeline_src, uint32_t point_src); > void syncobj_timeline_signal(int fd, uint32_t *handles, uint64_t *points, > uint32_t count); > +int __syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd); > +void syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd); > > #endif /* IGT_SYNCOBJ_H */ > diff --git a/tests/meson.build b/tests/meson.build > index d56e4c89daf3..9fc9199e267b 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -78,6 +78,7 @@ test_progs = [ > 'prime_udl', > 'prime_vgem', > 'syncobj_basic', > + 'syncobj_eventfd', > 'syncobj_wait', > 'syncobj_timeline', > 'sw_sync', > diff --git a/tests/syncobj_eventfd.c b/tests/syncobj_eventfd.c > new file mode 100644 > index 000000000000..95a2a4632114 > --- /dev/null > +++ b/tests/syncobj_eventfd.c > @@ -0,0 +1,344 @@ > +/* > + * Copyright © 2023 Simon Ser > + * > + * 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 "igt.h" > +#include "sw_sync.h" > +#include "igt_syncobj.h" > +#include <fcntl.h> > +#include <poll.h> > +#include <sys/eventfd.h> > +#include <stdint.h> > +#include "drm.h" > +/** > + * TEST: syncobj eventfd > + * Category: Infrastructure > + * Description: Tests for the drm sync object eventfd API > + * Feature: synchronization > + * Functionality: semaphore > + * Run type: FULL > + * Sub-category: DRM > + * Test category: GEM_Legacy > + */ > + > +IGT_TEST_DESCRIPTION("Tests for the drm sync object eventfd API"); > + > +static bool > +has_syncobj_eventfd(int fd) > +{ > + uint64_t value; > + int ret; > + > + if (drmGetCap(fd, DRM_CAP_SYNCOBJ_TIMELINE, &value)) > + return false; > + if (!value) > + return false; > + > + /* Try waiting with invalid flags should fail with EINVAL */ > + ret = __syncobj_eventfd(fd, 0, 0, 0xdeadbeef, -1); > + return ret == -EINVAL; > +} > + > +static int > +syncobj_attach_sw_sync(int fd, uint32_t handle, uint64_t point) > +{ > + int timeline, fence; > + uint32_t syncobj; > + > + timeline = sw_sync_timeline_create(); > + fence = sw_sync_timeline_create_fence(timeline, 1); > + > + if (point == 0) { > + syncobj_import_sync_file(fd, handle, fence); > + } else { > + syncobj = syncobj_create(fd, 0); > + > + syncobj_import_sync_file(fd, syncobj, fence); > + syncobj_binary_to_timeline(fd, handle, point, syncobj); > + syncobj_destroy(fd, syncobj); > + } > + > + close(fence); > + > + return timeline; > +} > + > +static int > +ev_fd_read(int ev_fd) > +{ > + uint64_t ev_fd_value; > + int ret; > + > + ret = read(ev_fd, &ev_fd_value, sizeof(ev_fd_value)); > + if (ret == -1) > + return -errno; > + igt_assert_eq(ret, sizeof(ev_fd_value)); > + return 0; > +} > + > +static void > +ev_fd_poll_in(int ev_fd, bool avail) > +{ > + struct pollfd pollfd; > + int ret; > + int timeout_ms; > + > + /* Wait 5s if we're expecting data, 10ms otherwise */ > + timeout_ms = avail ? 5000 : 10; > + pollfd.fd = ev_fd; > + pollfd.events = POLLIN; > + pollfd.revents = 0; > + ret = poll(&pollfd, 1, timeout_ms); > + if (avail) { > + igt_assert(ret >= 0); > + igt_assert(pollfd.revents & POLLIN); > + } else { > + igt_assert_eq(ret, 0); > + } > +} > + > +static void > +ev_fd_assert_unsignaled(int ev_fd) > +{ > + /* Poll the eventfd to give the kernel time to signal it, error out if > + * that happens */ > + ev_fd_poll_in(ev_fd, false); > + igt_assert_eq(ev_fd_read(ev_fd), -EAGAIN); > +} > + > +static void > +ev_fd_assert_signaled(int ev_fd) > +{ > + ev_fd_poll_in(ev_fd, true); > + igt_assert_eq(ev_fd_read(ev_fd), 0); > +} > + > +static const char test_bad_flags_desc[] = > + "Verifies that passing bad flags is rejected"; > +static void > +test_bad_flags(int fd) > +{ > + uint32_t flags; > + uint32_t syncobj; > + int ev_fd; > + > + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + flags = 0xdeadbeef; > + ev_fd = eventfd(0, EFD_NONBLOCK); > + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, flags, ev_fd), -EINVAL); > + > + close(ev_fd); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_illegal_handle_desc[] = > + "Verifies that passing an invalid syncobj handle is rejected"; > +static void > +test_illegal_handle(int fd) > +{ > + int ev_fd; > + > + ev_fd = eventfd(0, EFD_NONBLOCK); > + igt_assert_eq(__syncobj_eventfd(fd, 0, 0, 0, ev_fd), -ENOENT); > + > + close(ev_fd); > +} > + > +static const char test_illegal_eventfd_desc[] = > + "Verifies that passing an invalid eventfd is rejected"; > +static void > +test_illegal_eventfd(int fd) > +{ > + int dev_null; > + uint32_t syncobj; > + > + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + > + dev_null = open("/dev/null", O_RDWR); > + igt_assert(dev_null >= 0); > + > + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, 0, dev_null), -EINVAL); > + > + close(dev_null); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_bad_pad_desc[] = > + "Verifies that passing a non-zero padding is rejected"; > +static void > +test_bad_pad(int fd) > +{ > + struct drm_syncobj_eventfd args; > + int ret; > + > + args.handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + args.flags = 0; > + args.point = 0; > + args.fd = eventfd(0, EFD_NONBLOCK); > + args.pad = 0xdeadbeef; > + > + ret = drmIoctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); > + igt_assert(ret == -1 && errno == EINVAL); > +} > + > +static const char test_wait_desc[] = > + "Verifies waiting an already-materialized fence"; > +static void > +test_wait(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + sw_sync_timeline_inc(timeline, 1); > + > + ev_fd_assert_signaled(ev_fd_wait); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_wait_before_signal_desc[] = > + "Verifies waiting a fence not yet materialized"; > +static void > +test_wait_before_signal(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_unsignaled(ev_fd_avail); > + > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + sw_sync_timeline_inc(timeline, 1); > + > + ev_fd_assert_signaled(ev_fd_wait); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_wait_signaled_desc[] = > + "Verifies waiting an already-signaled fence"; > +static void > +test_wait_signaled(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + sw_sync_timeline_inc(timeline, 1); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_signaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +igt_main > +{ > + int fd = -1, i; > + > + igt_fixture { > + fd = drm_open_driver(DRIVER_ANY); > + igt_require(has_syncobj_eventfd(fd)); > + igt_require_sw_sync(); > + } > + > + igt_describe(test_bad_flags_desc); > + igt_subtest("invalid-bad-flags") > + test_bad_flags(fd); > + > + igt_describe(test_illegal_handle_desc); > + igt_subtest("invalid-illegal-handle") > + test_illegal_handle(fd); > + > + igt_describe(test_illegal_eventfd_desc); > + igt_subtest("invalid-illegal-eventfd") > + test_illegal_eventfd(fd); > + > + igt_describe(test_bad_pad_desc); > + igt_subtest("invalid-bad-pad") > + test_bad_pad(fd); > + > + for (i = 0; i < 2; i++) { > + bool use_timeline = i == 1; > + const char *kind = use_timeline ? "timeline" : "binary"; > + > + igt_describe(test_wait_desc); > + igt_subtest_f("%s-wait", kind) > + test_wait(fd, use_timeline); > + > + igt_describe(test_wait_before_signal_desc); > + igt_subtest_f("%s-wait-before-signal", kind) > + test_wait_before_signal(fd, use_timeline); > + > + igt_describe(test_wait_signaled_desc); > + igt_subtest_f("%s-wait-signaled", kind) > + test_wait_signaled(fd, use_timeline); > + } > + > + igt_fixture { > + drm_close_driver(fd); > + } > +} ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-12 7:37 ` Lionel Landwerlin @ 2023-07-12 7:45 ` Simon Ser 2023-07-12 11:38 ` Lionel Landwerlin 0 siblings, 1 reply; 10+ messages in thread From: Simon Ser @ 2023-07-12 7:45 UTC (permalink / raw) To: Lionel Landwerlin Cc: James Jones, igt-dev, Austin Shafer, Bas Nieuwenhuizen, Christian König, Faith Ekstrand On Wednesday, July 12th, 2023 at 09:37, Lionel Landwerlin <lionel.g.landwerlin@intel.com> wrote: > These tests look correct to me. Thanks for having a look! > Are you not planning on testing/supporting > DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT and DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL ? DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT is implied: the IOCTL will never fail because a fence hasn't materialized. There is no use-case for this flag: if user-space wants this behavior they can try to extract a sync_file (which will fail if it hasn't materialized yet) and then poll that sync_file. DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL doesn't make sense for this IOCTL because only a single syncobj is passed in. Simon ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-12 7:45 ` Simon Ser @ 2023-07-12 11:38 ` Lionel Landwerlin 0 siblings, 0 replies; 10+ messages in thread From: Lionel Landwerlin @ 2023-07-12 11:38 UTC (permalink / raw) To: Simon Ser Cc: James Jones, igt-dev, Austin Shafer, Bas Nieuwenhuizen, Christian König, Faith Ekstrand On 12/07/2023 10:45, Simon Ser wrote: > On Wednesday, July 12th, 2023 at 09:37, Lionel Landwerlin <lionel.g.landwerlin@intel.com> wrote: > >> These tests look correct to me. > Thanks for having a look! > >> Are you not planning on testing/supporting >> DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT and DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL ? > DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT is implied: the IOCTL will never > fail because a fence hasn't materialized. There is no use-case for this > flag: if user-space wants this behavior they can try to extract a > sync_file (which will fail if it hasn't materialized yet) and then poll > that sync_file. > > DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL doesn't make sense for this IOCTL > because only a single syncobj is passed in. > > Simon Thanks for clarifying. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/syncobj_eventfd: new test (rev2) 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser 2023-07-12 7:37 ` Lionel Landwerlin @ 2023-07-12 8:03 ` Patchwork 2023-07-12 8:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-12 8:03 UTC (permalink / raw) To: Simon Ser; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8295 bytes --] == Series Details == Series: tests/syncobj_eventfd: new test (rev2) URL : https://patchwork.freedesktop.org/series/120551/ State : success == Summary == CI Bug Log - changes from CI_DRM_13372 -> IGTPW_9389 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-apl-guc fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9389 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][1] ([i915#7077] / [i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_pm_rpm@basic-pci-d3-state: - bat-dg1-7: [PASS][2] -> [FAIL][3] ([i915#7691]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-dg1-7/igt@i915_pm_rpm@basic-pci-d3-state.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-dg1-7/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#8497]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-8/igt@i915_selftest@live@requests.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-mtlp-6: [PASS][6] -> [ABORT][7] ([i915#7982]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-6/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][8] -> [DMESG-WARN][9] ([i915#6367]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rpls-2/igt@i915_selftest@live@slpc.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rpls-2/igt@i915_selftest@live@slpc.html - bat-mtlp-8: [PASS][10] -> [DMESG-WARN][11] ([i915#6367]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-8/igt@i915_selftest@live@slpc.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-mtlp-8/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][12] ([i915#6367]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][13] ([i915#6687] / [i915#7978] / [i915#8668]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#1845] / [i915#5354]) +3 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][15] ([i915#1072]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_pm_rpm@basic-rte: - fi-tgl-1115g4: [FAIL][17] ([i915#7940]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html - fi-cfl-8700k: [FAIL][19] ([i915#7940]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html - fi-kbl-guc: [FAIL][21] ([i915#8843]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-rkl-11600: [FAIL][23] ([i915#7940]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][25] ([i915#7059]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][27] ([i915#4983] / [i915#7461] / [i915#7981] / [i915#8347] / [i915#8384]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rpls-1/igt@i915_selftest@live@reset.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][29] ([i915#8442] / [i915#8668]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7380 -> IGTPW_9389 CI-20190529: 20190529 CI_DRM_13372: 01c4678ab6c623c621a1dea438133e39711291d4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9389: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html IGT_7380: 8e65f12de2fd52c05dc48fdbcb8cfe86f6de1a75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@syncobj_eventfd@binary-wait +igt@syncobj_eventfd@binary-wait-before-signal +igt@syncobj_eventfd@binary-wait-signaled +igt@syncobj_eventfd@invalid-bad-flags +igt@syncobj_eventfd@invalid-bad-pad +igt@syncobj_eventfd@invalid-illegal-eventfd +igt@syncobj_eventfd@invalid-illegal-handle +igt@syncobj_eventfd@timeline-wait +igt@syncobj_eventfd@timeline-wait-before-signal +igt@syncobj_eventfd@timeline-wait-signaled == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html [-- Attachment #2: Type: text/html, Size: 9724 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for tests/syncobj_eventfd: new test (rev2) 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser 2023-07-12 7:37 ` Lionel Landwerlin 2023-07-12 8:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/syncobj_eventfd: new test (rev2) Patchwork @ 2023-07-12 8:40 ` Patchwork 2023-07-12 9:11 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-07-12 11:48 ` [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Christian König 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-12 8:40 UTC (permalink / raw) To: Simon Ser; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 336 bytes --] == Series Details == Series: tests/syncobj_eventfd: new test (rev2) URL : https://patchwork.freedesktop.org/series/120551/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9389](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9389/index.html) [-- Attachment #2: Type: text/html, Size: 852 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/syncobj_eventfd: new test (rev2) 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser ` (2 preceding siblings ...) 2023-07-12 8:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-07-12 9:11 ` Patchwork 2023-07-12 11:48 ` [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Christian König 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-07-12 9:11 UTC (permalink / raw) To: Simon Ser; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83224 bytes --] == Series Details == Series: tests/syncobj_eventfd: new test (rev2) URL : https://patchwork.freedesktop.org/series/120551/ State : success == Summary == CI Bug Log - changes from CI_DRM_13372_full -> IGTPW_9389_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-rkl0 Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9389_full: ### IGT changes ### #### Possible regressions #### * {igt@syncobj_eventfd@binary-wait} (NEW): - shard-tglu: NOTRUN -> [SKIP][1] +8 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@syncobj_eventfd@binary-wait.html * {igt@syncobj_eventfd@timeline-wait} (NEW): - shard-mtlp: NOTRUN -> [SKIP][2] +8 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@syncobj_eventfd@timeline-wait.html * {igt@syncobj_eventfd@timeline-wait-before-signal} (NEW): - shard-dg2: NOTRUN -> [SKIP][3] +8 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@syncobj_eventfd@timeline-wait-before-signal.html - shard-rkl: NOTRUN -> [SKIP][4] +9 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@syncobj_eventfd@timeline-wait-before-signal.html - {shard-dg1}: NOTRUN -> [SKIP][5] +9 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-16/igt@syncobj_eventfd@timeline-wait-before-signal.html New tests --------- New tests have been introduced between CI_DRM_13372_full and IGTPW_9389_full: ### New IGT tests (44) ### * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@absolute-wf_vblank-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-rmfb-interruptible@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-rmfb-interruptible@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-rmfb-interruptible@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@hdmi-a-4-pipe-a: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@hdmi-a-4-pipe-b: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@hdmi-a-4-pipe-c: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_invalid_mode@bad-hsync-start@hdmi-a-4-pipe-d: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@binary-wait: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@binary-wait-before-signal: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@binary-wait-signaled: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@invalid-bad-flags: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@invalid-bad-pad: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@invalid-illegal-eventfd: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@invalid-illegal-handle: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@timeline-wait: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@timeline-wait-before-signal: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@syncobj_eventfd@timeline-wait-signaled: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9389_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +11 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@drm_fdinfo@busy-hang@bcs0.html * igt@feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#4854]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@feature_discovery@chamelium.html * igt@gem_barrier_race@remote-request@rcs0: - shard-dg2: NOTRUN -> [DMESG-WARN][11] ([i915#8224]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@gem_barrier_race@remote-request@rcs0.html - shard-mtlp: [PASS][12] -> [ABORT][13] ([i915#6333] / [i915#8234]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-8/igt@gem_barrier_race@remote-request@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-3/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#5325]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][19] -> [FAIL][20] ([i915#6268]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][21] ([fdo#109314]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html - shard-dg2: NOTRUN -> [SKIP][22] ([fdo#109314]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][23] ([fdo#109314]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [PASS][27] -> [FAIL][28] ([i915#6032]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-3/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4473] / [i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@gem_exec_fair@basic-none.html - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][35] ([fdo#112283]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +4 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@deep@vcs0: - shard-mtlp: [PASS][38] -> [FAIL][39] ([i915#8545]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@gem_exec_schedule@deep@vcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-2/igt@gem_exec_schedule@deep@vcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [PASS][40] -> [FAIL][41] ([i915#7327]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@vcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_suspend@basic-s3@smem: - shard-apl: [PASS][42] -> [ABORT][43] ([i915#180] / [i915#8213]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl2/igt@gem_exec_suspend@basic-s3@smem.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl4/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@massive: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl7/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][48] -> [TIMEOUT][49] ([i915#5493]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@gem_media_vme.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +4 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +2 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-apl: NOTRUN -> [SKIP][59] ([fdo#109271]) +31 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-3/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_tiled_fence_blits@basic: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][67] -> [ABORT][68] ([i915#180]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl2/igt@gem_workarounds@suspend-resume.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl1/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_linear_blits: - shard-tglu: NOTRUN -> [SKIP][69] ([fdo#109289]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-allowed: - shard-mtlp: NOTRUN -> [SKIP][70] ([fdo#109289]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-2/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@bb-large: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@gen9_exec_parse@bb-large.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#6227]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#6227]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#6227]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][77] -> [ABORT][78] ([i915#8489] / [i915#8668]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#658]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][80] -> [SKIP][81] ([fdo#109271]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl4/igt@i915_pm_dc@dc9-dpms.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1937]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][83] ([i915#8230]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@cursor-dpms: - shard-tglu: [PASS][84] -> [FAIL][85] ([i915#7940]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-9/igt@i915_pm_rpm@cursor-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-9/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111644] / [i915#1397]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][87] -> [SKIP][88] ([i915#1397]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][89] -> [SKIP][90] ([i915#1397]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4215] / [i915#5190]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#2521]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#8502]) +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-dp-2: - shard-dg2: NOTRUN -> [FAIL][96] ([i915#8247]) +3 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-apl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#1769]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][98] ([fdo#111614]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][99] ([fdo#111615] / [i915#5286]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][101] -> [FAIL][102] ([i915#5138]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111614]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#111614] / [i915#3638]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [FAIL][105] ([i915#3743]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#3743]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5190]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#110723]) +1 similar issue [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +9 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6187]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3886] / [i915#6095]) +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5354] / [i915#6095]) +4 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3886] / [i915#5354] / [i915#6095]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-2/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-4/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6095]) +10 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#5354] / [i915#6095]) +6 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-6/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5354]) +26 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354]) +7 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +4 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3689] / [i915#3886] / [i915#5354]) +4 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][125] ([fdo#109271] / [i915#3886]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354]) +16 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4087]) +3 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu: NOTRUN -> [SKIP][129] ([fdo#111827]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#7828]) +4 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8063]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][134] ([i915#7173]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7118]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-2/igt@kms_content_protection@uevent.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#7116] / [i915#7118]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-10/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3359]) +3 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][139] ([fdo#109279] / [i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][140] ([fdo#109279] / [i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3359]) +1 similar issue [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3359]) +1 similar issue [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [PASS][143] -> [ABORT][144] ([i915#5122] / [i915#5251]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#109274]) +2 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html - shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111825]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767] / [i915#5354]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111767] / [fdo#111825]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-tglu: NOTRUN -> [SKIP][150] ([fdo#109274] / [fdo#111767]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][151] -> [FAIL][152] ([i915#2346]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][153] -> [FAIL][154] ([i915#2346]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3804]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#1257]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3469]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3955]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3469]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4881]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274]) +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109274] / [i915#3637]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [PASS][165] -> [FAIL][166] ([i915#79]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][167] ([i915#8841]) +5 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#2672]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#2587] / [i915#2672]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +2 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5274]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5274]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][174] -> [FAIL][175] ([i915#6880]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8708]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +4 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3458]) +6 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +12 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825] / [i915#1825]) +8 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109280]) +11 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][182] ([fdo#109271]) +89 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-stridechange: - shard-tglu: NOTRUN -> [SKIP][183] ([fdo#110189]) +6 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#1825]) +6 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228]) +1 similar issue [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-dg2: NOTRUN -> [SKIP][188] ([fdo#109289]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#5176]) +3 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#5176]) +5 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5176]) +7 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4 (NEW): - {shard-dg1}: NOTRUN -> [SKIP][192] ([i915#5176]) +3 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5235]) +7 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235]) +15 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#5235]) +3 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][196] ([fdo#109271] / [i915#658]) +1 similar issue [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109642] / [fdo#111068] / [i915#658]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#4348]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@primary_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#1072]) +4 similar issues [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_psr@primary_mmap_cpu.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#1072]) +2 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-2/igt@kms_psr@primary_mmap_cpu.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4235]) +1 similar issue [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#4235]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +1 similar issue [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) +1 similar issue [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8623]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-c-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#4070] / [i915#6768]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@kms_vblank@pipe-c-query-forked-busy.html * igt@kms_vblank@pipe-d-wait-idle: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4070] / [i915#533] / [i915#6768]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2437]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [PASS][209] -> [ABORT][210] ([i915#5213] / [i915#7941]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk2/igt@perf@stress-open-close@0-rcs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk4/igt@perf@stress-open-close@0-rcs0.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg2: [PASS][211] -> [FAIL][212] ([i915#4349]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-12/igt@perf_pmu@busy-double-start@rcs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8807]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-1/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8516]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#8516]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3291] / [i915#3708]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@prime_vgem@basic-read.html * {igt@syncobj_eventfd@invalid-illegal-eventfd} (NEW): - shard-glk: NOTRUN -> [SKIP][217] ([fdo#109271]) +8 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk2/igt@syncobj_eventfd@invalid-illegal-eventfd.html * igt@sysfs_heartbeat_interval@nopreempt@bcs0: - shard-mtlp: [PASS][218] -> [FAIL][219] ([i915#6015]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@bcs0.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2575]) +2 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2575]) +6 similar issues [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-5/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109315] / [i915#2575]) +3 similar issues [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][223] ([fdo#109315]) +2 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#7711]) +6 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#7711]) +2 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#2575]) +3 similar issues [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#7711]) +2 similar issues [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][228] ([i915#7742]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [ABORT][230] ([i915#7461] / [i915#8190]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][232] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-10/igt@gem_eio@hibernate.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-5/igt@gem_eio@hibernate.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [TIMEOUT][234] ([i915#5892]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@gem_exec_await@wide-contexts.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][236] ([i915#2842]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-glk1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][238] ([i915#2842]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [FAIL][240] ([i915#2842]) -> [PASS][241] +1 similar issue [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@deep@vcs1: - shard-mtlp: [FAIL][242] ([i915#8606]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@gem_exec_schedule@deep@vcs1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-2/igt@gem_exec_schedule@deep@vcs1.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][244] ([i915#7975] / [i915#8213]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [FAIL][246] ([i915#7069]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-4/igt@i915_hangman@engine-engine-hang@vcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-4/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][248] ([i915#4281]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-dg1}: [SKIP][250] ([i915#1937]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][252] ([i915#3591]) -> [PASS][253] +1 similar issue [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@gem-execbuf@smem0: - shard-tglu: [FAIL][254] ([i915#7940]) -> [PASS][255] +1 similar issue [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-10/igt@i915_pm_rpm@gem-execbuf@smem0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-2/igt@i915_pm_rpm@gem-execbuf@smem0.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][256] ([i915#8717]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-2/igt@i915_pm_rpm@i2c.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][258] ([i915#1397]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][260] ([i915#1397]) -> [PASS][261] +1 similar issue [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp.html - {shard-dg1}: [SKIP][262] ([i915#1397]) -> [PASS][263] +1 similar issue [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-dg1}: [FAIL][264] ([i915#7940]) -> [PASS][265] +1 similar issue [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-16/igt@i915_pm_rpm@system-suspend-modeset.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-16/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][266] ([i915#7059]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][268] ([i915#8573]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-1/igt@i915_selftest@perf@request.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][270] ([i915#5138]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][272] ([i915#2346]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-mtlp: [FAIL][274] ([i915#79]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [ABORT][276] ([i915#180]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-apl7/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][278] ([i915#6880]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - {shard-dg1}: [DMESG-WARN][280] ([i915#4391]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][282] ([i915#5234]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - {shard-dg1}: [FAIL][284] ([i915#5234]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [FAIL][286] ([i915#5234]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@syncobj_timeline@reset-signaled: - shard-dg2: [TIMEOUT][288] ([i915#8628]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@syncobj_timeline@reset-signaled.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@syncobj_timeline@reset-signaled.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [ABORT][290] ([i915#8521]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html #### Warnings #### * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg2: [TIMEOUT][292] ([i915#8628]) -> [SKIP][293] ([i915#3281]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@gem_exec_reloc@basic-write-cpu-active.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [TIMEOUT][294] ([i915#8628]) -> [ABORT][295] ([i915#8131]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: [TIMEOUT][296] ([i915#8628]) -> [SKIP][297] ([i915#7828]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-12/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][298] ([fdo#109300]) -> [SKIP][299] ([i915#7118]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-6/igt@kms_content_protection@mei_interface.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-1/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][300] ([fdo#109300]) -> [SKIP][301] ([i915#6944] / [i915#7116] / [i915#7118]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-7/igt@kms_content_protection@mei_interface.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-tglu-8/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][302] ([i915#2346]) -> [DMESG-FAIL][303] ([i915#2017] / [i915#5954]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][304] ([fdo#110189] / [i915#3955]) -> [SKIP][305] ([i915#3955]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][306] ([i915#5493]) -> [CRASH][307] ([i915#7331]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7327]: https://gitlab.freedesktop.org/drm/intel/issues/7327 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8224]: https://gitlab.freedesktop.org/drm/intel/issues/8224 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8230]: https://gitlab.freedesktop.org/drm/intel/issues/8230 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8606]: https://gitlab.freedesktop.org/drm/intel/issues/8606 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7380 -> IGTPW_9389 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13372: 01c4678ab6c623c621a1dea438133e39711291d4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9389: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html IGT_7380: 8e65f12de2fd52c05dc48fdbcb8cfe86f6de1a75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9389/index.html [-- Attachment #2: Type: text/html, Size: 100800 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser ` (3 preceding siblings ...) 2023-07-12 9:11 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2023-07-12 11:48 ` Christian König 2023-07-14 10:14 ` vitaly prosyak 4 siblings, 1 reply; 10+ messages in thread From: Christian König @ 2023-07-12 11:48 UTC (permalink / raw) To: Simon Ser, igt-dev Cc: Ho, Kenny, James Jones, Austin Shafer, Bas Nieuwenhuizen, Faith Ekstrand [Adding Vitaly and Kenny as well] Am 12.07.23 um 09:17 schrieb Simon Ser: > This series implements a new test suite for the DRM_IOCTL_SYNCOBJ_EVENTFD > IOCTL introduced in [1]. > > v2: > - Check for DRM_CAP_SYNCOBJ_TIMELINE instead of DRM_CAP_SYNCOBJ > - Fix syncobj_eventfd availability check: ENOENT is returned when an > IOCTL doesn't exist, so use an error path which returns a different > errno > > [1]: https://lore.kernel.org/dri-devel/20230711142803.4054-1-contact@emersion.fr/T/#u > > Signed-off-by: Simon Ser <contact@emersion.fr> > Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com> > Cc: Christian König <christian.koenig@amd.com> > Cc: Faith Ekstrand <faith.ekstrand@collabora.com> > Cc: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> > Cc: Daniel Stone <daniel@fooishbar.org> > Cc: James Jones <jajones@nvidia.com> > Cc: Austin Shafer <ashafer@nvidia.com> I'm not an expert for igt, but skimming over this I can't find anything of hand wrong. Feel free to add Acked-by: Christian König <christian.koenig@amd.com>. Maybe Vitaly or Kenny can invest a few minutes to double check the patch on our CI as well. Regards, Christian. > --- > include/drm-uapi/drm.h | 22 +++ > lib/igt_syncobj.c | 40 +++++ > lib/igt_syncobj.h | 4 + > tests/meson.build | 1 + > tests/syncobj_eventfd.c | 344 ++++++++++++++++++++++++++++++++++++++++ > 5 files changed, 411 insertions(+) > create mode 100644 tests/syncobj_eventfd.c > > diff --git a/include/drm-uapi/drm.h b/include/drm-uapi/drm.h > index 5e54c3aa4c3a..7368a533c74b 100644 > --- a/include/drm-uapi/drm.h > +++ b/include/drm-uapi/drm.h > @@ -903,6 +903,27 @@ struct drm_syncobj_timeline_wait { > __u32 pad; > }; > > +/** > + * struct drm_syncobj_eventfd > + * @handle: syncobj handle. > + * @flags: Zero to wait for the point to be signalled, or > + * &DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE to wait for a fence to be > + * available for the point. > + * @point: syncobj timeline point (set to zero for binary syncobjs). > + * @fd: Existing eventfd to sent events to. > + * @pad: Must be zero. > + * > + * Register an eventfd to be signalled by a syncobj. The eventfd counter will > + * be incremented by one. > + */ > +struct drm_syncobj_eventfd { > + __u32 handle; > + __u32 flags; > + __u64 point; > + __s32 fd; > + __u32 pad; > +}; > + > > struct drm_syncobj_array { > __u64 handles; > @@ -1089,6 +1110,7 @@ extern "C" { > #define DRM_IOCTL_SYNCOBJ_QUERY DRM_IOWR(0xCB, struct drm_syncobj_timeline_array) > #define DRM_IOCTL_SYNCOBJ_TRANSFER DRM_IOWR(0xCC, struct drm_syncobj_transfer) > #define DRM_IOCTL_SYNCOBJ_TIMELINE_SIGNAL DRM_IOWR(0xCD, struct drm_syncobj_timeline_array) > +#define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCE, struct drm_syncobj_eventfd) > > #define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct drm_mode_fb_cmd2) > > diff --git a/lib/igt_syncobj.c b/lib/igt_syncobj.c > index a24ed10b7a0e..a53393bd7245 100644 > --- a/lib/igt_syncobj.c > +++ b/lib/igt_syncobj.c > @@ -543,3 +543,43 @@ syncobj_timeline_to_timeline(int fd, > timeline_dst, point_dst, > timeline_src, point_src, 0), 0); > } > + > +int > +__syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd) > +{ > + struct drm_syncobj_eventfd args; > + int ret; > + > + args.handle = handle; > + args.flags = flags; > + args.point = point; > + args.fd = ev_fd; > + args.pad = 0; > + > + ret = igt_ioctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); > + if (ret) { > + ret = -errno; > + igt_assume(ret); > + errno = 0; > + } > + > + return ret; > +} > + > +/** > + * syncobj_eventfd: > + * @fd: The DRM file descriptor. > + * @handle: A syncobj handle. > + * @point: A point on the timeline syncobj, or 0 for binary syncobjs. > + * @flags: Flags. > + * @ev_fd: An eventfd. > + * > + * Wait for a syncobj with an eventfd. > + */ > +void > +syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd) > +{ > + igt_assert_eq(__syncobj_eventfd(fd, handle, point, flags, ev_fd), 0); > +} > diff --git a/lib/igt_syncobj.h b/lib/igt_syncobj.h > index e6725671d900..3911696d52f0 100644 > --- a/lib/igt_syncobj.h > +++ b/lib/igt_syncobj.h > @@ -65,5 +65,9 @@ void syncobj_timeline_to_timeline(int fd, > uint64_t timeline_src, uint32_t point_src); > void syncobj_timeline_signal(int fd, uint32_t *handles, uint64_t *points, > uint32_t count); > +int __syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd); > +void syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, > + int ev_fd); > > #endif /* IGT_SYNCOBJ_H */ > diff --git a/tests/meson.build b/tests/meson.build > index d56e4c89daf3..9fc9199e267b 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -78,6 +78,7 @@ test_progs = [ > 'prime_udl', > 'prime_vgem', > 'syncobj_basic', > + 'syncobj_eventfd', > 'syncobj_wait', > 'syncobj_timeline', > 'sw_sync', > diff --git a/tests/syncobj_eventfd.c b/tests/syncobj_eventfd.c > new file mode 100644 > index 000000000000..95a2a4632114 > --- /dev/null > +++ b/tests/syncobj_eventfd.c > @@ -0,0 +1,344 @@ > +/* > + * Copyright © 2023 Simon Ser > + * > + * 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 "igt.h" > +#include "sw_sync.h" > +#include "igt_syncobj.h" > +#include <fcntl.h> > +#include <poll.h> > +#include <sys/eventfd.h> > +#include <stdint.h> > +#include "drm.h" > +/** > + * TEST: syncobj eventfd > + * Category: Infrastructure > + * Description: Tests for the drm sync object eventfd API > + * Feature: synchronization > + * Functionality: semaphore > + * Run type: FULL > + * Sub-category: DRM > + * Test category: GEM_Legacy > + */ > + > +IGT_TEST_DESCRIPTION("Tests for the drm sync object eventfd API"); > + > +static bool > +has_syncobj_eventfd(int fd) > +{ > + uint64_t value; > + int ret; > + > + if (drmGetCap(fd, DRM_CAP_SYNCOBJ_TIMELINE, &value)) > + return false; > + if (!value) > + return false; > + > + /* Try waiting with invalid flags should fail with EINVAL */ > + ret = __syncobj_eventfd(fd, 0, 0, 0xdeadbeef, -1); > + return ret == -EINVAL; > +} > + > +static int > +syncobj_attach_sw_sync(int fd, uint32_t handle, uint64_t point) > +{ > + int timeline, fence; > + uint32_t syncobj; > + > + timeline = sw_sync_timeline_create(); > + fence = sw_sync_timeline_create_fence(timeline, 1); > + > + if (point == 0) { > + syncobj_import_sync_file(fd, handle, fence); > + } else { > + syncobj = syncobj_create(fd, 0); > + > + syncobj_import_sync_file(fd, syncobj, fence); > + syncobj_binary_to_timeline(fd, handle, point, syncobj); > + syncobj_destroy(fd, syncobj); > + } > + > + close(fence); > + > + return timeline; > +} > + > +static int > +ev_fd_read(int ev_fd) > +{ > + uint64_t ev_fd_value; > + int ret; > + > + ret = read(ev_fd, &ev_fd_value, sizeof(ev_fd_value)); > + if (ret == -1) > + return -errno; > + igt_assert_eq(ret, sizeof(ev_fd_value)); > + return 0; > +} > + > +static void > +ev_fd_poll_in(int ev_fd, bool avail) > +{ > + struct pollfd pollfd; > + int ret; > + int timeout_ms; > + > + /* Wait 5s if we're expecting data, 10ms otherwise */ > + timeout_ms = avail ? 5000 : 10; > + pollfd.fd = ev_fd; > + pollfd.events = POLLIN; > + pollfd.revents = 0; > + ret = poll(&pollfd, 1, timeout_ms); > + if (avail) { > + igt_assert(ret >= 0); > + igt_assert(pollfd.revents & POLLIN); > + } else { > + igt_assert_eq(ret, 0); > + } > +} > + > +static void > +ev_fd_assert_unsignaled(int ev_fd) > +{ > + /* Poll the eventfd to give the kernel time to signal it, error out if > + * that happens */ > + ev_fd_poll_in(ev_fd, false); > + igt_assert_eq(ev_fd_read(ev_fd), -EAGAIN); > +} > + > +static void > +ev_fd_assert_signaled(int ev_fd) > +{ > + ev_fd_poll_in(ev_fd, true); > + igt_assert_eq(ev_fd_read(ev_fd), 0); > +} > + > +static const char test_bad_flags_desc[] = > + "Verifies that passing bad flags is rejected"; > +static void > +test_bad_flags(int fd) > +{ > + uint32_t flags; > + uint32_t syncobj; > + int ev_fd; > + > + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + flags = 0xdeadbeef; > + ev_fd = eventfd(0, EFD_NONBLOCK); > + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, flags, ev_fd), -EINVAL); > + > + close(ev_fd); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_illegal_handle_desc[] = > + "Verifies that passing an invalid syncobj handle is rejected"; > +static void > +test_illegal_handle(int fd) > +{ > + int ev_fd; > + > + ev_fd = eventfd(0, EFD_NONBLOCK); > + igt_assert_eq(__syncobj_eventfd(fd, 0, 0, 0, ev_fd), -ENOENT); > + > + close(ev_fd); > +} > + > +static const char test_illegal_eventfd_desc[] = > + "Verifies that passing an invalid eventfd is rejected"; > +static void > +test_illegal_eventfd(int fd) > +{ > + int dev_null; > + uint32_t syncobj; > + > + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + > + dev_null = open("/dev/null", O_RDWR); > + igt_assert(dev_null >= 0); > + > + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, 0, dev_null), -EINVAL); > + > + close(dev_null); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_bad_pad_desc[] = > + "Verifies that passing a non-zero padding is rejected"; > +static void > +test_bad_pad(int fd) > +{ > + struct drm_syncobj_eventfd args; > + int ret; > + > + args.handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); > + args.flags = 0; > + args.point = 0; > + args.fd = eventfd(0, EFD_NONBLOCK); > + args.pad = 0xdeadbeef; > + > + ret = drmIoctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); > + igt_assert(ret == -1 && errno == EINVAL); > +} > + > +static const char test_wait_desc[] = > + "Verifies waiting an already-materialized fence"; > +static void > +test_wait(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + sw_sync_timeline_inc(timeline, 1); > + > + ev_fd_assert_signaled(ev_fd_wait); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_wait_before_signal_desc[] = > + "Verifies waiting a fence not yet materialized"; > +static void > +test_wait_before_signal(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_unsignaled(ev_fd_avail); > + > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + > + ev_fd_assert_unsignaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + sw_sync_timeline_inc(timeline, 1); > + > + ev_fd_assert_signaled(ev_fd_wait); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +static const char test_wait_signaled_desc[] = > + "Verifies waiting an already-signaled fence"; > +static void > +test_wait_signaled(int fd, bool use_timeline) > +{ > + uint32_t syncobj; > + int timeline, ev_fd_wait, ev_fd_avail; > + uint64_t point = use_timeline ? 1 : 0; > + > + syncobj = syncobj_create(fd, 0); > + ev_fd_wait = eventfd(0, EFD_NONBLOCK); > + ev_fd_avail = eventfd(0, EFD_NONBLOCK); > + > + timeline = syncobj_attach_sw_sync(fd, syncobj, point); > + sw_sync_timeline_inc(timeline, 1); > + > + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); > + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, > + ev_fd_avail); > + > + ev_fd_assert_signaled(ev_fd_wait); > + ev_fd_assert_signaled(ev_fd_avail); > + > + close(ev_fd_wait); > + close(ev_fd_avail); > + close(timeline); > + syncobj_destroy(fd, syncobj); > +} > + > +igt_main > +{ > + int fd = -1, i; > + > + igt_fixture { > + fd = drm_open_driver(DRIVER_ANY); > + igt_require(has_syncobj_eventfd(fd)); > + igt_require_sw_sync(); > + } > + > + igt_describe(test_bad_flags_desc); > + igt_subtest("invalid-bad-flags") > + test_bad_flags(fd); > + > + igt_describe(test_illegal_handle_desc); > + igt_subtest("invalid-illegal-handle") > + test_illegal_handle(fd); > + > + igt_describe(test_illegal_eventfd_desc); > + igt_subtest("invalid-illegal-eventfd") > + test_illegal_eventfd(fd); > + > + igt_describe(test_bad_pad_desc); > + igt_subtest("invalid-bad-pad") > + test_bad_pad(fd); > + > + for (i = 0; i < 2; i++) { > + bool use_timeline = i == 1; > + const char *kind = use_timeline ? "timeline" : "binary"; > + > + igt_describe(test_wait_desc); > + igt_subtest_f("%s-wait", kind) > + test_wait(fd, use_timeline); > + > + igt_describe(test_wait_before_signal_desc); > + igt_subtest_f("%s-wait-before-signal", kind) > + test_wait_before_signal(fd, use_timeline); > + > + igt_describe(test_wait_signaled_desc); > + igt_subtest_f("%s-wait-signaled", kind) > + test_wait_signaled(fd, use_timeline); > + } > + > + igt_fixture { > + drm_close_driver(fd); > + } > +} ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-12 11:48 ` [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Christian König @ 2023-07-14 10:14 ` vitaly prosyak 2023-07-14 10:51 ` Simon Ser 0 siblings, 1 reply; 10+ messages in thread From: vitaly prosyak @ 2023-07-14 10:14 UTC (permalink / raw) To: Christian König, Simon Ser, igt-dev Cc: Ho, Kenny, James Jones, Austin Shafer, Bas Nieuwenhuizen, Faith Ekstrand On 2023-07-12 07:48, Christian König wrote: > [Adding Vitaly and Kenny as well] > > Am 12.07.23 um 09:17 schrieb Simon Ser: >> This series implements a new test suite for the DRM_IOCTL_SYNCOBJ_EVENTFD >> IOCTL introduced in [1]. >> >> v2: >> - Check for DRM_CAP_SYNCOBJ_TIMELINE instead of DRM_CAP_SYNCOBJ >> - Fix syncobj_eventfd availability check: ENOENT is returned when an >> IOCTL doesn't exist, so use an error path which returns a different >> errno >> >> [1]: https://lore.kernel.org/dri-devel/20230711142803.4054-1-contact@emersion.fr/T/#u >> >> Signed-off-by: Simon Ser <contact@emersion.fr> >> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com> >> Cc: Christian König <christian.koenig@amd.com> >> Cc: Faith Ekstrand <faith.ekstrand@collabora.com> >> Cc: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> >> Cc: Daniel Stone <daniel@fooishbar.org> >> Cc: James Jones <jajones@nvidia.com> >> Cc: Austin Shafer <ashafer@nvidia.com> > I'm not an expert for igt, but skimming over this I can't find anything > of hand wrong. Feel free to add Acked-by: Christian König > <christian.koenig@amd.com>. > > Maybe Vitaly or Kenny can invest a few minutes to double check the patch > on our CI as well. The new test syncobj_eventfd is successful, but there is a failure for test kms_getfb caused by the kernel patch(drm/syncobj: WIP add IOCTL to register an eventfd). Is there any test failure on Intel CI? Thanks, Vitaly > > Regards, > Christian. > >> --- >> include/drm-uapi/drm.h | 22 +++ >> lib/igt_syncobj.c | 40 +++++ >> lib/igt_syncobj.h | 4 + >> tests/meson.build | 1 + >> tests/syncobj_eventfd.c | 344 ++++++++++++++++++++++++++++++++++++++++ >> 5 files changed, 411 insertions(+) >> create mode 100644 tests/syncobj_eventfd.c >> >> diff --git a/include/drm-uapi/drm.h b/include/drm-uapi/drm.h >> index 5e54c3aa4c3a..7368a533c74b 100644 >> --- a/include/drm-uapi/drm.h >> +++ b/include/drm-uapi/drm.h >> @@ -903,6 +903,27 @@ struct drm_syncobj_timeline_wait { >> __u32 pad; >> }; >> >> +/** >> + * struct drm_syncobj_eventfd >> + * @handle: syncobj handle. >> + * @flags: Zero to wait for the point to be signalled, or >> + * &DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE to wait for a fence to be >> + * available for the point. >> + * @point: syncobj timeline point (set to zero for binary syncobjs). >> + * @fd: Existing eventfd to sent events to. >> + * @pad: Must be zero. >> + * >> + * Register an eventfd to be signalled by a syncobj. The eventfd counter will >> + * be incremented by one. >> + */ >> +struct drm_syncobj_eventfd { >> + __u32 handle; >> + __u32 flags; >> + __u64 point; >> + __s32 fd; >> + __u32 pad; >> +}; >> + >> >> struct drm_syncobj_array { >> __u64 handles; >> @@ -1089,6 +1110,7 @@ extern "C" { >> #define DRM_IOCTL_SYNCOBJ_QUERY DRM_IOWR(0xCB, struct drm_syncobj_timeline_array) >> #define DRM_IOCTL_SYNCOBJ_TRANSFER DRM_IOWR(0xCC, struct drm_syncobj_transfer) >> #define DRM_IOCTL_SYNCOBJ_TIMELINE_SIGNAL DRM_IOWR(0xCD, struct drm_syncobj_timeline_array) >> +#define DRM_IOCTL_SYNCOBJ_EVENTFD DRM_IOWR(0xCE, struct drm_syncobj_eventfd) >> >> #define DRM_IOCTL_MODE_GETFB2 DRM_IOWR(0xCE, struct drm_mode_fb_cmd2) >> >> diff --git a/lib/igt_syncobj.c b/lib/igt_syncobj.c >> index a24ed10b7a0e..a53393bd7245 100644 >> --- a/lib/igt_syncobj.c >> +++ b/lib/igt_syncobj.c >> @@ -543,3 +543,43 @@ syncobj_timeline_to_timeline(int fd, >> timeline_dst, point_dst, >> timeline_src, point_src, 0), 0); >> } >> + >> +int >> +__syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, >> + int ev_fd) >> +{ >> + struct drm_syncobj_eventfd args; >> + int ret; >> + >> + args.handle = handle; >> + args.flags = flags; >> + args.point = point; >> + args.fd = ev_fd; >> + args.pad = 0; >> + >> + ret = igt_ioctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); >> + if (ret) { >> + ret = -errno; >> + igt_assume(ret); >> + errno = 0; >> + } >> + >> + return ret; >> +} >> + >> +/** >> + * syncobj_eventfd: >> + * @fd: The DRM file descriptor. >> + * @handle: A syncobj handle. >> + * @point: A point on the timeline syncobj, or 0 for binary syncobjs. >> + * @flags: Flags. >> + * @ev_fd: An eventfd. >> + * >> + * Wait for a syncobj with an eventfd. >> + */ >> +void >> +syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, >> + int ev_fd) >> +{ >> + igt_assert_eq(__syncobj_eventfd(fd, handle, point, flags, ev_fd), 0); >> +} >> diff --git a/lib/igt_syncobj.h b/lib/igt_syncobj.h >> index e6725671d900..3911696d52f0 100644 >> --- a/lib/igt_syncobj.h >> +++ b/lib/igt_syncobj.h >> @@ -65,5 +65,9 @@ void syncobj_timeline_to_timeline(int fd, >> uint64_t timeline_src, uint32_t point_src); >> void syncobj_timeline_signal(int fd, uint32_t *handles, uint64_t *points, >> uint32_t count); >> +int __syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, >> + int ev_fd); >> +void syncobj_eventfd(int fd, uint32_t handle, uint64_t point, uint32_t flags, >> + int ev_fd); >> >> #endif /* IGT_SYNCOBJ_H */ >> diff --git a/tests/meson.build b/tests/meson.build >> index d56e4c89daf3..9fc9199e267b 100644 >> --- a/tests/meson.build >> +++ b/tests/meson.build >> @@ -78,6 +78,7 @@ test_progs = [ >> 'prime_udl', >> 'prime_vgem', >> 'syncobj_basic', >> + 'syncobj_eventfd', >> 'syncobj_wait', >> 'syncobj_timeline', >> 'sw_sync', >> diff --git a/tests/syncobj_eventfd.c b/tests/syncobj_eventfd.c >> new file mode 100644 >> index 000000000000..95a2a4632114 >> --- /dev/null >> +++ b/tests/syncobj_eventfd.c >> @@ -0,0 +1,344 @@ >> +/* >> + * Copyright © 2023 Simon Ser >> + * >> + * 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 "igt.h" >> +#include "sw_sync.h" >> +#include "igt_syncobj.h" >> +#include <fcntl.h> >> +#include <poll.h> >> +#include <sys/eventfd.h> >> +#include <stdint.h> >> +#include "drm.h" >> +/** >> + * TEST: syncobj eventfd >> + * Category: Infrastructure >> + * Description: Tests for the drm sync object eventfd API >> + * Feature: synchronization >> + * Functionality: semaphore >> + * Run type: FULL >> + * Sub-category: DRM >> + * Test category: GEM_Legacy >> + */ >> + >> +IGT_TEST_DESCRIPTION("Tests for the drm sync object eventfd API"); >> + >> +static bool >> +has_syncobj_eventfd(int fd) >> +{ >> + uint64_t value; >> + int ret; >> + >> + if (drmGetCap(fd, DRM_CAP_SYNCOBJ_TIMELINE, &value)) >> + return false; >> + if (!value) >> + return false; >> + >> + /* Try waiting with invalid flags should fail with EINVAL */ >> + ret = __syncobj_eventfd(fd, 0, 0, 0xdeadbeef, -1); >> + return ret == -EINVAL; >> +} >> + >> +static int >> +syncobj_attach_sw_sync(int fd, uint32_t handle, uint64_t point) >> +{ >> + int timeline, fence; >> + uint32_t syncobj; >> + >> + timeline = sw_sync_timeline_create(); >> + fence = sw_sync_timeline_create_fence(timeline, 1); >> + >> + if (point == 0) { >> + syncobj_import_sync_file(fd, handle, fence); >> + } else { >> + syncobj = syncobj_create(fd, 0); >> + >> + syncobj_import_sync_file(fd, syncobj, fence); >> + syncobj_binary_to_timeline(fd, handle, point, syncobj); >> + syncobj_destroy(fd, syncobj); >> + } >> + >> + close(fence); >> + >> + return timeline; >> +} >> + >> +static int >> +ev_fd_read(int ev_fd) >> +{ >> + uint64_t ev_fd_value; >> + int ret; >> + >> + ret = read(ev_fd, &ev_fd_value, sizeof(ev_fd_value)); >> + if (ret == -1) >> + return -errno; >> + igt_assert_eq(ret, sizeof(ev_fd_value)); >> + return 0; >> +} >> + >> +static void >> +ev_fd_poll_in(int ev_fd, bool avail) >> +{ >> + struct pollfd pollfd; >> + int ret; >> + int timeout_ms; >> + >> + /* Wait 5s if we're expecting data, 10ms otherwise */ >> + timeout_ms = avail ? 5000 : 10; >> + pollfd.fd = ev_fd; >> + pollfd.events = POLLIN; >> + pollfd.revents = 0; >> + ret = poll(&pollfd, 1, timeout_ms); >> + if (avail) { >> + igt_assert(ret >= 0); >> + igt_assert(pollfd.revents & POLLIN); >> + } else { >> + igt_assert_eq(ret, 0); >> + } >> +} >> + >> +static void >> +ev_fd_assert_unsignaled(int ev_fd) >> +{ >> + /* Poll the eventfd to give the kernel time to signal it, error out if >> + * that happens */ >> + ev_fd_poll_in(ev_fd, false); >> + igt_assert_eq(ev_fd_read(ev_fd), -EAGAIN); >> +} >> + >> +static void >> +ev_fd_assert_signaled(int ev_fd) >> +{ >> + ev_fd_poll_in(ev_fd, true); >> + igt_assert_eq(ev_fd_read(ev_fd), 0); >> +} >> + >> +static const char test_bad_flags_desc[] = >> + "Verifies that passing bad flags is rejected"; >> +static void >> +test_bad_flags(int fd) >> +{ >> + uint32_t flags; >> + uint32_t syncobj; >> + int ev_fd; >> + >> + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); >> + flags = 0xdeadbeef; >> + ev_fd = eventfd(0, EFD_NONBLOCK); >> + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, flags, ev_fd), -EINVAL); >> + >> + close(ev_fd); >> + syncobj_destroy(fd, syncobj); >> +} >> + >> +static const char test_illegal_handle_desc[] = >> + "Verifies that passing an invalid syncobj handle is rejected"; >> +static void >> +test_illegal_handle(int fd) >> +{ >> + int ev_fd; >> + >> + ev_fd = eventfd(0, EFD_NONBLOCK); >> + igt_assert_eq(__syncobj_eventfd(fd, 0, 0, 0, ev_fd), -ENOENT); >> + >> + close(ev_fd); >> +} >> + >> +static const char test_illegal_eventfd_desc[] = >> + "Verifies that passing an invalid eventfd is rejected"; >> +static void >> +test_illegal_eventfd(int fd) >> +{ >> + int dev_null; >> + uint32_t syncobj; >> + >> + syncobj = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); >> + >> + dev_null = open("/dev/null", O_RDWR); >> + igt_assert(dev_null >= 0); >> + >> + igt_assert_eq(__syncobj_eventfd(fd, syncobj, 0, 0, dev_null), -EINVAL); >> + >> + close(dev_null); >> + syncobj_destroy(fd, syncobj); >> +} >> + >> +static const char test_bad_pad_desc[] = >> + "Verifies that passing a non-zero padding is rejected"; >> +static void >> +test_bad_pad(int fd) >> +{ >> + struct drm_syncobj_eventfd args; >> + int ret; >> + >> + args.handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED); >> + args.flags = 0; >> + args.point = 0; >> + args.fd = eventfd(0, EFD_NONBLOCK); >> + args.pad = 0xdeadbeef; >> + >> + ret = drmIoctl(fd, DRM_IOCTL_SYNCOBJ_EVENTFD, &args); >> + igt_assert(ret == -1 && errno == EINVAL); >> +} >> + >> +static const char test_wait_desc[] = >> + "Verifies waiting an already-materialized fence"; >> +static void >> +test_wait(int fd, bool use_timeline) >> +{ >> + uint32_t syncobj; >> + int timeline, ev_fd_wait, ev_fd_avail; >> + uint64_t point = use_timeline ? 1 : 0; >> + >> + syncobj = syncobj_create(fd, 0); >> + timeline = syncobj_attach_sw_sync(fd, syncobj, point); >> + ev_fd_wait = eventfd(0, EFD_NONBLOCK); >> + ev_fd_avail = eventfd(0, EFD_NONBLOCK); >> + >> + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); >> + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, >> + ev_fd_avail); >> + >> + ev_fd_assert_unsignaled(ev_fd_wait); >> + ev_fd_assert_signaled(ev_fd_avail); >> + >> + sw_sync_timeline_inc(timeline, 1); >> + >> + ev_fd_assert_signaled(ev_fd_wait); >> + >> + close(ev_fd_wait); >> + close(ev_fd_avail); >> + close(timeline); >> + syncobj_destroy(fd, syncobj); >> +} >> + >> +static const char test_wait_before_signal_desc[] = >> + "Verifies waiting a fence not yet materialized"; >> +static void >> +test_wait_before_signal(int fd, bool use_timeline) >> +{ >> + uint32_t syncobj; >> + int timeline, ev_fd_wait, ev_fd_avail; >> + uint64_t point = use_timeline ? 1 : 0; >> + >> + syncobj = syncobj_create(fd, 0); >> + ev_fd_wait = eventfd(0, EFD_NONBLOCK); >> + ev_fd_avail = eventfd(0, EFD_NONBLOCK); >> + >> + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); >> + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, >> + ev_fd_avail); >> + >> + ev_fd_assert_unsignaled(ev_fd_wait); >> + ev_fd_assert_unsignaled(ev_fd_avail); >> + >> + timeline = syncobj_attach_sw_sync(fd, syncobj, point); >> + >> + ev_fd_assert_unsignaled(ev_fd_wait); >> + ev_fd_assert_signaled(ev_fd_avail); >> + >> + sw_sync_timeline_inc(timeline, 1); >> + >> + ev_fd_assert_signaled(ev_fd_wait); >> + >> + close(ev_fd_wait); >> + close(ev_fd_avail); >> + close(timeline); >> + syncobj_destroy(fd, syncobj); >> +} >> + >> +static const char test_wait_signaled_desc[] = >> + "Verifies waiting an already-signaled fence"; >> +static void >> +test_wait_signaled(int fd, bool use_timeline) >> +{ >> + uint32_t syncobj; >> + int timeline, ev_fd_wait, ev_fd_avail; >> + uint64_t point = use_timeline ? 1 : 0; >> + >> + syncobj = syncobj_create(fd, 0); >> + ev_fd_wait = eventfd(0, EFD_NONBLOCK); >> + ev_fd_avail = eventfd(0, EFD_NONBLOCK); >> + >> + timeline = syncobj_attach_sw_sync(fd, syncobj, point); >> + sw_sync_timeline_inc(timeline, 1); >> + >> + syncobj_eventfd(fd, syncobj, point, 0, ev_fd_wait); >> + syncobj_eventfd(fd, syncobj, point, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE, >> + ev_fd_avail); >> + >> + ev_fd_assert_signaled(ev_fd_wait); >> + ev_fd_assert_signaled(ev_fd_avail); >> + >> + close(ev_fd_wait); >> + close(ev_fd_avail); >> + close(timeline); >> + syncobj_destroy(fd, syncobj); >> +} >> + >> +igt_main >> +{ >> + int fd = -1, i; >> + >> + igt_fixture { >> + fd = drm_open_driver(DRIVER_ANY); >> + igt_require(has_syncobj_eventfd(fd)); >> + igt_require_sw_sync(); >> + } >> + >> + igt_describe(test_bad_flags_desc); >> + igt_subtest("invalid-bad-flags") >> + test_bad_flags(fd); >> + >> + igt_describe(test_illegal_handle_desc); >> + igt_subtest("invalid-illegal-handle") >> + test_illegal_handle(fd); >> + >> + igt_describe(test_illegal_eventfd_desc); >> + igt_subtest("invalid-illegal-eventfd") >> + test_illegal_eventfd(fd); >> + >> + igt_describe(test_bad_pad_desc); >> + igt_subtest("invalid-bad-pad") >> + test_bad_pad(fd); >> + >> + for (i = 0; i < 2; i++) { >> + bool use_timeline = i == 1; >> + const char *kind = use_timeline ? "timeline" : "binary"; >> + >> + igt_describe(test_wait_desc); >> + igt_subtest_f("%s-wait", kind) >> + test_wait(fd, use_timeline); >> + >> + igt_describe(test_wait_before_signal_desc); >> + igt_subtest_f("%s-wait-before-signal", kind) >> + test_wait_before_signal(fd, use_timeline); >> + >> + igt_describe(test_wait_signaled_desc); >> + igt_subtest_f("%s-wait-signaled", kind) >> + test_wait_signaled(fd, use_timeline); >> + } >> + >> + igt_fixture { >> + drm_close_driver(fd); >> + } >> +} ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test 2023-07-14 10:14 ` vitaly prosyak @ 2023-07-14 10:51 ` Simon Ser 0 siblings, 0 replies; 10+ messages in thread From: Simon Ser @ 2023-07-14 10:51 UTC (permalink / raw) To: vitaly prosyak Cc: Ho, Kenny, James Jones, igt-dev, Austin Shafer, Bas Nieuwenhuizen, Christian König, Faith Ekstrand On Friday, July 14th, 2023 at 12:14, vitaly prosyak <vprosyak@amd.com> wrote: > The new test syncobj_eventfd is successful, but there is a failure > for test kms_getfb caused by the kernel patch(drm/syncobj: WIP add > IOCTL to register an eventfd). Is there any test failure on Intel CI? Ooops! It seems like DRM_IOCTL_SYNCOBJ_EVENTFD clashes with DRM_IOCTL_MODE_GETFB2. I'll re-send a new version which avoids the collision. ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-07-14 10:51 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-12 7:17 [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Simon Ser 2023-07-12 7:37 ` Lionel Landwerlin 2023-07-12 7:45 ` Simon Ser 2023-07-12 11:38 ` Lionel Landwerlin 2023-07-12 8:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/syncobj_eventfd: new test (rev2) Patchwork 2023-07-12 8:40 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-12 9:11 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-07-12 11:48 ` [igt-dev] [PATCH v2] tests/syncobj_eventfd: new test Christian König 2023-07-14 10:14 ` vitaly prosyak 2023-07-14 10:51 ` Simon Ser
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox