[Intel-gfx] [PATCH v2 00/16] drm/i915: Remove short term pins from execbuf.

Tvrtko Ursulin tvrtko.ursulin at linux.intel.com
Wed Dec 1 13:11:57 UTC 2021


On 01/12/2021 11:15, Maarten Lankhorst wrote:
> On 30-11-2021 19:38, Tvrtko Ursulin wrote:
>>
>> On 30/11/2021 11:17, Maarten Lankhorst wrote:
>>> On 30-11-2021 09:54, Tvrtko Ursulin wrote:
>>>>
>>>> Hi,
>>>>
>>>> On 29/11/2021 13:47, Maarten Lankhorst wrote:
>>>>> New version of the series, with feedback from previous series added.
>>>>
>>>> If there was a cover letter sent for this work in the past could you please keep attaching it? Or if there wasn't, could you please write one?
>>>>
>>>> I am worried about two things. First is that we need to have a high level overview of the rules/design changes documented so third party people have any hope of getting code right after this lands. (Where we are, where we are going, how we will get there, how far did we get and when we will get to the end.)
>>>>
>>>> Second is that when parts of the series land piecemeal (Which they have in this right, right?), it gets very hard to write up a maintainer level changelog.
>>>
>>> The preparation part is to ensure we always hold vma->obj->resv when unbinding.
>>>
>>> The first preparation series ensured vma->obj always existed. This was not the case for mock gtt and gen6 aliasing gtt. This allowed us to remove all the special handling for those uncommon cases, and actually enforce we can always take that lock. This part is merged.
>>
>> Sounds good. But also mention the high level motivation for why we always want to hold vma->obj->resv when unbinding in the introduction as well.
>>
>>>
>>> Patch 2-11 in this series adds the vma->obj->resv to eviction and shrinker. Those are the only parts where we don't take the lock yet.
>>>
>>> After that, we always hold the lock when required, and we can start requiring the obj-> resv lock when unbinding. This is completed in patch 15.
>>>
>>> With that fixed, removing short term pins can be done, because for unbind we now always take obj->resv, so holding obj->resv during execbuf submission is sufficient, and all short term pinning can be removed.
>>
>> I'd also like the cover letter to contain a high level description on _why_ is removing short term pins needed or beneficial.
>>
>> What was the flow and object lifetimes so far, and what it will be going forward etc.
> 
> Previously, short term pinning in execbuf was required because i915_vma was effectively independent from objects, and has its own refcount, locking, and lifetime rules and pinning.
> This series removes the separate locking, by requiring vma->obj->resv to be held when pinning and unbinding. This will also be required for VM_BIND work.
> With pinning required for pinning and unbinding, the lock is enough to prevent unbinding when trying to pin with the lock held, like in execbuf.
> This makes binding/unbinding similar to ttm_bo_validate()'s use, which just cares that an object is in a certain place, without pinning it in place.
> 
> Having it part of gem bo removes a lot of the vma refcounting, and makes i915_vma more a part of the bo, instead of its own floating object that just
> happens to be part of a bo. This is also required to make it more compatible with TTM, and migration in general.
> 
> For future work, it makes things a lot simpler and clear. We want to end up with i915_vma just being a specific mapping of the BO, just like is the
> case in other drivers. i915_vma->active removal is the next step there, and makes it when object is destroyed, the bindings are destroyed (after idle),
> instead of object being destroyed when bindings are idle.

Excellent, that's exactly the level needed for the cover letter. So that 
as intro, plus some text about the series details like which part of the 
overall plan it implements and it will be good.

>>>
>>> We only pin temporarily when calling i915_gem_evict_vm in execbuf, which could also be handled in theory by just marking all objects as unpinned.
>>>
>>> As a bonus, using TTM for delayed eviction on all objects becomes easy, just need to get rid of i915_active in i915_vma, as it keeps the object refcount alive.
>>>
>>> Remainder is removing refcount to i915_vma, to make it a real
>>
>> Sounds on the right track with maybe a bit more text so the readers can easily understand it on the higher level.
> 
> With the obj->resv being the master lock, pinning for execbuf becomes obsolete and can be removed.

Out of personal curiosity about the long term plans - what will be the 
flow on request retirement in terms of unbinding?

Regards,

Tvrtko


More information about the Intel-gfx mailing list