Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1675539 > unrolled thread

[PATCH V2] lightnvm: if LUNs are already allocated fix return

Started byRakesh Pandit <rakesh@tuxera.com>
First post2017-06-27 12:50 +0200
Last post2017-06-27 13:30 +0200
Articles 5 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH V2] lightnvm: if LUNs are already allocated fix return Rakesh Pandit <rakesh@tuxera.com> - 2017-06-27 12:50 +0200
    Re: [PATCH V2] lightnvm: if LUNs are already allocated fix return Frans Klaver <fransklaver@gmail.com> - 2017-06-27 13:10 +0200
      Re: [PATCH V2] lightnvm: if LUNs are already allocated fix return Frans Klaver <fransklaver@gmail.com> - 2017-06-27 13:30 +0200
        Re: [PATCH V2] lightnvm: if LUNs are already allocated fix return Rakesh Pandit <rakesh@tuxera.com> - 2017-06-27 13:40 +0200
      Re: [PATCH V2] lightnvm: if LUNs are already allocated fix return Rakesh Pandit <rakesh@tuxera.com> - 2017-06-27 13:30 +0200

#1675539 — [PATCH V2] lightnvm: if LUNs are already allocated fix return

FromRakesh Pandit <rakesh@tuxera.com>
Date2017-06-27 12:50 +0200
Subject[PATCH V2] lightnvm: if LUNs are already allocated fix return
Message-ID<tWWed-7HI-1@gated-at.bofh.it>
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

[toc] | [next] | [standalone]


#1675549

FromFrans Klaver <fransklaver@gmail.com>
Date2017-06-27 13:10 +0200
Message-ID<tWWxA-84J-9@gated-at.bofh.it>
In reply to#1675539
On Tue, Jun 27, 2017 at 12:43 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
> 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;

Why aren't you propagating ret in this version?

[toc] | [prev] | [next] | [standalone]


#1675575

FromFrans Klaver <fransklaver@gmail.com>
Date2017-06-27 13:30 +0200
Message-ID<tWWQV-8f0-3@gated-at.bofh.it>
In reply to#1675549
On Tue, Jun 27, 2017 at 1:23 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
> On Tue, Jun 27, 2017 at 01:01:22PM +0200, Frans Klaver wrote:
>> On Tue, Jun 27, 2017 at 12:43 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
>> > 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;
>>
>> Why aren't you propagating ret in this version?
>
> Well nvm_reserve_luns either returns 0 or -EBUSY and it is unlikely
> that return value would change and even if it does this can be
> updated.

If you propagate the result of nvm_reserve_luns(), the casual reader
will immediately understand that any possible faulty result is
returned. returning -EBUSY here might suggest you're overriding
whatever this function returns.

[toc] | [prev] | [next] | [standalone]


#1675579

FromRakesh Pandit <rakesh@tuxera.com>
Date2017-06-27 13:40 +0200
Message-ID<tWX0B-8iz-1@gated-at.bofh.it>
In reply to#1675575
On Tue, Jun 27, 2017 at 01:27:40PM +0200, Frans Klaver wrote:
> On Tue, Jun 27, 2017 at 1:23 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
> > On Tue, Jun 27, 2017 at 01:01:22PM +0200, Frans Klaver wrote:
> >> On Tue, Jun 27, 2017 at 12:43 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
> >> > 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;
> >>
> >> Why aren't you propagating ret in this version?
> >
> > Well nvm_reserve_luns either returns 0 or -EBUSY and it is unlikely
> > that return value would change and even if it does this can be
> > updated.
> 
> If you propagate the result of nvm_reserve_luns(), the casual reader
> will immediately understand that any possible faulty result is
> returned. returning -EBUSY here might suggest you're overriding
> whatever this function returns.

I don't have a strong opinion for or against. That was being done
irrespective of this change already.  But you have a valid argument.
I would post V3.

Thanks,

[toc] | [prev] | [next] | [standalone]


#1675576

FromRakesh Pandit <rakesh@tuxera.com>
Date2017-06-27 13:30 +0200
Message-ID<tWWQV-8f0-5@gated-at.bofh.it>
In reply to#1675549
On Tue, Jun 27, 2017 at 01:01:22PM +0200, Frans Klaver wrote:
> On Tue, Jun 27, 2017 at 12:43 PM, Rakesh Pandit <rakesh@tuxera.com> wrote:
> > 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;
> 
> Why aren't you propagating ret in this version?

Well nvm_reserve_luns either returns 0 or -EBUSY and it is unlikely
that return value would change and even if it does this can be
updated.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web