mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
test_firmware: fix missing unlock on error in config_num_requests_store()
Add the missing unlock before return from function
config_num_requests_store() in the error handling case.
Fixes: c92316bf8e
("test_firmware: add batched firmware tests")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
76f8ab1bd1
commit
a5e1923356
@ -371,6 +371,7 @@ static ssize_t config_num_requests_store(struct device *dev,
|
||||
if (test_fw_config->reqs) {
|
||||
pr_err("Must call release_all_firmware prior to changing config\n");
|
||||
rc = -EINVAL;
|
||||
mutex_unlock(&test_fw_mutex);
|
||||
goto out;
|
||||
}
|
||||
mutex_unlock(&test_fw_mutex);
|
||||
|
Loading…
Reference in New Issue
Block a user