From patchwork Sat Apr 23 04:52:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 12824418 X-Patchwork-Delegate: matthieu.baerts@tessares.net Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EA36C7A for ; Sat, 23 Apr 2022 04:52:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650689567; x=1682225567; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=Tgxh758exIhI66Wtjp96OuJHHjIVMXN1S3Tx1LU1fG4=; b=MRJCzXi4i5LC8ucpKRUGqasDWI0Zerf6Bfe2hUokLCQmq8bzh+iOgLXN 98UayrZbjI7crUIB/uHsLZ4/EYsKhp4fV6WSldH4V/R7KN0ZHPAMS5qV+ rUQMnA+D+mzYML4H0v/rh4LKLPK3mUgzIhIBgWFTbGsoXxQda3R94plSN pHPtpviCXnMiFz7uWbu39yNya4y5mzPc2VPKsbGp4RYB3pJt7kxq8R/QW 70AMoSgebiu5Ue46WXHIF7CAW+hSrBdwZ+Xu8xA+sj6mwu70Gh/g5vB01 sGE6Ey2ZMsUoHrDt5xSvAxly/SkrhOgBEDUZZht2MDviLpSrbn76Lv3H6 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="289979229" X-IronPort-AV: E=Sophos;i="5.90,283,1643702400"; d="scan'208";a="289979229" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Apr 2022 21:52:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,283,1643702400"; d="scan'208";a="511855278" Received: from lkp-server01.sh.intel.com (HELO 3abc53900bec) ([10.239.97.150]) by orsmga003.jf.intel.com with ESMTP; 22 Apr 2022 21:52:45 -0700 Received: from kbuild by 3abc53900bec with local (Exim 4.95) (envelope-from ) id 1ni7lE-000B1T-Lj; Sat, 23 Apr 2022 04:52:44 +0000 Date: Sat, 23 Apr 2022 12:52:22 +0800 From: kernel test robot To: Paolo Abeni Cc: kbuild-all@lists.01.org, mptcp@lists.linux.dev, Matthieu Baerts , Mat Martineau Subject: [PATCH] mptcp: fix semicolon.cocci warnings Message-ID: References: <202204231205.qD8O1MNA-lkp@intel.com> Precedence: bulk X-Mailing-List: mptcp@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <202204231205.qD8O1MNA-lkp@intel.com> From: kernel test robot net/mptcp/options.c:1254:3-4: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 57b108d2e621 ("mptcp: never shrink offered window") CC: Paolo Abeni Reported-by: kernel test robot Signed-off-by: kernel test robot --- tree: https://github.com/multipath-tcp/mptcp_net-next.git export head: 242bc8552034f5b320b9f66f00a528a317b4dc4a commit: 57b108d2e6211ae04a366f93dfebcc8a3f7d5ccf [12/68] mptcp: never shrink offered window :::::: branch date: 14 hours ago :::::: commit date: 14 hours ago net/mptcp/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/mptcp/options.c +++ b/net/mptcp/options.c @@ -1251,7 +1251,7 @@ static void mptcp_set_rwin(struct tcp_so if (before64(rcv_wnd_new, rcv_wnd)) goto raise_win; rcv_wnd_old = rcv_wnd; - }; + } return; }