mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
ACPI / debugger: Fix a redundant mutex unlock issue in acpi_aml_open()
Fix a double mutex_unlock() issue where acpi_initialize_debugger() is called with the mutex already unlocked. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
ec74765d9f
commit
59adb3988e
1 changed files with 2 additions and 1 deletions
|
|
@ -514,7 +514,7 @@ static int acpi_aml_open(struct inode *inode, struct file *file)
|
||||||
if (ACPI_FAILURE(status)) {
|
if (ACPI_FAILURE(status)) {
|
||||||
pr_err("Failed to initialize debugger.\n");
|
pr_err("Failed to initialize debugger.\n");
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto err_lock;
|
goto err_exit;
|
||||||
}
|
}
|
||||||
pr_debug("Debugger thread initialized.\n");
|
pr_debug("Debugger thread initialized.\n");
|
||||||
|
|
||||||
|
|
@ -531,6 +531,7 @@ err_lock:
|
||||||
acpi_aml_active_reader = NULL;
|
acpi_aml_active_reader = NULL;
|
||||||
}
|
}
|
||||||
mutex_unlock(&acpi_aml_io.lock);
|
mutex_unlock(&acpi_aml_io.lock);
|
||||||
|
err_exit:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue