public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Christos Gkekas <chris.gekas@gmail.com>
To: Jon Mason <jdmason@kudzu.us>,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] vxge: Fix rts_mac_en config parameter check
Date: Sun, 24 Sep 2017 20:10:17 +0100	[thread overview]
Message-ID: <20170924191017.GA7358@inspiron> (raw)
In-Reply-To: <1506279021-7164-1-git-send-email-chris.gekas@gmail.com>

On 24/09/17 19:50:21 +0100, Christos Gkekas wrote:
> Current checks return VXGE_HW_BADCFG_RTS_MAC_EN if rts_mac_en is not
> equal to DISABLE *and* not equal to ENABLE. This condition is always
> false and the check should change to *or* to properly verify the value.
> 
> Signed-off-by: Christos Gkekas <chris.gekas@gmail.com>
> ---
>  drivers/net/ethernet/neterion/vxge/vxge-config.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/neterion/vxge/vxge-config.c b/drivers/net/ethernet/neterion/vxge/vxge-config.c
> index 6223930..c694f97 100644
> --- a/drivers/net/ethernet/neterion/vxge/vxge-config.c
> +++ b/drivers/net/ethernet/neterion/vxge/vxge-config.c
> @@ -1286,8 +1286,8 @@ __vxge_hw_device_config_check(struct vxge_hw_device_config *new_config)
>  	    (new_config->intr_mode != VXGE_HW_INTR_MODE_DEF))
>  		return VXGE_HW_BADCFG_INTR_MODE;
>  
> -	if ((new_config->rts_mac_en != VXGE_HW_RTS_MAC_DISABLE) &&
> -	    (new_config->rts_mac_en != VXGE_HW_RTS_MAC_ENABLE))
> +	if (new_config->rts_mac_en != VXGE_HW_RTS_MAC_DISABLE ||
> +	    new_config->rts_mac_en != VXGE_HW_RTS_MAC_ENABLE)
>  		return VXGE_HW_BADCFG_RTS_MAC_EN;
>  
>  	for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
> -- 
> 2.7.4
>

Please ignore the patch above, it was sent in error.

Thanks,
Chris

      reply	other threads:[~2017-09-24 19:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-24 18:50 [PATCH] vxge: Fix rts_mac_en config parameter check Christos Gkekas
2017-09-24 19:10 ` Christos Gkekas [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=20170924191017.GA7358@inspiron \
    --to=chris.gekas@gmail.com \
    --cc=jdmason@kudzu.us \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox