mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08: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
@ -252,8 +252,9 @@ static int nvm_create_tgt(struct nvm_dev *dev, struct nvm_ioctl_create *create)
|
||||
}
|
||||
mutex_unlock(&dev->mlock);
|
||||
|
||||
if (nvm_reserve_luns(dev, s->lun_begin, s->lun_end))
|
||||
return -ENOMEM;
|
||||
ret = nvm_reserve_luns(dev, s->lun_begin, s->lun_end);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
t = kmalloc(sizeof(struct nvm_target), GFP_KERNEL);
|
||||
if (!t) {
|
||||
|
Loading…
Reference in New Issue
Block a user