DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Mody, Rasesh" <Rasesh.Mody@cavium.com>
To: Ferruh Yigit <ferruh.yigit@intel.com>,
	Andy Green <andy@warmcat.com>, "dev@dpdk.org" <dev@dpdk.org>,
	"Patil, Harish" <Harish.Patil@cavium.com>
Subject: Re: [dpdk-dev] [PATCH v3 2/4] net/bnx2x: correct unmeetable comparison
Date: Mon, 14 May 2018 22:17:28 +0000	[thread overview]
Message-ID: <MWHPR0701MB3675190AB0F275175087663A9F9C0@MWHPR0701MB3675.namprd07.prod.outlook.com> (raw)
In-Reply-To: <0368d85d-bf9e-bbeb-c8de-713015f2fb4a@intel.com>

> From: Ferruh Yigit [mailto:ferruh.yigit@intel.com]
> Sent: Monday, May 14, 2018 4:17 AM
> To: Andy Green <andy@warmcat.com>; dev@dpdk.org; Patil, Harish
> <Harish.Patil@cavium.com>; Mody, Rasesh <Rasesh.Mody@cavium.com>
> Subject: Re: [dpdk-dev] [PATCH v3 2/4] net/bnx2x: correct unmeetable
> comparison
> 
> On 5/14/2018 6:04 AM, Andy Green wrote:
> > /home/agreen/projects/dpdk/drivers/net/bnx2x/elink.c:
> > In function ‘elink_check_kr2_wa’:
> > /home/agreen/projects/dpdk/drivers/net/bnx2x/elink.c:12922:28:
> > error: bitwise comparison always evaluates to false
> > [-Werror=tautological-compare]
> >         ((next_page & 0xe0) == 0x2))));
> >
> > This was fixed elsewhere in 2014
> 
> To be able to apply this fix in dpdk I think we need maintainers ack on this
> change, they are cc'ed.

Patch acked.

Thanks!
-Rasesh
 
> >
> > Signed-off-by: Andy Green <andy@warmcat.com>
> > Fixes: b5bf7719221d ("bnx2x: driver support routines")
> > Cc: stable@dpdk.org
> > ---
> >  drivers/net/bnx2x/elink.c |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/net/bnx2x/elink.c b/drivers/net/bnx2x/elink.c
> > index cceae6f9b..74e1bead3 100644
> > --- a/drivers/net/bnx2x/elink.c
> > +++ b/drivers/net/bnx2x/elink.c
> > @@ -12921,7 +12921,7 @@ static void elink_check_kr2_wa(struct
> elink_params *params,
> >  	 */
> >  	not_kr2_device = (((base_page & 0x8000) == 0) ||
> >  			  (((base_page & 0x8000) &&
> > -			    ((next_page & 0xe0) == 0x2))));
> > +			    ((next_page & 0xe0) == 0x20))));
> >
> >  	/* In case KR2 is already disabled, check if we need to re-enable it */
> >  	if (!(vars->link_attr_sync & LINK_ATTR_SYNC_KR2_ENABLE)) {
> >


  reply	other threads:[~2018-05-14 22:17 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-12  1:51 [dpdk-dev] [PATCH v2 0/4] GCC8 fixes for MLX4/5/BNX2X PMD Andy Green
2018-05-12  1:51 ` [dpdk-dev] [PATCH v2 1/4] net/bnx2x: do not cast function pointers as a policy Andy Green
2018-05-12  1:51 ` [dpdk-dev] [PATCH v2 2/4] net/bnx2x: correct unmeetable comparison Andy Green
2018-05-12  1:51 ` [dpdk-dev] [PATCH v2 3/4] net/mlx5: solve var may be used uninitialized Andy Green
2018-05-12  1:51 ` [dpdk-dev] [PATCH v2 4/4] net/bnx2x: solve overruns Andy Green
2018-05-14  5:04 ` [dpdk-dev] [PATCH v3 0/4] GCC8 fixes for MLX4/5/BNX2X PMD Andy Green
2018-05-14  5:04   ` [dpdk-dev] [PATCH v3 1/4] net/bnx2x: do not cast function pointers as a policy Andy Green
2018-05-15 19:47     ` Mody, Rasesh
2018-05-14  5:04   ` [dpdk-dev] [PATCH v3 2/4] net/bnx2x: correct unmeetable comparison Andy Green
2018-05-14 11:17     ` Ferruh Yigit
2018-05-14 22:17       ` Mody, Rasesh [this message]
2018-05-14 22:16     ` Mody, Rasesh
2018-05-15 14:46       ` Thomas Monjalon
2018-05-15 19:52         ` Mody, Rasesh
2018-05-14  5:04   ` [dpdk-dev] [PATCH v3 3/4] net/mlx5: solve var may be used uninitialized Andy Green
2018-05-15 17:25     ` Yongseok Koh
2018-05-14  5:04   ` [dpdk-dev] [PATCH v3 4/4] net/bnx2x: solve overruns Andy Green
2018-05-15 19:47     ` Mody, Rasesh
2018-05-15 20:30   ` [dpdk-dev] [PATCH v3 0/4] GCC8 fixes for MLX4/5/BNX2X PMD Thomas Monjalon

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=MWHPR0701MB3675190AB0F275175087663A9F9C0@MWHPR0701MB3675.namprd07.prod.outlook.com \
    --to=rasesh.mody@cavium.com \
    --cc=Harish.Patil@cavium.com \
    --cc=andy@warmcat.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.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).