From: "Christian König" <christian.koenig@amd.com>
To: "Matthew Auld" <matthew.auld@intel.com>,
dri-devel@lists.freedesktop.org,
"Intel Graphics" <intel-gfx@lists.freedesktop.org>,
"Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: Luben Tuikov <luben.tuikov@amd.com>
Subject: Re: [Intel-gfx] [PATCH 1/3] drm/i915: audit bo->resource usage
Date: Wed, 31 Aug 2022 13:03:13 +0200 [thread overview]
Message-ID: <1392ea7c-88a3-9a56-1ccb-e2f16cd55f72@amd.com> (raw)
In-Reply-To: <55d88b45-6986-de38-d574-d0ce7d06c62e@intel.com>
Am 31.08.22 um 12:37 schrieb Matthew Auld:
> [SNIP]
>>>
>>> That hopefully just leaves i915_ttm_shrink(), which is swapping out
>>> shmem ttm_tt and is calling ttm_bo_validate() with empty placements
>>> to force the pipeline-gutting path, which importantly unpopulates
>>> the ttm_tt for us (since ttm_tt_unpopulate is not exported it
>>> seems). But AFAICT it looks like that will now also nuke the
>>> bo->resource, instead of just leaving it in system memory. My
>>> assumption is that when later calling ttm_bo_validate(), it will
>>> just do the bo_move_null() in i915_ttm_move(), instead of
>>> re-populating the ttm_tt and then potentially copying it back to
>>> local-memory?
>>
>> Well you do ttm_bo_validate() with something like GTT domain, don't
>> you? This should result in re-populating the tt object, but I'm not
>> 100% sure if that really works as expected.
>
> AFAIK for domains we either have system memory (which uses ttm_tt and
> might be shmem underneath) or local-memory. But perhaps i915 is doing
> something wrong here, or abusing TTM in some way. I'm not sure tbh.
>
> Anyway, I think we have two cases here:
>
> - We have some system memory only object. After doing
> i915_ttm_shrink(), bo->resource is now NULL. We then call
> ttm_bo_validate() at some later point, but here we don't need to copy
> anything, but it also looks like ttm_bo_handle_move_mem() won't
> populate the ttm_tt or us either, since mem_type == TTM_PL_SYSTEM. It
> looks like i915_ttm_move() was taking care of this, but now we just
> call ttm_bo_move_null().
>
> - We have a local-memory only object, which was evicted to shmem, and
> then swapped out by the shrinker like above. The bo->resource is NULL.
> However this time when calling ttm_bo_validate() we need to actually
> do a copy in i915_ttm_move(), as well as re-populate the ttm_tt.
> i915_ttm_move() was taking care of this, but now we just call
> ttm_bo_move_null().
>
> Perhaps i915 is doing something wrong in the above two cases?
Mhm, as far as I can see that should still work.
See previously you should got a transition from SYSTEM->GTT in
i915_ttm_move() to re-create your backing store. Not you get
NULL->SYSTEM which is handled by ttm_bo_move_null() and then SYSTEM->GTT.
If you just validated to SYSTEM memory before I think the tt object
wouldn't have been populated either.
Regards,
Christian.
>
>>
>> Thanks,
>> Christian.
>>
>>>
>>>>
>>>> I've been considering to replacing the ttm_bo_type with a bunch of
>>>> behavior flags for a bo. I'm hoping that this will clean things up
>>>> a bit.
>>>>
>>>> Regards,
>>>> Christian.
>>>>
>>>>>
>>>>>>> caching = i915_ttm_select_tt_caching(obj);
>>>>>>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm_move.c
>>>>>>> b/drivers/gpu/drm/i915/gem/i915_gem_ttm_move.c
>>>>>>> index 9a7e50534b84bb..c420d1ab605b6f 100644
>>>>>>> --- a/drivers/gpu/drm/i915/gem/i915_gem_ttm_move.c
>>>>>>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm_move.c
>>>>>>> @@ -560,7 +560,7 @@ int i915_ttm_move(struct ttm_buffer_object
>>>>>>> *bo, bool evict,
>>>>>>> bool clear;
>>>>>>> int ret;
>>>>>>> - if (GEM_WARN_ON(!obj)) {
>>>>>>> + if (GEM_WARN_ON(!obj) || !bo->resource) {
>>>>>>> ttm_bo_move_null(bo, dst_mem);
>>>>>>> return 0;
>>>>>>> }
>>>>>>
>>>>
>>
next prev parent reply other threads:[~2022-08-31 11:03 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-24 14:23 [Intel-gfx] [PATCH 1/3] drm/i915: audit bo->resource usage Luben Tuikov
2022-08-24 14:23 ` [Intel-gfx] [PATCH 2/3] drm/ttm: stop allocating dummy resources during BO creation Luben Tuikov
2022-08-24 14:23 ` [Intel-gfx] [PATCH 3/3] drm/ttm: stop allocating a dummy resource for pipelined gutting Luben Tuikov
2022-08-24 16:21 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915: audit bo->resource usage Patchwork
2022-08-24 16:44 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2022-08-30 7:33 ` [Intel-gfx] [PATCH 1/3] " Christian König
2022-08-30 10:45 ` Matthew Auld
2022-08-31 8:16 ` Christian König
2022-08-31 9:26 ` Matthew Auld
2022-08-31 9:38 ` Christian König
2022-08-31 10:37 ` Matthew Auld
2022-08-31 11:03 ` Christian König [this message]
2022-08-31 12:06 ` Matthew Auld
2022-08-31 12:35 ` Christian König
2022-08-31 12:50 ` Matthew Auld
2022-08-31 13:34 ` Christian König
2022-08-31 14:53 ` Matthew Auld
2022-08-31 16:32 ` Matthew Auld
2022-09-01 8:00 ` Christian König
2022-09-01 12:52 ` Matthew Auld
2022-09-01 17:48 ` Thomas Hellström
2022-09-01 8:43 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for series starting with [1/3] drm/i915: audit bo->resource usage (rev2) Patchwork
-- strict thread matches above, loose matches on Subject: below --
2022-07-12 11:46 [Intel-gfx] [PATCH 1/3] drm/i915: audit bo->resource usage Christian König
2022-07-13 10:08 ` Matthew Auld
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=1392ea7c-88a3-9a56-1ccb-e2f16cd55f72@amd.com \
--to=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=luben.tuikov@amd.com \
--cc=matthew.auld@intel.com \
--cc=thomas.hellstrom@linux.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