From nobody Tue Jun 23 20:20:37 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DBB97C433F5 for ; Sun, 27 Feb 2022 13:22:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231193AbiB0NWv (ORCPT ); Sun, 27 Feb 2022 08:22:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40002 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231174AbiB0NWu (ORCPT ); Sun, 27 Feb 2022 08:22:50 -0500 Received: from out30-132.freemail.mail.aliyun.com (out30-132.freemail.mail.aliyun.com [115.124.30.132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D07D86D4D1; Sun, 27 Feb 2022 05:22:13 -0800 (PST) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R141e4;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=8;SR=0;TI=SMTPD_---0V5b5Y24_1645968129; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0V5b5Y24_1645968129) by smtp.aliyun-inc.com(127.0.0.1); Sun, 27 Feb 2022 21:22:10 +0800 From: Yang Li To: pshelar@ovn.org Cc: davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org, dev@openvswitch.org, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] net: openvswitch: remove unneeded semicolon Date: Sun, 27 Feb 2022 21:22:08 +0800 Message-Id: <20220227132208.24658-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Eliminate the following coccicheck warning: ./net/openvswitch/flow.c:379:2-3: Unneeded semicolon Reported-by: Abaci Robot Signed-off-by: Yang Li --- net/openvswitch/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index 8df73d86b968..372bf54a0ca9 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -376,7 +376,7 @@ static void get_ipv6_ext_hdrs(struct sk_buff *skb, stru= ct ipv6hdr *nh, break; next_type =3D hp->nexthdr; start +=3D ipv6_optlen(hp); - }; + } } =20 static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key) --=20 2.20.1.7.g153144c