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=-13.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable 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 827DDC4727E for ; Thu, 1 Oct 2020 20:51:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4175120738 for ; Thu, 1 Oct 2020 20:51:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730017AbgJAUvM (ORCPT ); Thu, 1 Oct 2020 16:51:12 -0400 Received: from mga04.intel.com ([192.55.52.120]:1488 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726606AbgJAUvM (ORCPT ); Thu, 1 Oct 2020 16:51:12 -0400 IronPort-SDR: Q208sxbvBpfAdVKY5VgZAZn8BAo0sL178rB78gaUo4R+D0Nfhu7jg8/K3fqlDQ8haANqhv/L62 0+oV+A58XNFA== X-IronPort-AV: E=McAfee;i="6000,8403,9761"; a="160247674" X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="160247674" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Oct 2020 13:51:10 -0700 IronPort-SDR: 1WoWD3tSYbFzQBWeDTTaPfvEOu+7ixNbKFfbkUjqGno6QjTOAq4jaTjd3jXSQ7+Ly60CB5l7FW 2VRpEozO+XCA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="339703561" Received: from lkp-server02.sh.intel.com (HELO de448af6ea1b) ([10.239.97.151]) by fmsmga004.fm.intel.com with ESMTP; 01 Oct 2020 13:51:08 -0700 Received: from kbuild by de448af6ea1b with local (Exim 4.92) (envelope-from ) id 1kO5Xf-0000kE-FY; Thu, 01 Oct 2020 20:51:07 +0000 Date: Fri, 2 Oct 2020 04:50:49 +0800 From: kernel test robot To: Nick Terrell , Herbert Xu Cc: kbuild-all@lists.01.org, linux-crypto@vger.kernel.org, linux-btrfs@vger.kernel.org, squashfs-devel@lists.sourceforge.net, linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, Kernel Team , Nick Terrell , Chris Mason , Petr Malat Subject: [PATCH] lib: zstd: fix semicolon.cocci warnings Message-ID: <20201001205049.GA6920@f58d09cd8e1e> References: <20200930065318.3326526-4-nickrterrell@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200930065318.3326526-4-nickrterrell@gmail.com> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org From: kernel test robot lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Nick Terrell Signed-off-by: kernel test robot --- url: https://github.com/0day-ci/linux/commits/Nick-Terrell/Update-to-zstd-1-4-6/20200930-145157 base: https://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-next zstd_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/zstd/compress/zstd_compress.c +++ b/lib/zstd/compress/zstd_compress.c @@ -3245,7 +3245,7 @@ size_t ZSTD_compress(void* dst, size_t d ZSTD_CCtx* cctx = ZSTD_createCCtx(); RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed"); result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel); - ZSTD_freeCCtx(cctx);; + ZSTD_freeCCtx(cctx); return result; } 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=-13.0 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,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 AF9B5C47423 for ; Thu, 1 Oct 2020 20:51:37 +0000 (UTC) Received: from lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 2761F206A4; Thu, 1 Oct 2020 20:51:37 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=sourceforge.net header.i=@sourceforge.net header.b="KjcfZvmR"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=sf.net header.i=@sf.net header.b="asx2KrxH" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2761F206A4 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linux-f2fs-devel-bounces@lists.sourceforge.net Received: from [127.0.0.1] (helo=sfs-ml-4.v29.lw.sourceforge.com) by sfs-ml-4.v29.lw.sourceforge.com with esmtp (Exim 4.90_1) (envelope-from ) id 1kO5Y5-0001ks-C6; Thu, 01 Oct 2020 20:51:33 +0000 Received: from [172.30.20.202] (helo=mx.sourceforge.net) by sfs-ml-4.v29.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kO5Y2-0001kf-6j; Thu, 01 Oct 2020 20:51:30 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=In-Reply-To:Content-Type:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=GudAcBfO2aHwVvPZH6uHcPJdmR4/X7WkRhgHdvLJ5S8=; b=KjcfZvmRjTgS4GG4fcCdaW7WmV dF7gyzkRPIls6sFLKvAVdMAbcJ74KT50Ww4SANQDykeNc52DF9SdJcQXvKtJcEYUgYcttyiquYTcl zs6B+wtF3fTL4jjCA79qA3OuIiMHVMw/M6Q0pjKPkJOnETEgdyp+SYkSTaMUnVzxRIiE=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To :From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=GudAcBfO2aHwVvPZH6uHcPJdmR4/X7WkRhgHdvLJ5S8=; b=asx2KrxHbJe05dmGmIBr4+TJl8 jbQ2/2CmZux3x+cK0ToX5RQ+FflzqJLIHBGLD0qyaA0A+JGgKrYy2w8pDNgnS+eR1xZWBRU7tSpsq ji53Y1/wq6L0ZmqnAwABQZX5cEETk1TqzI2Ndmj8LTq2sWlkjQk2CK5/7meGyM4BErEA=; Received: from mga09.intel.com ([134.134.136.24]) by sfi-mx-1.v28.lw.sourceforge.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92.2) id 1kO5Xx-00GWCV-N5; Thu, 01 Oct 2020 20:51:30 +0000 IronPort-SDR: hfDtq88zA8Gqt1leyX/3buGIIswzznG80YnZL2tkedUP74B3dozmGQNS/JuKwI6g8JN98/KpIY nxH19ffQJMaQ== X-IronPort-AV: E=McAfee;i="6000,8403,9761"; a="163690500" X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="163690500" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Oct 2020 13:51:10 -0700 IronPort-SDR: 1WoWD3tSYbFzQBWeDTTaPfvEOu+7ixNbKFfbkUjqGno6QjTOAq4jaTjd3jXSQ7+Ly60CB5l7FW 2VRpEozO+XCA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,325,1596524400"; d="scan'208";a="339703561" Received: from lkp-server02.sh.intel.com (HELO de448af6ea1b) ([10.239.97.151]) by fmsmga004.fm.intel.com with ESMTP; 01 Oct 2020 13:51:08 -0700 Received: from kbuild by de448af6ea1b with local (Exim 4.92) (envelope-from ) id 1kO5Xf-0000kE-FY; Thu, 01 Oct 2020 20:51:07 +0000 Date: Fri, 2 Oct 2020 04:50:49 +0800 From: kernel test robot To: Nick Terrell , Herbert Xu Message-ID: <20201001205049.GA6920@f58d09cd8e1e> References: <20200930065318.3326526-4-nickrterrell@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200930065318.3326526-4-nickrterrell@gmail.com> X-Patchwork-Hint: ignore User-Agent: Mutt/1.10.1 (2018-07-13) X-Headers-End: 1kO5Xx-00GWCV-N5 Subject: [f2fs-dev] [PATCH] lib: zstd: fix semicolon.cocci warnings X-BeenThere: linux-f2fs-devel@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: squashfs-devel@lists.sourceforge.net, Chris Mason , kbuild-all@lists.01.org, Nick Terrell , linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, Petr Malat , linux-crypto@vger.kernel.org, Kernel Team , linux-btrfs@vger.kernel.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-f2fs-devel-bounces@lists.sourceforge.net From: kernel test robot lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Nick Terrell Signed-off-by: kernel test robot --- url: https://github.com/0day-ci/linux/commits/Nick-Terrell/Update-to-zstd-1-4-6/20200930-145157 base: https://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-next zstd_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/zstd/compress/zstd_compress.c +++ b/lib/zstd/compress/zstd_compress.c @@ -3245,7 +3245,7 @@ size_t ZSTD_compress(void* dst, size_t d ZSTD_CCtx* cctx = ZSTD_createCCtx(); RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed"); result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel); - ZSTD_freeCCtx(cctx);; + ZSTD_freeCCtx(cctx); return result; } _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============8956080012350319179==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: [PATCH] lib: zstd: fix semicolon.cocci warnings Date: Fri, 02 Oct 2020 04:50:49 +0800 Message-ID: <20201001205049.GA6920@f58d09cd8e1e> In-Reply-To: <20200930065318.3326526-4-nickrterrell@gmail.com> List-Id: --===============8956080012350319179== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: kernel test robot lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Nick Terrell Signed-off-by: kernel test robot --- url: https://github.com/0day-ci/linux/commits/Nick-Terrell/Update-to-zst= d-1-4-6/20200930-145157 base: https://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for= -next zstd_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/zstd/compress/zstd_compress.c +++ b/lib/zstd/compress/zstd_compress.c @@ -3245,7 +3245,7 @@ size_t ZSTD_compress(void* dst, size_t d ZSTD_CCtx* cctx =3D ZSTD_createCCtx(); RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed"); result =3D ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, com= pressionLevel); - ZSTD_freeCCtx(cctx);; + ZSTD_freeCCtx(cctx); return result; } =20 --===============8956080012350319179==--