Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp2761423pxy; Sun, 25 Apr 2021 03:22:19 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy0CV1Vx+J+w1SKmshKdIZughxknJRqaAss+MX1PyZSOm3PIorrlmX7vuNQMa9xtKPpeB1W X-Received: by 2002:a17:906:3544:: with SMTP id s4mr13349455eja.73.1619346139414; Sun, 25 Apr 2021 03:22:19 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619346139; cv=none; d=google.com; s=arc-20160816; b=EpKPvJfUKP8GveYFMtRV3M9vUffqZeDnv0/W1XTuaziNvNOeXoHKcdtIejyes/Qj2M +sN7XUipecLDn9owgcEIOsp5Rfw4IR6WkAi6+fnyIpPdBUCJwVm3eQZp2o3dtGZZ61XA LbJtTZcRB1QnXDgayklPr8dmA3HWBYJKAdsgceBSRxAUeK8xaXWdtl4UsosHmJ99jGdQ zNVcBzTdUA1vbSupcfJnWNRN0b/uKEIPhJidgjw/o6mx7Eds/Myk6eJ3aZh6kI/9sAHx muGR2a2R4McRvFoR7+p+cyp31Sg5nlwr8owT0Z1LWXFY5rFK/S+UyRm4MSpdz08mpAov Ut/w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:message-id:date:subject:cc:to:from; bh=5CkbQT4S9hd8QriH5dt/0B4z4ozZQbv6NTBH2NrnpD8=; b=agR0eBDQYJXB6obIDehWG9LXkcK73OwIJFxB7wBlW2CCOx0/t2DHhkKpq0b1qWW2vU eBTDq1HXJLGH+vXYpXMOdsmgGIjTAguJiFhMlEvfrPAfGaXZXa2RfcmS9bhZumuKoNhP UPrfgSXLO/SfvSyiqwJnrQeHySHWJCVYvCxTCOjxEhy2XHiTrsUZR+mShGz9/uwJ53Gw N4IGa9w9izs+bsCO9U5oxm0328pQgUKTWyQxZ94I9sLqLgQFXqQTM/jY0PFd3euaaPlf Fgfnc2NQB/npzKs6GLZ+shF1QSWCfl5bRf38Jod35iL44Pb7b2HnWpymQv4jA4gsnhp/ 7I3Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hr29si9934545ejc.136.2021.04.25.03.21.55; Sun, 25 Apr 2021 03:22:19 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229916AbhDYKPP (ORCPT + 99 others); Sun, 25 Apr 2021 06:15:15 -0400 Received: from out30-54.freemail.mail.aliyun.com ([115.124.30.54]:33804 "EHLO out30-54.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229466AbhDYKPP (ORCPT ); Sun, 25 Apr 2021 06:15:15 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R131e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04394;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=9;SR=0;TI=SMTPD_---0UWfrnwm_1619345673; Received: from j63c13417.sqa.eu95.tbsite.net(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0UWfrnwm_1619345673) by smtp.aliyun-inc.com(127.0.0.1); Sun, 25 Apr 2021 18:14:34 +0800 From: Yang Li To: steffen.klassert@secunet.com Cc: herbert@gondor.apana.org.au, davem@davemloft.net, yoshfuji@linux-ipv6.org, dsahern@kernel.org, kuba@kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH] esp: drop unneeded assignment in esp4_gro_receive() Date: Sun, 25 Apr 2021 18:14:32 +0800 Message-Id: <1619345672-31802-1-git-send-email-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Making '!=' operation with 0 directly after calling the function xfrm_parse_spi() is more efficient, assignment to err is redundant. Eliminate the following clang_analyzer warning: net/ipv4/esp4_offload.c:41:7: warning: Although the value stored to 'err' is used in the enclosing expression, the value is never actually read from 'err' No functional change, only more efficient. Reported-by: Abaci Robot Signed-off-by: Yang Li --- net/ipv4/esp4_offload.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net/ipv4/esp4_offload.c b/net/ipv4/esp4_offload.c index 33687cf..be019a1 100644 --- a/net/ipv4/esp4_offload.c +++ b/net/ipv4/esp4_offload.c @@ -33,12 +33,11 @@ static struct sk_buff *esp4_gro_receive(struct list_head *head, struct xfrm_state *x; __be32 seq; __be32 spi; - int err; if (!pskb_pull(skb, offset)) return NULL; - if ((err = xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq)) != 0) + if (xfrm_parse_spi(skb, IPPROTO_ESP, &spi, &seq) != 0) goto out; xo = xfrm_offload(skb); -- 1.8.3.1