diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2021-03-29 16:38:30 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2021-03-30 19:53:24 +0200 |
commit | ecfb888ade427e2da437b48cafd8fc824e80c909 (patch) | |
tree | 38898d61801dad94249331c27a3f77c6e4eb07d5 /drivers/gpu/host1x/intr.h | |
parent | 49a5fb1679952a76861bd2580f785e33e3de712c (diff) | |
download | linux-ecfb888ade427e2da437b48cafd8fc824e80c909.tar.gz linux-ecfb888ade427e2da437b48cafd8fc824e80c909.tar.bz2 linux-ecfb888ade427e2da437b48cafd8fc824e80c909.zip |
gpu: host1x: Remove cancelled waiters immediately
Before this patch, cancelled waiters would only be cleaned up
once their threshold value was reached. Make host1x_intr_put_ref
process the cancellation immediately to fix this.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/host1x/intr.h')
-rw-r--r-- | drivers/gpu/host1x/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/host1x/intr.h b/drivers/gpu/host1x/intr.h index aac38194398f..6ea55e615e3a 100644 --- a/drivers/gpu/host1x/intr.h +++ b/drivers/gpu/host1x/intr.h @@ -74,8 +74,10 @@ int host1x_intr_add_action(struct host1x *host, struct host1x_syncpt *syncpt, * Unreference an action submitted to host1x_intr_add_action(). * You must call this if you passed non-NULL as ref. * @ref the ref returned from host1x_intr_add_action() + * @flush wait until any pending handlers have completed before returning. */ -void host1x_intr_put_ref(struct host1x *host, unsigned int id, void *ref); +void host1x_intr_put_ref(struct host1x *host, unsigned int id, void *ref, + bool flush); /* Initialize host1x sync point interrupt */ int host1x_intr_init(struct host1x *host, unsigned int irq_sync); |