From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CD19AA00E6 for ; Tue, 6 Aug 2019 16:01:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BD23E1B954; Tue, 6 Aug 2019 16:01:37 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id D97691B954; Tue, 6 Aug 2019 16:01:35 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Aug 2019 07:01:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,353,1559545200"; d="scan'208";a="168305396" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.5]) by orsmga008.jf.intel.com with ESMTP; 06 Aug 2019 07:01:32 -0700 Date: Tue, 6 Aug 2019 22:01:04 +0800 From: Ye Xiaolong To: "Zhang, Xiao" , "Zhang, Qi Z" Cc: "dev@dpdk.org" , "Yang, Qiming" , "Xing, Beilei" , "stable@dpdk.org" Message-ID: <20190806140104.GA64886@intel.com> References: <1564952430-6585-1-git-send-email-xiao.zhang@intel.com> <1565047254-66826-1-git-send-email-xiao.zhang@intel.com> <20190805154627.GA66560@intel.com> <039ED4275CED7440929022BC67E7061153D79AA2@SHSMSX105.ccr.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <039ED4275CED7440929022BC67E7061153D79AA2@SHSMSX105.ccr.corp.intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-stable] [dpdk-dev] [v2 0/5] fix dereference after null check coverity X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, Xiao On 08/06, Zhang, Qi Z wrote: > > >> -----Original Message----- >> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ye Xiaolong >> Sent: Monday, August 5, 2019 11:46 PM >> To: Zhang, Xiao >> Cc: dev@dpdk.org; Yang, Qiming ; Xing, Beilei >> ; stable@dpdk.org >> Subject: Re: [dpdk-dev] [v2 0/5] fix dereference after null check coverity >> >> On 08/06, Xiao Zhang wrote: >> >This patch tries to fix (dereference after null check) coverity issue. >> >The address of first segmented packets for ice, iavf, i40e fm10k and >> >ixgbe was not set correctly during reassembling packets which led to this >> issue. >> > >> >Coverity issue: 343452 >> >Coverity issue: 343407 >> >Fixes: c68a52b8 ("net/ice: support vector SSE in Rx") Coverity issue: >> >343447 >> >Fixes: 319c421f ("net/avf: enable SSE Rx Tx") Coverity issue: 343422 >> >Coverity issue: 343403 >> >Fixes: ca74903b ("net/i40e: extract non-x86 specific code from vector >> >driver") Coverity issue: 343416 >> >Fixes: fe65e1e1 ("fm10k: add vector scatter Rx") Coverity issue: 13245 >> >Fixes: 8a44c15a ("net/ixgbe: extract non-x86 specific code from vector >> >driver") > >Fix tag size should be 12 You can add below alias section to you git config file to create proper fix tag conveniently. [alias] fixline = log -1 --abbrev=12 --format='Fixes: %h (\"%s\")%nCc: %ae' Thanks, Xiaolong