From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH] i40e: unintended sign extension Date: Thu, 9 Jun 2016 16:14:08 +0100 Message-ID: <20160609151408.GD12520@bricha3-MOBL3> References: <1463749416-7658-1-git-send-email-slawomirx.mrozowicz@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: helin.zhang@intel.com, jingjing.wu@intel.com, dev@dpdk.org To: Slawomir Mrozowicz Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id DF0B41DB1 for ; Thu, 9 Jun 2016 17:14:57 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1463749416-7658-1-git-send-email-slawomirx.mrozowicz@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, May 20, 2016 at 03:03:36PM +0200, Slawomir Mrozowicz wrote: > Suspicious implicit sign extension: pf->fdir.match_counter_index > with type unsigned short (16 bits, unsigned) is promoted in > pf->fdir.match_counter_index << 20 to type int (32 bits, signed), > then sign-extended to type unsigned long (64 bits, unsigned). > If pf->fdir.match_counter_index << 20 is greater than 0x7FFFFFFF, > the upper bits of the result will all be 1. > To fix the issue set explicit cast uint32_t of pf->fdir.match_counter_index. > > Fixes: 05999aab4ca6 ("i40e: add or delete flow director") > Coverity ID 13315 > > Signed-off-by: Slawomir Mrozowicz Acked-by: Bruce Richardson Applied to dpdk-next-net/rel_16_07 /Bruce