From: Melissa Wen <mwen@igalia.com>
To: "Maíra Canal" <mcanal@igalia.com>
Cc: Rob Clark <robdclark@chromium.org>,
igt-dev@lists.freedesktop.org,
Petri Latvala <petri.latvala@intel.com>,
Tomeu Vizoso <tomeu.vizoso@collabora.com>,
Jason Ekstrand <jason.ekstrand@collabora.com>,
Iago Toral Quiroga <itoral@igalia.com>,
Emma Anholt <emma@anholt.net>
Subject: Re: [igt-dev] [PATCH i-g-t 6/6] tests/v3d_submit_cl: Create test for V3D's Submit CL IOCTL
Date: Thu, 12 Jan 2023 10:20:32 -0100 [thread overview]
Message-ID: <20230112112032.jsk3ufradyj4tpai@mail.igalia.com> (raw)
In-Reply-To: <20230103105835.604394-7-mcanal@igalia.com>
[-- Attachment #1: Type: text/plain, Size: 16294 bytes --]
On 01/03, Maíra Canal wrote:
> Add eighteen igt_subtests for the DRM_IOCTL_V3D_SUBMIT_CL, which ensures
> that improper parameters return an errno and test multisync and simple
> sync abilities. For most of the subtests, the noop job is the base of
> the submission, as it is one of the simplest jobs possible, allowing it
> to test the synchronization abilities of the V3D.
>
> Signed-off-by: Maíra Canal <mcanal@igalia.com>
> ---
> lib/igt_v3d.c | 8 +
> lib/igt_v3d.h | 2 +
> tests/v3d/meson.build | 1 +
> tests/v3d/v3d_submit_cl.c | 352 ++++++++++++++++++++++++++++++++++++++
> tests/v3d_ci/v3d.testlist | 18 ++
> 5 files changed, 381 insertions(+)
> create mode 100644 tests/v3d/v3d_submit_cl.c
>
> diff --git a/lib/igt_v3d.c b/lib/igt_v3d.c
> index 1ac55ea8..cc8f410d 100644
> --- a/lib/igt_v3d.c
> +++ b/lib/igt_v3d.c
> @@ -172,6 +172,14 @@ void igt_v3d_perfmon_destroy(int fd, uint32_t id)
> do_ioctl(fd, DRM_IOCTL_V3D_PERFMON_DESTROY, &destroy);
> }
>
> +void igt_v3d_set_multisync(struct drm_v3d_multi_sync *ms, enum v3d_queue wait_stage)
> +{
> + ms->base.next = to_user_pointer(NULL);
> + ms->base.id = DRM_V3D_EXT_ID_MULTI_SYNC;
> + ms->base.flags = 0;
> + ms->wait_stage = wait_stage;
> +}
> +
> static void v3d_cl_init(int fd, struct v3d_cl **cl)
> {
> struct v3d_bo *bo = igt_v3d_create_bo(fd, PAGE_SIZE);
> diff --git a/lib/igt_v3d.h b/lib/igt_v3d.h
> index af2c9c2f..2cf7fbd8 100644
> --- a/lib/igt_v3d.h
> +++ b/lib/igt_v3d.h
> @@ -62,6 +62,8 @@ uint32_t igt_v3d_perfmon_create(int fd, uint32_t ncounters, uint8_t *counters);
> void igt_v3d_perfmon_get_values(int fd, uint32_t id);
> void igt_v3d_perfmon_destroy(int fd, uint32_t id);
>
> +void igt_v3d_set_multisync(struct drm_v3d_multi_sync *ms, enum v3d_queue wait_stage);
> +
> struct v3d_cl_job *igt_v3d_noop_job(int fd);
> void igt_v3d_free_cl_job(int fd, struct v3d_cl_job *job);
>
> diff --git a/tests/v3d/meson.build b/tests/v3d/meson.build
> index 7b4257f9..be92fd66 100644
> --- a/tests/v3d/meson.build
> +++ b/tests/v3d/meson.build
> @@ -3,6 +3,7 @@ v3d_progs = [
> 'v3d_get_bo_offset',
> 'v3d_get_param',
> 'v3d_mmap',
> + 'v3d_submit_cl',
> 'v3d_perfmon',
> 'v3d_wait_bo',
> ]
> diff --git a/tests/v3d/v3d_submit_cl.c b/tests/v3d/v3d_submit_cl.c
> new file mode 100644
> index 00000000..d7d2a25a
> --- /dev/null
> +++ b/tests/v3d/v3d_submit_cl.c
> @@ -0,0 +1,352 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2022 Igalia S.L.
> + */
> +
> +#include "igt.h"
> +#include "igt_v3d.h"
> +#include "igt_syncobj.h"
> +
> +/* One tenth of a second */
> +#define SHORT_TIME_NSEC 100000000ull
> +
> +#define NSECS_PER_SEC 1000000000ull
> +
> +static uint64_t
> +gettime_ns(void)
> +{
> + struct timespec current;
> + clock_gettime(CLOCK_MONOTONIC, ¤t);
> + return (uint64_t)current.tv_sec * NSECS_PER_SEC + current.tv_nsec;
> +}
> +
> +static uint64_t
> +short_timeout(void)
> +{
> + return gettime_ns() + SHORT_TIME_NSEC;
> +}
> +
> +igt_main
> +{
> + int fd;
> +
> + igt_fixture
> + fd = drm_open_driver(DRIVER_V3D);
> +
> + igt_describe("Make sure a submission cannot be accepted with a pad different than zero.");
> + igt_subtest("bad-pad") {
> + struct drm_v3d_submit_cl submit = {
> + .pad = 1
> + };
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, &submit, EINVAL);
> + }
> +
> + igt_describe("Make sure a submission cannot be accepted with flags different than zero.");
I think you want to say "invalid flags" not "flags different than zero",
since DRM_V3D_SUBMIT_CL_FLUSH_CACHE and DRM_V3D_SUBMIT_EXTENSION are
valid flags depends on driver caps. In addition, does adding tests
for valid flags (that depend on driver caps) make sense?
> + igt_subtest("bad-flag") {
> + struct drm_v3d_submit_cl submit = {
> + .flags = 0xaa
> + };
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, &submit, EINVAL);
> + }
> +
> + igt_describe("Make sure a submission cannot be accepted if the extensions handle is invalid.");
> + igt_subtest("bad-extension") {
> + struct drm_v3d_submit_cl submit = {
> + .flags = DRM_V3D_SUBMIT_EXTENSION,
> + .extensions = 0ULL
> + };
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, &submit, EINVAL);
> + }
> +
> + igt_describe("Make sure a submission cannot be accepted if the BO handle is invalid.");
> + igt_subtest("bad-bo") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + job->submit->bo_handles = 0ULL;
> + job->submit->bo_handle_count = 1;
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EFAULT);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure a submission cannot be accepted if the perfmon id is invalid.");
> + igt_subtest("bad-perfmon") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_PERFMON));
> +
> + job->submit->perfmon_id = 1;
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, ENOENT);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure a submission cannot be accepted if the in-sync is not signaled.");
> + igt_subtest("bad-in-sync") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + job->submit->in_sync_rcl = syncobj_create(fd, 0);
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EINVAL);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure that the multisync pad is zero.");
> + igt_subtest("bad-multisync-pad") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + ms.pad = 1;
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EINVAL);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure that the multisync extension id exists.");
> + igt_subtest("bad-multisync-extension") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + ms.base.id = 0;
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EINVAL);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure that the multisync out-sync is valid.");
> + igt_subtest("bad-multisync-out-sync") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + igt_v3d_set_multisync(&ms, V3D_RENDER);
> +
> + ms.out_sync_count = 1;
> + ms.out_syncs = 0ULL;
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EFAULT);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Make sure that the multisync in-sync is valid.");
> + igt_subtest("bad-multisync-in-sync") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + igt_v3d_set_multisync(&ms, V3D_RENDER);
> +
> + ms.in_sync_count = 1;
> + ms.in_syncs = 0ULL;
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit, EFAULT);
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Test a valid submission without syncobj.");
> + igt_subtest("valid-submission") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + igt_v3d_free_cl_job(fd, job);
> + }
Maybe a similar test for MULTISYNC? ^
> +
> + igt_describe("Test a valid submission with a simple out-sync.");
Do you want to say "single" instead of "simple"?
> + igt_subtest("simple-out-sync") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + job->submit->out_sync = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + igt_assert(syncobj_wait(fd, &job->submit->out_sync, 1,
> + INT64_MAX, 0, NULL));
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Test a valid submission with a simple in-sync.");
Do you want to say "single" instead of "simple"?
> + igt_subtest("simple-in-sync") {
> + struct v3d_cl_job *job1 = igt_v3d_noop_job(fd);
> + struct v3d_cl_job *job2 = igt_v3d_noop_job(fd);
> + uint32_t out_sync;
> +
> + out_sync = syncobj_create(fd, 0);
> +
> + job1->submit->in_sync_rcl = out_sync;
> + do_ioctl_err(fd, DRM_IOCTL_V3D_SUBMIT_CL, job1->submit, EINVAL);
> +
> + job2->submit->out_sync = out_sync;
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job2->submit);
> +
> + igt_assert(syncobj_wait(fd, &job2->submit->out_sync, 1,
> + INT64_MAX, 0, NULL));
> +
> + job1->submit->in_sync_rcl = out_sync;
> + job1->submit->out_sync = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job1->submit);
> +
> + igt_assert(syncobj_wait(fd, &job1->submit->out_sync, 1,
> + INT64_MAX, 0, NULL));
> +
> + igt_v3d_free_cl_job(fd, job1);
> + igt_v3d_free_cl_job(fd, job2);
> + }
> +
> + igt_describe("Test a valid submission with flush cache.");
> + igt_subtest("simple-flush-cache") {
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_CACHE_FLUSH));
> +
> + job->submit->flags = DRM_V3D_SUBMIT_CL_FLUSH_CACHE;
> + job->submit->out_sync = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + igt_assert(syncobj_wait(fd, &job->submit->out_sync, 1,
> + INT64_MAX, 0, NULL));
> + igt_v3d_free_cl_job(fd, job);
> + }
> +
> + igt_describe("Test a valid submission with a multisync out-sync.");
Better say "multiple out-syncs"
> + igt_subtest("multisync-out-sync") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> + struct drm_v3d_sem *out_syncs;
> + int i;
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + igt_v3d_set_multisync(&ms, V3D_RENDER);
> + ms.out_sync_count = 4;
> +
> + out_syncs = malloc(ms.out_sync_count * sizeof(*out_syncs));
> + for (i = 0; i < ms.out_sync_count; i++)
> + out_syncs[i].handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> +
> + ms.out_syncs = to_user_pointer(out_syncs);
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + for (i = 0; i < ms.out_sync_count; i++)
> + igt_assert(syncobj_wait(fd, &out_syncs[i].handle, 1, INT64_MAX, 0, NULL));
> +
> + igt_v3d_free_cl_job(fd, job);
> + free(out_syncs);
> + }
> +
> + igt_describe("Make sure that the multisync extension is preferred over the simple syncobjs.");
Do you want to say "single" instead of "simple"? ^
> + igt_subtest("multi-and-simple-sync") {
> + struct drm_v3d_multi_sync ms = { };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> + struct drm_v3d_sem *out_syncs;
> + int i;
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_MULTISYNC_EXT));
> +
> + igt_v3d_set_multisync(&ms, V3D_RENDER);
> + ms.out_sync_count = 1;
> +
> + out_syncs = malloc(ms.out_sync_count * sizeof(*out_syncs));
> + for (i = 0; i < ms.out_sync_count; i++)
> + out_syncs[i].handle = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> +
> + ms.out_syncs = to_user_pointer(out_syncs);
> +
> + job->submit->flags = DRM_V3D_SUBMIT_EXTENSION;
If we don't set this flag, the driver should follow the single-sync
path, right?
> + job->submit->extensions = to_user_pointer(&ms);
> +
> + job->submit->out_sync = syncobj_create(fd, 0);
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + for (i = 0; i < ms.out_sync_count; i++)
> + igt_assert(syncobj_wait(fd, &out_syncs[i].handle, 1, INT64_MAX, 0, NULL));
> +
> + /*
> + * The multisync extension should be prioritized over the simple syncobjs.
> + * So, the job->submit->out_sync should stay not signaled.
> + */
> + igt_assert_eq(syncobj_wait_err(fd, &job->submit->out_sync, 1, INT64_MAX, 0), -EINVAL);
> +
> + igt_v3d_free_cl_job(fd, job);
> + free(out_syncs);
> + }
> +
> + igt_describe("Test the implicit order of the submission to the CL queue.");
> + igt_subtest("multiple-job-submission") {
> + const uint32_t num_jobs = 10;
> + struct v3d_cl_job **jobs = NULL;
> + int i;
> +
> + jobs = malloc(num_jobs * sizeof(*jobs));
> +
> + for (i = 0; i < num_jobs; i++) {
> + jobs[i] = igt_v3d_noop_job(fd);
> + jobs[i]->submit->out_sync = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> + }
> +
> + for (i = 0; i < num_jobs; i++)
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, jobs[i]->submit);
> +
> + igt_assert(syncobj_wait(fd, &jobs[num_jobs - 1]->submit->out_sync, 1, short_timeout(), 0, NULL));
> +
> + /*
> + * If the last job is signaled, then all the previous jobs should
> + * already signaled, to assure the implicit synchronization.
> + */
> + for (i = 0; i < num_jobs; i++) {
> + igt_assert(syncobj_wait(fd, &jobs[i]->submit->out_sync, 1, 0, 0, NULL));
> + igt_v3d_free_cl_job(fd, jobs[i]);
> + }
> +
> + free(jobs);
> + }
> +
> + igt_describe("Test the coherency of creation/destruction of a perfmon attached to a job.");
> + igt_subtest("job-perfmon") {
> + uint8_t counters[] = { V3D_PERFCNT_L2T_TMU_READS,
> + V3D_PERFCNT_L2T_CLE_READS,
> + V3D_PERFCNT_L2T_VCD_READS,
> + V3D_PERFCNT_L2T_TMUCFG_READS };
> + struct v3d_cl_job *job = igt_v3d_noop_job(fd);
> + uint32_t id;
> +
> + igt_require(igt_v3d_get_param(fd, DRM_V3D_PARAM_SUPPORTS_PERFMON));
> +
> + id = igt_v3d_perfmon_create(fd, ARRAY_SIZE(counters), counters);
> +
> + job->submit->out_sync = syncobj_create(fd, DRM_SYNCOBJ_CREATE_SIGNALED);
> + job->submit->perfmon_id = id;
> +
> + do_ioctl(fd, DRM_IOCTL_V3D_SUBMIT_CL, job->submit);
> + igt_assert(syncobj_wait(fd, &job->submit->out_sync, 1,
> + INT64_MAX, 0, NULL));
> + igt_v3d_perfmon_get_values(fd, job->submit->perfmon_id);
> +
> + igt_v3d_free_cl_job(fd, job);
> +
> + igt_v3d_perfmon_get_values(fd, id);
> + igt_v3d_perfmon_destroy(fd, id);
> + }
> +
> + igt_fixture
> + close(fd);
> +}
> diff --git a/tests/v3d_ci/v3d.testlist b/tests/v3d_ci/v3d.testlist
> index 54d28ce5..ecdea442 100644
> --- a/tests/v3d_ci/v3d.testlist
> +++ b/tests/v3d_ci/v3d.testlist
> @@ -10,6 +10,24 @@ igt@v3d/v3d_get_param@get-bad-flags
> igt@v3d/v3d_mmap@mmap-bad-flags
> igt@v3d/v3d_mmap@mmap-bad-handle
> igt@v3d/v3d_mmap@mmap-bo
> +igt@v3d/v3d_submit_cl@bad-pad
> +igt@v3d/v3d_submit_cl@bad-flag
> +igt@v3d/v3d_submit_cl@bad-extension
> +igt@v3d/v3d_submit_cl@bad-bo
> +igt@v3d/v3d_submit_cl@bad-perfmon
> +igt@v3d/v3d_submit_cl@bad-in-sync
> +igt@v3d/v3d_submit_cl@bad-multisync-pad
> +igt@v3d/v3d_submit_cl@bad-multisync-extension
> +igt@v3d/v3d_submit_cl@bad-multisync-out-sync
> +igt@v3d/v3d_submit_cl@bad-multisync-in-sync
> +igt@v3d/v3d_submit_cl@valid-submission
> +igt@v3d/v3d_submit_cl@simple-out-sync
> +igt@v3d/v3d_submit_cl@simple-in-sync
> +igt@v3d/v3d_submit_cl@simple-flush-cache
> +igt@v3d/v3d_submit_cl@multiple-job-submission
> +igt@v3d/v3d_submit_cl@multisync-out-sync
> +igt@v3d/v3d_submit_cl@multi-and-simple-sync
> +igt@v3d/v3d_submit_cl@job-perfmon
> igt@v3d/v3d_perfmon@create-perfmon-0
> igt@v3d/v3d_perfmon@create-perfmon-exceed
> igt@v3d/v3d_perfmon@create-perfmon-invalid-counters
> --
> 2.38.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2023-01-12 11:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-03 10:58 [igt-dev] [PATCH i-g-t 0/6] V3D Job Submission Tests Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 1/6] lib/v3d: Add V3D packet helpers Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 2/6] lib/v3d: Add V3D packet description Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 3/6] lib/v3d: Introduce the struct v3d_cl_job Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 4/6] lib/v3d: Add a helper to create a noop job Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 5/6] tests/v3d_wait_bo: Create test for V3D's Wait BO IOCTL Maíra Canal
2023-01-03 10:58 ` [igt-dev] [PATCH i-g-t 6/6] tests/v3d_submit_cl: Create test for V3D's Submit CL IOCTL Maíra Canal
2023-01-12 11:20 ` Melissa Wen [this message]
2023-01-03 12:02 ` [igt-dev] ✓ Fi.CI.BAT: success for V3D Job Submission Tests Patchwork
2023-01-03 16:25 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-01-12 11:24 ` [igt-dev] [PATCH i-g-t 0/6] " Melissa Wen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230112112032.jsk3ufradyj4tpai@mail.igalia.com \
--to=mwen@igalia.com \
--cc=emma@anholt.net \
--cc=igt-dev@lists.freedesktop.org \
--cc=itoral@igalia.com \
--cc=jason.ekstrand@collabora.com \
--cc=mcanal@igalia.com \
--cc=petri.latvala@intel.com \
--cc=robdclark@chromium.org \
--cc=tomeu.vizoso@collabora.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox