public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Antonio Argenziano <antonio.argenziano@intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, igt-dev@lists.freedesktop.org
Cc: Matthew Auld <matthew.auld@intel.com>
Subject: Re: [igt-dev] [RFT v4 4/6] igt/i915: Require GTT mapping to be available when needed.
Date: Fri, 5 Apr 2019 11:00:57 -0700	[thread overview]
Message-ID: <bb48767a-b5e6-170d-b16b-c25964849413@intel.com> (raw)
In-Reply-To: <155372188937.18978.11859150919280934208@skylake-alporthouse-com>



On 27/03/19 14:24, Chris Wilson wrote:
> Quoting Antonio Argenziano (2019-03-27 21:05:52)
>>
>>
>> On 25/03/19 16:36, Chris Wilson wrote:
>>> Quoting Antonio Argenziano (2019-03-25 23:20:41)
>>>> diff --git a/lib/igt_dummyload.c b/lib/igt_dummyload.c
>>>> index 47f6b92b..2e4c0335 100644
>>>> --- a/lib/igt_dummyload.c
>>>> +++ b/lib/igt_dummyload.c
>>>> @@ -117,9 +117,11 @@ emit_recursive_batch(igt_spin_t *spin,
>>>>           obj[BATCH].handle = gem_create(fd, BATCH_SIZE);
>>>>           batch = __gem_mmap__wc(fd, obj[BATCH].handle,
>>>>                                  0, BATCH_SIZE, PROT_WRITE);
>>>> -       if (!batch)
>>>> +       if (!batch) {
>>>> +               gem_require_mmap_gtt(fd);
>>>>                   batch = gem_mmap__gtt(fd, obj[BATCH].handle,
>>>>                                           BATCH_SIZE, PROT_WRITE);
>>>
>>> batch = __gem_mmap__gtt();
>>> igt_require(batch) ?
>>>
>>> Possibly not as informative as gem_require_mmap_gtt() So ~o~
>>>
>>>> diff --git a/tests/i915/gem_concurrent_all.c b/tests/i915/gem_concurrent_all.c
>>>> index f719b0a1..e4fc1426 100644
>>>> --- a/tests/i915/gem_concurrent_all.c
>>>> +++ b/tests/i915/gem_concurrent_all.c
>>>> @@ -1422,6 +1422,7 @@ static void cpu_require(void)
>>>>    
>>>>    static void gtt_require(void)
>>>>    {
>>>> +       gem_require_mmap_gtt(fd);
>>>>    }
>>>
>>> Needs the combinatorial explosion to exercise accessing via mmap-offset.
>>> If you only update one stress test, update this one.
>>
>> Don't we get the mmap-offset coverage by default in the wc test cases or
>> do you mean to use the mmap_offset IOCTL to mmap GTT?
> 
> No, I forgot that the library was going to automatic replacement of
> gem_mmap__wc and friends. Must update this stress test, it is useful
> simply because it runs forever and ends up being quite quite brutal.
> (Even the trivial starting tests are too often enough to reveal issues.)

AFAICT it already iterates over all mappings which include WC and CPU. 
We only skip gtt when gtt mapping is not available. What needs updating?

Antonio

> -Chris
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2019-04-05 18:00 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-25 23:20 [igt-dev] [RFT v4 1/6] lib/i915/gem_mman: Remove static variables Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 2/6] lib/i915: Add mmap_offset support Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 3/6] igt/lib: Add wrapper to check if gtt mapping is available Antonio Argenziano
2019-04-16 13:25   ` Katarzyna Dec
2019-04-16 13:28     ` Chris Wilson
2019-04-16 16:43       ` Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 4/6] igt/i915: Require GTT mapping to be available when needed Antonio Argenziano
2019-03-25 23:36   ` Chris Wilson
2019-03-27 21:05     ` Antonio Argenziano
2019-03-27 21:19       ` Chris Wilson
2019-04-11 18:13         ` Antonio Argenziano
2019-04-11 20:07           ` Chris Wilson
2019-04-11 21:27             ` Antonio Argenziano
2019-03-27 21:24       ` Chris Wilson
2019-04-05 18:00         ` Antonio Argenziano [this message]
2019-04-05 18:04           ` Chris Wilson
2019-04-11 18:13       ` Antonio Argenziano
2019-04-11 20:08         ` Chris Wilson
2019-04-16 14:38   ` Katarzyna Dec
2019-03-25 23:20 ` [igt-dev] [RFT v4 5/6] Coherency tests that need to be using WC + sync Antonio Argenziano
2019-04-16 14:43   ` Katarzyna Dec
2019-03-25 23:20 ` [igt-dev] [RFT v4 6/6] igt/lib: If mappable aperture is missing return 0 size Antonio Argenziano
2019-04-17  9:55   ` Katarzyna Dec
2019-03-26  9:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [RFT,v4,1/6] lib/i915/gem_mman: Remove static variables Patchwork
2019-04-16 13:27 ` [igt-dev] [RFT v4 1/6] " Katarzyna Dec
2019-04-16 15:29   ` Antonio Argenziano

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=bb48767a-b5e6-170d-b16b-c25964849413@intel.com \
    --to=antonio.argenziano@intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=matthew.auld@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