All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ramamurthy, Harshitha <harshitha.ramamurthy@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH] i40evf: remove redundant array comparisons to 0 checks
Date: Thu, 15 Feb 2018 22:39:49 +0000	[thread overview]
Message-ID: <1518734431.29950.4.camel@intel.com> (raw)
In-Reply-To: <20180215194245.28860-1-colin.king@canonical.com>

On Thu, 2018-02-15 at 19:42 +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> The checks to see if key->dst.s6_addr and key->src.s6_addr are null
> pointers are redundant because these are constant size arrays and
> so the checks always return true.??Fix this by removing the redundant
> checks.
> 
> Detected by CoverityScan, CID#1465279 ("Array compared to 0")
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Acked-by: Harshitha Ramamurthy <harshitha.ramamurthy@intel.com>
> ---
> ?drivers/net/ethernet/intel/i40evf/i40evf_main.c | 25 +++++++++++--
> ------------
> ?1 file changed, 11 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/net/ethernet/intel/i40evf/i40evf_main.c
> b/drivers/net/ethernet/intel/i40evf/i40evf_main.c
> index 4955ce3ab6a2..63e4169828ea 100644
> --- a/drivers/net/ethernet/intel/i40evf/i40evf_main.c
> +++ b/drivers/net/ethernet/intel/i40evf/i40evf_main.c
> @@ -2710,22 +2710,19 @@ static int i40evf_parse_cls_flower(struct
> i40evf_adapter *adapter,
> ?		if (!ipv6_addr_any(&mask->dst) ||
> !ipv6_addr_any(&mask->src))
> ?			field_flags |= I40EVF_CLOUD_FIELD_IIP;
> ?
> -		if (key->dst.s6_addr) {
> -			for (i = 0; i < 4; i++)
> -				filter->f.mask.tcp_spec.dst_ip[i] |=
> +		for (i = 0; i < 4; i++)
> +			filter->f.mask.tcp_spec.dst_ip[i] |=
> ?							cpu_to_be32(
> 0xffffffff);
> -			memcpy(&filter->f.data.tcp_spec.dst_ip,
> -			???????&key->dst.s6_addr32,
> -			???????sizeof(filter-
> >f.data.tcp_spec.dst_ip));
> -		}
> -		if (key->src.s6_addr) {
> -			for (i = 0; i < 4; i++)
> -				filter->f.mask.tcp_spec.src_ip[i] |=
> +		memcpy(&filter->f.data.tcp_spec.dst_ip,
> +		???????&key->dst.s6_addr32,
> +		???????sizeof(filter->f.data.tcp_spec.dst_ip));
> +
> +		for (i = 0; i < 4; i++)
> +			filter->f.mask.tcp_spec.src_ip[i] |=
> ?							cpu_to_be32(
> 0xffffffff);
> -			memcpy(&filter->f.data.tcp_spec.src_ip,
> -			???????&key->src.s6_addr32,
> -			???????sizeof(filter-
> >f.data.tcp_spec.src_ip));
> -		}
> +		memcpy(&filter->f.data.tcp_spec.src_ip,
> +		???????&key->src.s6_addr32,
> +		???????sizeof(filter->f.data.tcp_spec.src_ip));
> ?	}
> ?	if (dissector_uses_key(f->dissector,
> FLOW_DISSECTOR_KEY_PORTS)) {
> ?		struct flow_dissector_key_ports *key =

  reply	other threads:[~2018-02-15 22:39 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-15 19:42 [Intel-wired-lan] [PATCH] i40evf: remove redundant array comparisons to 0 checks Colin King
2018-02-15 19:42 ` Colin King
2018-02-15 19:42 ` Colin King
2018-02-15 22:39 ` Ramamurthy, Harshitha [this message]
2018-02-16 16:51 ` [Intel-wired-lan] " Andy Shevchenko
2018-02-16 16:51   ` Andy Shevchenko
2018-02-16 16:51   ` Andy Shevchenko
2018-02-16 16:53   ` [Intel-wired-lan] " Colin Ian King
2018-02-16 16:53     ` Colin Ian King
2018-02-16 16:53     ` Colin Ian King
2018-02-18 14:58     ` [Intel-wired-lan] " Andy Shevchenko
2018-02-18 14:58       ` Andy Shevchenko
2018-02-18 14:58       ` Andy Shevchenko
2018-02-18 16:31       ` [Intel-wired-lan] " Joe Perches
2018-02-18 16:31         ` Joe Perches
2018-02-18 16:31         ` Joe Perches
2018-02-18 19:00         ` [Intel-wired-lan] " Colin Ian King
2018-02-18 19:00           ` Colin Ian King
2018-02-18 19:00           ` Colin Ian King

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=1518734431.29950.4.camel@intel.com \
    --to=harshitha.ramamurthy@intel.com \
    --cc=intel-wired-lan@osuosl.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.