All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] lightnvm: if LUNs are already allocated fix return
@ 2017-06-27 10:43 Rakesh Pandit
  2017-06-27 11:01 ` Frans Klaver
  0 siblings, 1 reply; 5+ messages in thread
From: Rakesh Pandit @ 2017-06-27 10:43 UTC (permalink / raw)
  To: Jens Axboe, Matias Bjørling
  Cc: linux-block, linux-kernel, Matias Bjørling, Frans Klaver,
	Javier González

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")
Signed-off-by: Rakesh Pandit <rakesh@tuxera.com>
---

V2: return error code directly instead of using ret variable (Frans)

 drivers/lightnvm/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
index b8f82f5..c5d71c6 100644
--- a/drivers/lightnvm/core.c
+++ b/drivers/lightnvm/core.c
@@ -253,7 +253,7 @@ 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;
+		return -EBUSY;
 
 	t = kmalloc(sizeof(struct nvm_target), GFP_KERNEL);
 	if (!t) {
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-27 11:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-27 10:43 [PATCH V2] lightnvm: if LUNs are already allocated fix return Rakesh Pandit
2017-06-27 11:01 ` Frans Klaver
2017-06-27 11:23   ` Rakesh Pandit
2017-06-27 11:27     ` Frans Klaver
2017-06-27 11:39       ` Rakesh Pandit

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.