From: Bjorn Helgaas <bhelgaas@google.com>
To: Zhen Lei <thunder.leizhen@huawei.com>
Cc: linux-pci <linux-pci@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
Zefan Li <lizefan@huawei.com>, Xinwei Hu <huxinwei@huawei.com>,
Tianhong Ding <dingtianhong@huawei.com>,
Hanjun Guo <guohanjun@huawei.com>,
Yijing Wang <wangyijing@huawei.com>
Subject: Re: [PATCH 1/1] PCI: remove an unnecessary if statement
Date: Fri, 18 Sep 2015 16:01:30 -0500 [thread overview]
Message-ID: <20150918210130.GN25767@google.com> (raw)
In-Reply-To: <1441881631-5044-1-git-send-email-thunder.leizhen@huawei.com>
On Thu, Sep 10, 2015 at 06:40:31PM +0800, Zhen Lei wrote:
> This patch have no functional change. Successful return count, otherwise
> return -ENODEV.
>
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Applied with changelog below to pci/misc for v4.4, thanks!
commit 9222097f0d2f88db602c0340d19d90a1c72b5fec
Author: Zhen Lei <thunder.leizhen@huawei.com>
Date: Thu Sep 10 18:40:31 2015 +0800
PCI: Remove unnecessary "if" statement
In store_remove_id(), set the default return value to -ENODEV, and
overwrite it with the input buffer size if we find a matching list entry.
Then we don't need to test whether to return an error or the count.
No functional change.
[bhelgaas: changelog]
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
> ---
> drivers/pci/pci-driver.c | 8 +++-----
> 1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
> index 52a880c..02919ec 100644
> --- a/drivers/pci/pci-driver.c
> +++ b/drivers/pci/pci-driver.c
> @@ -172,7 +172,7 @@ static ssize_t store_remove_id(struct device_driver *driver, const char *buf,
> __u32 vendor, device, subvendor = PCI_ANY_ID,
> subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
> int fields = 0;
> - int retval = -ENODEV;
> + size_t retval = -ENODEV;
>
> fields = sscanf(buf, "%x %x %x %x %x %x",
> &vendor, &device, &subvendor, &subdevice,
> @@ -190,15 +190,13 @@ static ssize_t store_remove_id(struct device_driver *driver, const char *buf,
> !((id->class ^ class) & class_mask)) {
> list_del(&dynid->node);
> kfree(dynid);
> - retval = 0;
> + retval = count;
> break;
> }
> }
> spin_unlock(&pdrv->dynids.lock);
>
> - if (retval)
> - return retval;
> - return count;
> + return retval;
> }
> static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
>
> --
> 2.5.0
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2015-09-18 21:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-10 10:40 [PATCH 1/1] PCI: remove an unnecessary if statement Zhen Lei
2015-09-18 21:01 ` Bjorn Helgaas [this message]
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=20150918210130.GN25767@google.com \
--to=bhelgaas@google.com \
--cc=dingtianhong@huawei.com \
--cc=guohanjun@huawei.com \
--cc=huxinwei@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=thunder.leizhen@huawei.com \
--cc=wangyijing@huawei.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;
as well as URLs for NNTP newsgroup(s).