All of lore.kernel.org
 help / color / mirror / Atom feed
From: Suraj Upadhyay <usuraj35@gmail.com>
To: Julia Lawall <julia.lawall@inria.fr>
Cc: davem@davemloft.net, kuba@kernel.org,
	linux-decnet-user@lists.sourceforge.net, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] decnet: dn_dev: Remove an unnecessary label.
Date: Tue, 14 Jul 2020 14:39:24 +0000	[thread overview]
Message-ID: <20200714142724.GC12651@blackclown> (raw)
In-Reply-To: <alpine.DEB.2.22.394.2007141615490.2355@hadrien>

[-- Attachment #1: Type: text/plain, Size: 1371 bytes --]

On Tue, Jul 14, 2020 at 04:16:15PM +0200, Julia Lawall wrote:
> 
> 
> On Tue, 14 Jul 2020, Suraj Upadhyay wrote:
> 
> > Remove the unnecessary label from dn_dev_ioctl() and make its error
> > handling simpler to read.
> >
> > Signed-off-by: Suraj Upadhyay <usuraj35@gmail.com>
> > ---
> >  net/decnet/dn_dev.c | 8 +++-----
> >  1 file changed, 3 insertions(+), 5 deletions(-)
> >
> > diff --git a/net/decnet/dn_dev.c b/net/decnet/dn_dev.c
> > index 65abcf1b3210..64901bb9f314 100644
> > --- a/net/decnet/dn_dev.c
> > +++ b/net/decnet/dn_dev.c
> > @@ -462,7 +462,9 @@ int dn_dev_ioctl(unsigned int cmd, void __user *arg)
> >  	switch (cmd) {
> >  	case SIOCGIFADDR:
> >  		*((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
> > -		goto rarok;
> > +		if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
> > +			ret = -EFAULT;
> > +			break;
> 
> The indentation on break does not look correct.
> 
> julia

Thanks for your response and advise, sent a v2 patch.

Suraj Upadhyay.

> >
> >  	case SIOCSIFADDR:
> >  		if (!ifa) {
> > @@ -485,10 +487,6 @@ int dn_dev_ioctl(unsigned int cmd, void __user *arg)
> >  	rtnl_unlock();
> >
> >  	return ret;
> > -rarok:
> > -	if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
> > -		ret = -EFAULT;
> > -	goto done;
> >  }
> >
> >  struct net_device *dn_dev_get_default(void)
> > --
> > 2.17.1
> >
> >

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Suraj Upadhyay <usuraj35@gmail.com>
To: Julia Lawall <julia.lawall@inria.fr>
Cc: davem@davemloft.net, kuba@kernel.org,
	linux-decnet-user@lists.sourceforge.net, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] decnet: dn_dev: Remove an unnecessary label.
Date: Tue, 14 Jul 2020 19:57:24 +0530	[thread overview]
Message-ID: <20200714142724.GC12651@blackclown> (raw)
In-Reply-To: <alpine.DEB.2.22.394.2007141615490.2355@hadrien>

[-- Attachment #1: Type: text/plain, Size: 1371 bytes --]

On Tue, Jul 14, 2020 at 04:16:15PM +0200, Julia Lawall wrote:
> 
> 
> On Tue, 14 Jul 2020, Suraj Upadhyay wrote:
> 
> > Remove the unnecessary label from dn_dev_ioctl() and make its error
> > handling simpler to read.
> >
> > Signed-off-by: Suraj Upadhyay <usuraj35@gmail.com>
> > ---
> >  net/decnet/dn_dev.c | 8 +++-----
> >  1 file changed, 3 insertions(+), 5 deletions(-)
> >
> > diff --git a/net/decnet/dn_dev.c b/net/decnet/dn_dev.c
> > index 65abcf1b3210..64901bb9f314 100644
> > --- a/net/decnet/dn_dev.c
> > +++ b/net/decnet/dn_dev.c
> > @@ -462,7 +462,9 @@ int dn_dev_ioctl(unsigned int cmd, void __user *arg)
> >  	switch (cmd) {
> >  	case SIOCGIFADDR:
> >  		*((__le16 *)sdn->sdn_nodeaddr) = ifa->ifa_local;
> > -		goto rarok;
> > +		if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
> > +			ret = -EFAULT;
> > +			break;
> 
> The indentation on break does not look correct.
> 
> julia

Thanks for your response and advise, sent a v2 patch.

Suraj Upadhyay.

> >
> >  	case SIOCSIFADDR:
> >  		if (!ifa) {
> > @@ -485,10 +487,6 @@ int dn_dev_ioctl(unsigned int cmd, void __user *arg)
> >  	rtnl_unlock();
> >
> >  	return ret;
> > -rarok:
> > -	if (copy_to_user(arg, ifr, DN_IFREQ_SIZE))
> > -		ret = -EFAULT;
> > -	goto done;
> >  }
> >
> >  struct net_device *dn_dev_get_default(void)
> > --
> > 2.17.1
> >
> >

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2020-07-14 14:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-14 14:13 [PATCH] decnet: dn_dev: Remove an unnecessary label Suraj Upadhyay
2020-07-14 14:25 ` Suraj Upadhyay
2020-07-14 14:16 ` Julia Lawall
2020-07-14 14:16   ` Julia Lawall
2020-07-14 14:27   ` Suraj Upadhyay [this message]
2020-07-14 14:39     ` Suraj Upadhyay

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200714142724.GC12651@blackclown \
    --to=usuraj35@gmail.com \
    --cc=davem@davemloft.net \
    --cc=julia.lawall@inria.fr \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux-decnet-user@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.