From: David Daney <ddaney@caviumnetworks.com>
To: Sakshi Bansal <sakshi.april5@gmail.com>
Cc: <gregkh@linuxfoundation.org>, <aaro.koskinen@nokia.com>,
<ralf@linux-mips.org>, <david.daney@cavium.com>,
<paul.martin@codethink.co.uk>, <aybuke.147@gmail.com>,
<arnd@arndb.de>, <helen.fornazier@gmail.com>, <joe@perches.com>,
<okash.khawaja@gmail.com>, <janne.huttunen@nokia.com>,
<jamie.lawler@gmail.com>, <robertoxmed@gmail.com>,
<jtk54@cornell.edu>, <devel@driverdev.osuosl.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] staging: octeon: fixed few coding style warnings
Date: Wed, 14 Oct 2015 08:47:44 -0700 [thread overview]
Message-ID: <561E7920.2000903@caviumnetworks.com> (raw)
In-Reply-To: <20151014140637.GA23007@localhost.localdomain>
On 10/14/2015 07:06 AM, Sakshi Bansal wrote:
> Fixed allignment issues and line over 80 characters
Use spell checking on 'allignment'
But that is not the main problem with the patch...
You are changing things other than white space and comment formatting,
can you tell us on which platforms the patch was tested to verify that
you didn't break anything?
>
> Signed-off-by: Sakshi Bansal <sakshi.april5@gmail.com>
NAK.
[...]
> diff --git a/drivers/staging/octeon/ethernet-mdio.c b/drivers/staging/octeon/ethernet-mdio.c
> index fd9b3d8..590a6cb 100644
> --- a/drivers/staging/octeon/ethernet-mdio.c
> +++ b/drivers/staging/octeon/ethernet-mdio.c
> @@ -180,7 +180,7 @@ int cvm_oct_phy_setup_device(struct net_device *dev)
> priv->phydev = of_phy_connect(dev, phy_node, cvm_oct_adjust_link, 0,
> PHY_INTERFACE_MODE_GMII);
>
> - if (priv->phydev == NULL)
> + if (!priv->phydev)
Not a coding style change. There is no WARNING generated for this case.
> return -ENODEV;
>
> priv->last_link = 0;
> diff --git a/drivers/staging/octeon/ethernet-mem.c b/drivers/staging/octeon/ethernet-mem.c
> index 5a5cdb3..d6172e4 100644
> --- a/drivers/staging/octeon/ethernet-mem.c
> +++ b/drivers/staging/octeon/ethernet-mem.c
> @@ -34,7 +34,7 @@ static int cvm_oct_fill_hw_skbuff(int pool, int size, int elements)
> while (freed) {
> struct sk_buff *skb = dev_alloc_skb(size + 256);
>
> - if (unlikely(skb == NULL))
> + if (unlikely(!skb))
Same
> break;
> skb_reserve(skb, 256 - (((unsigned long)skb->data) & 0x7f));
> *(struct sk_buff **)(skb->data - sizeof(void *)) = skb;
> @@ -98,7 +98,7 @@ static int cvm_oct_fill_hw_memory(int pool, int size, int elements)
> * just before the block.
> */
> memory = kmalloc(size + 256, GFP_ATOMIC);
> - if (unlikely(memory == NULL)) {
> + if (unlikely(!memory)) {
Same
> pr_warn("Unable to allocate %u bytes for FPA pool %d\n",
> elements * size, pool);
> break;
> diff --git a/drivers/staging/octeon/ethernet-rgmii.c b/drivers/staging/octeon/ethernet-rgmii.c
> index 51dcb61..3d7513c 100644
> --- a/drivers/staging/octeon/ethernet-rgmii.c
> +++ b/drivers/staging/octeon/ethernet-rgmii.c
> @@ -68,7 +68,7 @@ static void cvm_oct_rgmii_poll(struct net_device *dev)
> struct octeon_ethernet *priv = netdev_priv(dev);
> unsigned long flags = 0;
> cvmx_helper_link_info_t link_info;
> - int use_global_register_lock = (priv->phydev == NULL);
> + int use_global_register_lock = (!priv->phydev);
Same.
I could go on, but I think you see the pattern here.
Your changelog says you are fixing warnings, but none of these are
warning fixes.
In fact it is perfectly acceptable to compare a pointer to NULL. It is
a common idiom in the kernel. The original author of the code thought
it was more clear this way, and you are causing code churn for no reason.
Try to run this command on the kernel sources:
$ git grep -e '== NULL' | wc -l
21488
I would suggest that you convince people that the other 21,000 cases of
comparison to NULL need changing before you do it to this driver.
David Daney
next prev parent reply other threads:[~2015-10-14 16:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-14 14:06 [PATCH] staging: octeon: fixed few coding style warnings Sakshi Bansal
2015-10-14 15:47 ` David Daney [this message]
[not found] ` <CAHqFf+uUJ4UjvVESkGf9Mqa000U0Ek7qEPwe8wZSvrY3XOzBvw@mail.gmail.com>
2015-10-14 15:57 ` David Daney
[not found] ` <CAHqFf+tUE6AhxRLPA89txFCUWSPDEVrYqCneA_jsDBgzGH+G_Q@mail.gmail.com>
2015-10-14 16:09 ` David Daney
2015-10-15 13:40 ` Dan Carpenter
2015-10-15 16:58 ` David Daney
2015-10-15 18:13 ` Dan Carpenter
2015-10-14 20:58 ` Arnd Bergmann
2015-10-14 21:04 ` David Daney
2015-10-14 21:32 ` Arnd Bergmann
2015-10-14 19:34 ` Aaro Koskinen
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=561E7920.2000903@caviumnetworks.com \
--to=ddaney@caviumnetworks.com \
--cc=aaro.koskinen@nokia.com \
--cc=arnd@arndb.de \
--cc=aybuke.147@gmail.com \
--cc=david.daney@cavium.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=helen.fornazier@gmail.com \
--cc=jamie.lawler@gmail.com \
--cc=janne.huttunen@nokia.com \
--cc=joe@perches.com \
--cc=jtk54@cornell.edu \
--cc=linux-kernel@vger.kernel.org \
--cc=okash.khawaja@gmail.com \
--cc=paul.martin@codethink.co.uk \
--cc=ralf@linux-mips.org \
--cc=robertoxmed@gmail.com \
--cc=sakshi.april5@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox