Skip to content
Snippets Groups Projects
Commit 685985d6 authored by rahix's avatar rahix
Browse files

chore(lifecycle): Make it more explicit where core1_mutex needs to be locked

All current callers handle this correctly but the assumption that
core1_mutex is locked while calling do_load(), load_async(), or
load_sync() should not be implicit.  Make it more explicit by adding
mutex assertions in all three functions.
parent 61fd90a8
No related branches found
No related tags found
1 merge request!445Fix lockup when attempting to load a l0dable with disabled ELF loading
......@@ -91,6 +91,9 @@ static int do_load(struct load_info *info)
struct l0dable_info l0dable;
int res;
/* Callers of do_load() must first lock the core1_mutex. */
mutex_assert_locked(&core1_mutex);
if (*info->name == '\0') {
LOG_INFO("lifecycle", "Loading Python interpreter ...");
} else {
......@@ -159,6 +162,9 @@ out_free_api:
*/
static int load_sync(char *name, bool reset)
{
/* Callers of load_sync() must first lock the core1_mutex. */
mutex_assert_locked(&core1_mutex);
int ret = load_stat(name);
if (ret < 0) {
return ret;
......@@ -181,6 +187,9 @@ static int load_sync(char *name, bool reset)
*/
static int load_async(char *name, bool reset)
{
/* Callers of load_async() must first lock the core1_mutex. */
mutex_assert_locked(&core1_mutex);
int ret = load_stat(name);
if (ret < 0) {
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment