* [Intel-gfx] [PATCH] drm/i915: Accomodate for nested dma_resv fence addition
@ 2022-12-19 11:36 Nirmoy Das
2022-12-19 11:52 ` Das, Nirmoy
2022-12-19 17:02 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
0 siblings, 2 replies; 3+ messages in thread
From: Nirmoy Das @ 2022-12-19 11:36 UTC (permalink / raw)
To: intel-gfx; +Cc: Thomas Hellström, Nirmoy Das
We have below nested fence slot reservation and then fence addition
to that dma_resv.
dma_resv_reserve_fences() from --> ttm_bo_handle_move_mem()
dma_resv_reserve_fences() from --> i915_vma_unbind_async()
dma_resv_add_fence() from --> i915_vma_unbind_async()
dma_resv_add_fence() from -->ttm_bo_move_accel_cleanup()
A nested dma_resv_reserve_fences will not reserve extra slots and if the
BO comes with lots of fences in its dma_resv, we might see:
BUG_ON(fobj->num_fences >= fobj->max_fences);
Suggested-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
drivers/gpu/drm/i915/i915_vma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
index 7d044888ac33..5ac4c1c2403c 100644
--- a/drivers/gpu/drm/i915/i915_vma.c
+++ b/drivers/gpu/drm/i915/i915_vma.c
@@ -2149,7 +2149,7 @@ int i915_vma_unbind_async(struct i915_vma *vma, bool trylock_vm)
if (!obj->mm.rsgt)
return -EBUSY;
- err = dma_resv_reserve_fences(obj->base.resv, 1);
+ err = dma_resv_reserve_fences(obj->base.resv, 2);
if (err)
return -EBUSY;
--
2.38.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Accomodate for nested dma_resv fence addition
2022-12-19 11:36 [Intel-gfx] [PATCH] drm/i915: Accomodate for nested dma_resv fence addition Nirmoy Das
@ 2022-12-19 11:52 ` Das, Nirmoy
2022-12-19 17:02 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Das, Nirmoy @ 2022-12-19 11:52 UTC (permalink / raw)
To: intel-gfx; +Cc: Thomas Hellström
This needs better explanation and probably CC to stable.
Please ignore this, I will resend.
Nirmoy
On 12/19/2022 1:36 PM, Nirmoy Das wrote:
> We have below nested fence slot reservation and then fence addition
> to that dma_resv.
> dma_resv_reserve_fences() from --> ttm_bo_handle_move_mem()
> dma_resv_reserve_fences() from --> i915_vma_unbind_async()
> dma_resv_add_fence() from --> i915_vma_unbind_async()
> dma_resv_add_fence() from -->ttm_bo_move_accel_cleanup()
>
> A nested dma_resv_reserve_fences will not reserve extra slots and if the
> BO comes with lots of fences in its dma_resv, we might see:
>
> BUG_ON(fobj->num_fences >= fobj->max_fences);
>
> Suggested-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> drivers/gpu/drm/i915/i915_vma.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
> index 7d044888ac33..5ac4c1c2403c 100644
> --- a/drivers/gpu/drm/i915/i915_vma.c
> +++ b/drivers/gpu/drm/i915/i915_vma.c
> @@ -2149,7 +2149,7 @@ int i915_vma_unbind_async(struct i915_vma *vma, bool trylock_vm)
> if (!obj->mm.rsgt)
> return -EBUSY;
>
> - err = dma_resv_reserve_fences(obj->base.resv, 1);
> + err = dma_resv_reserve_fences(obj->base.resv, 2);
> if (err)
> return -EBUSY;
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Accomodate for nested dma_resv fence addition
2022-12-19 11:36 [Intel-gfx] [PATCH] drm/i915: Accomodate for nested dma_resv fence addition Nirmoy Das
2022-12-19 11:52 ` Das, Nirmoy
@ 2022-12-19 17:02 ` Patchwork
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2022-12-19 17:02 UTC (permalink / raw)
To: Das, Nirmoy; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Accomodate for nested dma_resv fence addition
URL : https://patchwork.freedesktop.org/series/112054/
State : warning
== Summary ==
Error: dim checkpatch failed
ce8f7ee44caa drm/i915: Accomodate for nested dma_resv fence addition
-:4: WARNING:TYPO_SPELLING: 'Accomodate' may be misspelled - perhaps 'Accommodate'?
#4:
Subject: [PATCH] drm/i915: Accomodate for nested dma_resv fence addition
^^^^^^^^^^
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-12-19 17:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-19 11:36 [Intel-gfx] [PATCH] drm/i915: Accomodate for nested dma_resv fence addition Nirmoy Das
2022-12-19 11:52 ` Das, Nirmoy
2022-12-19 17:02 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox