[PATCH] omapfb: use complete() instead complete_all()

From: Daniel Wagner
Date: Fri Sep 23 2016 - 07:33:41 EST


From: Daniel Wagner <daniel.wagner@xxxxxxxxxxxx>

There is only one waiter for the completion, therefore there
is no need to use complete_all(). Let's make that clear by
using complete() instead of complete_all().

While we are at it, we also change the init_completion() to
reinit_completion() which slightly lighter.

The usage pattern of the completion is:

waiter context waker context

dss_mgr_disable_compat()
mutex_lock(apply_lock)
wait_pending_extra_info_updates()
reinit_completion()
wait_for_completion_timeout()
mutex_unlock(apply_lock)

dss_ovl_unset_manager()
mutex_lock(apply_lock)
wait_pending_extra_info_updates()
reinit_completion()
wait_for_completion_timeout()
mutex_unlock(apply_lock)

dss_apply_irq_handler()
complete()

Furthermore dss_mgr_disable_compat(), dss_ovl_unset_manager and
dss_apply_irq_handler() are serialized via the data_lock spinlock. That
means the reinit_completion() and complete() call do not race. The only
problem there could be the ordering of those two functions. It is not
clear to me if that is enforced by the hardware or the design of the
driver. Given the fact this has been in place since years, it should
just work as before.

Signed-off-by: Daniel Wagner <daniel.wagner@xxxxxxxxxxxx>
Cc: Tomi Valkeinen <tomi.valkeinen@xxxxxx>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@xxxxxxxxxxxx>
Cc: linux-omap@xxxxxxxxxxxxxxx
Cc: linux-fbdev@xxxxxxxxxxxxxxx
---
drivers/video/fbdev/omap2/omapfb/dss/apply.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/omap2/omapfb/dss/apply.c b/drivers/video/fbdev/omap2/omapfb/dss/apply.c
index 2481f48..f345aa9 100644
--- a/drivers/video/fbdev/omap2/omapfb/dss/apply.c
+++ b/drivers/video/fbdev/omap2/omapfb/dss/apply.c
@@ -413,7 +413,7 @@ static void wait_pending_extra_info_updates(void)
return;
}

- init_completion(&extra_updated_completion);
+ reinit_completion(&extra_updated_completion);

spin_unlock_irqrestore(&data_lock, flags);

@@ -922,7 +922,7 @@ static void dss_apply_irq_handler(void *data, u32 mask)

extra_updating = extra_info_update_ongoing();
if (!extra_updating)
- complete_all(&extra_updated_completion);
+ complete(&extra_updated_completion);

/* call framedone handlers for manual update displays */
for (i = 0; i < num_mgrs; i++) {
--
2.7.4