mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-06 22:42:10 +00:00
lightnvm: if LUNs are already allocated fix return
While creating new device with NVM_DEV_CREATE if LUNs are already
allocated ioctl would return -ENOMEM which is wrong. This patch
propagates -EBUSY from nvm_reserve_luns which is correct response.
Fixes: ade69e243
("lightnvm: merge gennvm with core")
Reviewed-by: Frans Klaver <fransklaver@gmail.com>
Signed-off-by: Rakesh Pandit <rakesh@tuxera.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
588726d3ec
commit
12e9a6d622
1 changed files with 3 additions and 2 deletions
|
@ -252,8 +252,9 @@ static int nvm_create_tgt(struct nvm_dev *dev, struct nvm_ioctl_create *create)
|
||||||
}
|
}
|
||||||
mutex_unlock(&dev->mlock);
|
mutex_unlock(&dev->mlock);
|
||||||
|
|
||||||
if (nvm_reserve_luns(dev, s->lun_begin, s->lun_end))
|
ret = nvm_reserve_luns(dev, s->lun_begin, s->lun_end);
|
||||||
return -ENOMEM;
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
t = kmalloc(sizeof(struct nvm_target), GFP_KERNEL);
|
t = kmalloc(sizeof(struct nvm_target), GFP_KERNEL);
|
||||||
if (!t) {
|
if (!t) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue