From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Cc: igt-dev@lists.freedesktop.org, Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Subject: Re: [igt-dev] [PATCH i-g-t] i915/gem_ctx_exec: Exercise execution along context while closing it
Date: Fri, 4 Dec 2020 10:52:23 +0000 [thread overview]
Message-ID: <50454fb2-2f43-3fc6-50ba-587b787bca3f@linux.intel.com> (raw)
In-Reply-To: <20201203095914.1427672-1-chris@chris-wilson.co.uk>
On 03/12/2020 09:59, Chris Wilson wrote:
> Race the execution and interrupt handlers along a context, while
> closing it at a random time.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
> tests/i915/gem_ctx_exec.c | 60 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 60 insertions(+)
>
> diff --git a/tests/i915/gem_ctx_exec.c b/tests/i915/gem_ctx_exec.c
> index 194191def..18d5d1217 100644
> --- a/tests/i915/gem_ctx_exec.c
> +++ b/tests/i915/gem_ctx_exec.c
> @@ -336,6 +336,63 @@ static void nohangcheck_hostile(int i915)
> close(i915);
> }
>
> +static void close_race(int i915)
> +{
> + const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
> + uint32_t *contexts;
> +
> + contexts = mmap(NULL, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
> + igt_assert(contexts != MAP_FAILED);
> +
> + for (int child = 0; child < ncpus; child++)
> + contexts[child] = gem_context_clone_with_engines(i915, 0);
> +
> + igt_fork(child, ncpus) {
> + igt_spin_t *spin;
> +
> + spin = igt_spin_new(i915, .flags = IGT_SPIN_POLL_RUN);
> + igt_spin_end(spin);
> + gem_sync(i915, spin->handle);
> +
> + while (!READ_ONCE(contexts[ncpus])) {
> + int64_t timeout = 1;
> +
> + igt_spin_reset(spin);
> + igt_assert(!igt_spin_has_started(spin));
> +
> + spin->execbuf.rsvd1 = READ_ONCE(contexts[child]);
> + if (__gem_execbuf(i915, &spin->execbuf))
> + continue;
> +
> + igt_assert(gem_bo_busy(i915, spin->handle));
I've seen this line fail in CI results - any idea how that can happen?
> + gem_wait(i915, spin->handle, &timeout); /* prime irq */
Is this depending on implementation specific behaviour, that we will
leave the irq on after the waiter had exited?
> + igt_spin_busywait_until_started(spin);
> +
> + igt_spin_end(spin);
> + gem_sync(i915, spin->handle);
> + }
> +
> + igt_spin_free(i915, spin);
> + }
> +
> + igt_until_timeout(5) {
> + for (int child = 0; child < ncpus; child++) {
> + gem_context_destroy(i915, contexts[child]);
> + contexts[child] =
> + gem_context_clone_with_engines(i915, 0);
Right so deliberate attempt to occasionally make the child use closed
context. Presumably, well according to the CI results, it does manage to
consistently hit it, which surprises me a bit. A comment here would be good.
> + }
> + usleep(1000);
Maybe add some randomness here? Or even a random busy loop within the
child loop? I haven't looked at the i915 patch yet to know where the
race actually is..
> + }
> +
> + contexts[ncpus] = 1;
> + igt_waitchildren();
> +
> + for (int child = 0; child < ncpus; child++)
> + gem_context_destroy(i915, contexts[child]);
> +
> + munmap(contexts, 4096);
> +}
> +
> igt_main
> {
> const uint32_t batch[2] = { 0, MI_BATCH_BUFFER_END };
> @@ -380,6 +437,9 @@ igt_main
> igt_subtest("basic-nohangcheck")
> nohangcheck_hostile(fd);
>
> + igt_subtest("basic-close-race")
> + close_race(fd);
> +
> igt_subtest("reset-pin-leak") {
> int i;
>
>
Regards,
Tvrtko
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2020-12-04 10:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-03 9:57 [igt-dev] [PATCH i-g-t] i915/gem_ctx_exec: Exercise execution along context while closing it Chris Wilson
2020-12-03 9:59 ` Chris Wilson
2020-12-04 10:52 ` Tvrtko Ursulin [this message]
2020-12-04 11:13 ` Chris Wilson
2020-12-04 11:27 ` Chris Wilson
2020-12-04 13:53 ` [Intel-gfx] " Tvrtko Ursulin
2020-12-03 11:21 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_ctx_exec: Exercise execution along context while closing it (rev2) Patchwork
2020-12-03 16:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-12-04 12:08 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_ctx_exec: Exercise execution along context while closing it (rev3) Patchwork
2020-12-04 13:30 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
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=50454fb2-2f43-3fc6-50ba-587b787bca3f@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=igt-dev@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=tvrtko.ursulin@intel.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