From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-20.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 38EA4C433ED for ; Thu, 6 May 2021 02:03:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0B7E1613C5 for ; Thu, 6 May 2021 02:03:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230433AbhEFCEq (ORCPT ); Wed, 5 May 2021 22:04:46 -0400 Received: from mga14.intel.com ([192.55.52.115]:31378 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229488AbhEFCEp (ORCPT ); Wed, 5 May 2021 22:04:45 -0400 IronPort-SDR: XLr+nixspynvCVWT4z4TGKe6Nmp+0UPw6XzPETKZE+ImeSwZDBtpEM7iuorgu+7DNs9vhEnS7w JDnwoOtYAy2w== X-IronPort-AV: E=McAfee;i="6200,9189,9975"; a="197988479" X-IronPort-AV: E=Sophos;i="5.82,276,1613462400"; d="scan'208";a="197988479" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 May 2021 19:03:48 -0700 IronPort-SDR: hsXY+moxgPlM/JnokRj2yx+9JLaKfM1B5xLfRAax085W/rVM+VQVbmKQog+M5+tUynReb+lbG2 Nl3xjg41DlVg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,276,1613462400"; d="scan'208";a="464480381" Received: from lkp-server01.sh.intel.com (HELO a48ff7ddd223) ([10.239.97.150]) by fmsmga002.fm.intel.com with ESMTP; 05 May 2021 19:03:47 -0700 Received: from kbuild by a48ff7ddd223 with local (Exim 4.92) (envelope-from ) id 1leTMg-000AGo-Od; Thu, 06 May 2021 02:03:46 +0000 Date: Thu, 6 May 2021 10:03:28 +0800 From: kernel test robot To: Toms Atteka , netdev@vger.kernel.org Cc: kbuild-all@lists.01.org, Toms Atteka Subject: [PATCH] net-next: openvswitch: IPv6: fix semicolon.cocci warnings Message-ID: <20210506020328.GA28309@52682114a145> References: <20210505180808.20505-1-cpp.code.lv@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210505180808.20505-1-cpp.code.lv@gmail.com> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: kernel test robot net/openvswitch/flow.c:378:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Toms Atteka Reported-by: kernel test robot Signed-off-by: kernel test robot --- url: https://github.com/0day-ci/linux/commits/Toms-Atteka/net-next-openvswitch-IPv6-Add-IPv6-extension-header-support/20210506-021045 base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 4c7a94286ef7ac7301d633f17519fb1bb89d7550 flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c @@ -375,7 +375,7 @@ void get_ipv6_ext_hdrs(struct sk_buff *s break; next_type = hp->nexthdr; start += ipv6_optlen(hp); - }; + } } static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key)