summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_kbase_core_linux.c
diff options
context:
space:
mode:
authorKevin DuBois <kevindubois@google.com>2021-05-06 15:12:44 -0700
committerKevin DuBois <kevindubois@google.com>2021-05-07 16:10:28 +0000
commit0421b9bcae29eaf9caaa5f7c762a2cc13a570ed4 (patch)
tree3431b17aa284440569a4ca2e707e08057531a3fc /mali_kbase/mali_kbase_core_linux.c
parent0f9a2beaf55094d68b20bbad9dd6f9c4a37c1cd2 (diff)
downloadgpu-0421b9bcae29eaf9caaa5f7c762a2cc13a570ed4.tar.gz
Revert "mali_kbase: sync wakeup on event handoff from job done."
This reverts commit ef7db1a858a7c156d6310d11d04efbaf7e216bf6. Reason for Revert: subsequent merges added additional callsites for this wakeup that might not make sense. Reverting this seems to avert a long-runnable problem, so revert while targetting irq wakeup path more directly. Bug: 187129999 Change-Id: I5f685778b9a31c8dfeb2c22f8040ca29b439409d
Diffstat (limited to 'mali_kbase/mali_kbase_core_linux.c')
-rw-r--r--mali_kbase/mali_kbase_core_linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mali_kbase/mali_kbase_core_linux.c b/mali_kbase/mali_kbase_core_linux.c
index f78a11f..bae4ffd 100644
--- a/mali_kbase/mali_kbase_core_linux.c
+++ b/mali_kbase/mali_kbase_core_linux.c
@@ -2163,7 +2163,7 @@ void kbase_event_wakeup(struct kbase_context *kctx)
KBASE_DEBUG_ASSERT(kctx);
dev_dbg(kctx->kbdev->dev, "Waking event queue for context %p\n",
(void *)kctx);
- wake_up_interruptible_sync(&kctx->event_queue);
+ wake_up_interruptible(&kctx->event_queue);
}
KBASE_EXPORT_TEST_API(kbase_event_wakeup);