From: Joe Perches <joe@perches.com>
To: Thomas Jarosch <thomas.jarosch@intra2net.com>
Cc: Joerg Roedel <joerg.roedel@amd.com>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Fix comparison using wrong pointer variable in dma debug code
Date: Thu, 17 Nov 2011 12:03:12 -0800 [thread overview]
Message-ID: <1321560192.11312.2.camel@Joe-Laptop> (raw)
In-Reply-To: <4EC560F6.9050906@intra2net.com>
On Thu, 2011-11-17 at 20:31 +0100, Thomas Jarosch wrote:
> cppcheck reported:
> [lib/dma-debug.c:248] -> [lib/dma-debug.c:248]: (style) Same expression on both sides of '=='.
>
> Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
> ---
> lib/dma-debug.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/lib/dma-debug.c b/lib/dma-debug.c
> index 74c6c7f..fea790a 100644
> --- a/lib/dma-debug.c
> +++ b/lib/dma-debug.c
> @@ -245,7 +245,7 @@ static void put_hash_bucket(struct hash_bucket *bucket,
>
> static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
> {
> - return ((a->dev_addr == a->dev_addr) &&
> + return ((a->dev_addr == b->dev_addr) &&
> (a->dev == b->dev)) ? true : false;
> }
>
Perhaps more sensible without the unnecessary ?:
return a->dev_addr == b->dev_addr && a->dev == b->dev;
next prev parent reply other threads:[~2011-11-17 20:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-17 19:31 [PATCH] Fix comparison using wrong pointer variable in dma debug code Thomas Jarosch
2011-11-17 20:01 ` Neil Horman
2011-11-18 16:47 ` Thomas Jarosch
2011-11-17 20:03 ` Joe Perches [this message]
2011-11-21 10:37 ` Joerg Roedel
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=1321560192.11312.2.camel@Joe-Laptop \
--to=joe@perches.com \
--cc=joerg.roedel@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=thomas.jarosch@intra2net.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 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.