From: Greg KH <gregkh@linuxfoundation.org>
To: Yang Li <yang.lee@linux.alibaba.com>
Cc: arnd@arndb.de, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] misc: rtsx: check the value returned from a function for errors before being used
Date: Wed, 24 Mar 2021 11:17:16 +0100 [thread overview]
Message-ID: <YFsRrM8asMLeYzQq@kroah.com> (raw)
In-Reply-To: <1616580358-93156-1-git-send-email-yang.lee@linux.alibaba.com>
On Wed, Mar 24, 2021 at 06:05:58PM +0800, Yang Li wrote:
> Add missing return value check in pm_runtime_get disabling the
> sensor. The issue is reported by coverity with the following error:
>
> Medium:Unchecked return value(CHECKED_RETURN)
> CWE252: Value returned from a function is not checked for errors before
> being used.
> Calling "pm_runtime_get" without checking return value.
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
> ---
> drivers/misc/cardreader/rtsx_pcr.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/misc/cardreader/rtsx_pcr.c b/drivers/misc/cardreader/rtsx_pcr.c
> index 2733111..2cc37fd 100644
> --- a/drivers/misc/cardreader/rtsx_pcr.c
> +++ b/drivers/misc/cardreader/rtsx_pcr.c
> @@ -142,13 +142,16 @@ static void rtsx_pm_full_on(struct rtsx_pcr *pcr)
>
> void rtsx_pci_start_run(struct rtsx_pcr *pcr)
> {
> + int status;
> /* If pci device removed, don't queue idle work any more */
> if (pcr->remove_pci)
> return;
>
> if (pcr->rtd3_en)
> if (pcr->is_runtime_suspended) {
> - pm_runtime_get(&(pcr->pci->dev));
> + status = pm_runtime_get(&(pcr->pci->dev));
> + if (status < 0 && status != -EINPROGRESS)
> + pm_runtime_put_noidle(&(pcr->pci->dev));
> pcr->is_runtime_suspended = false;
> }
>
> --
> 1.8.3.1
>
Please always run scripts/checkpatch.pl on your patch before submitting
it.
thanks,
greg k-h
prev parent reply other threads:[~2021-03-24 10:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-24 10:05 Yang Li
2021-03-24 10:17 ` Greg KH [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=YFsRrM8asMLeYzQq@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=arnd@arndb.de \
--cc=linux-kernel@vger.kernel.org \
--cc=yang.lee@linux.alibaba.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
all inboxes | Powered by JetHome®