[PATCH] async.c: reduce the critical region in lowest_in_progress()

From: Hui Su
Date: Thu Oct 15 2020 - 10:06:23 EST


The judgement of first do not need to be in the critical region.
So move it out.

Signed-off-by: Hui Su <sh_def@xxxxxxx>
---
kernel/async.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/async.c b/kernel/async.c
index 33258e6e20f8..9d33ffcc84c7 100644
--- a/kernel/async.c
+++ b/kernel/async.c
@@ -96,10 +96,10 @@ static async_cookie_t lowest_in_progress(struct async_domain *domain)
struct async_entry, global_list);
}

+ spin_unlock_irqrestore(&async_lock, flags);
if (first)
ret = first->cookie;

- spin_unlock_irqrestore(&async_lock, flags);
return ret;
}

--
2.25.1