mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 20:07:09 +00:00
lightnvm: missing free on init error
If either max_phys_sect is out of bound, the nvm_dev structure is not freed. Signed-off-by: Matias Bjørling <m@bjorling.me> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
480fc0db81
commit
93e70c1f28
@ -313,11 +313,13 @@ int nvm_register(struct request_queue *q, char *disk_name,
|
|||||||
"ppalist");
|
"ppalist");
|
||||||
if (!dev->ppalist_pool) {
|
if (!dev->ppalist_pool) {
|
||||||
pr_err("nvm: could not create ppa pool\n");
|
pr_err("nvm: could not create ppa pool\n");
|
||||||
return -ENOMEM;
|
ret = -ENOMEM;
|
||||||
|
goto err_init;
|
||||||
}
|
}
|
||||||
} else if (dev->ops->max_phys_sect > 256) {
|
} else if (dev->ops->max_phys_sect > 256) {
|
||||||
pr_info("nvm: max sectors supported is 256.\n");
|
pr_info("nvm: max sectors supported is 256.\n");
|
||||||
return -EINVAL;
|
ret = -EINVAL;
|
||||||
|
goto err_init;
|
||||||
}
|
}
|
||||||
|
|
||||||
down_write(&nvm_lock);
|
down_write(&nvm_lock);
|
||||||
|
Loading…
Reference in New Issue
Block a user