* Re: [PATCH v4 3/9] lib: zstd: Upgrade to latest upstream zstd version 1.4.6 [not found] <20200930065318.3326526-4-nickrterrell@gmail.com> @ 2020-10-01 20:50 ` kernel test robot 2020-10-01 20:50 ` [PATCH] lib: zstd: fix semicolon.cocci warnings kernel test robot 1 sibling, 0 replies; 3+ messages in thread From: kernel test robot @ 2020-10-01 20:50 UTC (permalink / raw) To: Nick Terrell, Herbert Xu Cc: kbuild-all, linux-crypto, linux-btrfs, squashfs-devel, linux-f2fs-devel, linux-kernel, Kernel Team, Nick Terrell, Chris Mason, Petr Malat [-- Attachment #1: Type: text/plain, Size: 1118 bytes --] Hi Nick, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on kdave/for-next] [also build test WARNING on f2fs/dev-test linus/master v5.9-rc7 next-20201001] [cannot apply to cryptodev/master crypto/master] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] 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 config: i386-randconfig-c001-20200930 (attached as .config) compiler: gcc-9 (Debian 9.3.0-15) 9.3.0 If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot <lkp@intel.com> echo echo "coccinelle warnings: (new ones prefixed by >>)" echo >> lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Please review and possibly fold the followup patch. --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org [-- Attachment #2: .config.gz --] [-- Type: application/gzip, Size: 34057 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] lib: zstd: fix semicolon.cocci warnings [not found] <20200930065318.3326526-4-nickrterrell@gmail.com> 2020-10-01 20:50 ` [PATCH v4 3/9] lib: zstd: Upgrade to latest upstream zstd version 1.4.6 kernel test robot @ 2020-10-01 20:50 ` kernel test robot 1 sibling, 0 replies; 3+ messages in thread From: kernel test robot @ 2020-10-01 20:50 UTC (permalink / raw) To: Nick Terrell, Herbert Xu Cc: kbuild-all, linux-crypto, linux-btrfs, squashfs-devel, linux-f2fs-devel, linux-kernel, Kernel Team, Nick Terrell, Chris Mason, Petr Malat From: kernel test robot <lkp@intel.com> lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Nick Terrell <terrelln@fb.com> Signed-off-by: kernel test robot <lkp@intel.com> --- 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; } ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20201103060535.8460-4-nickrterrell@gmail.com>]
* [PATCH] lib: zstd: fix semicolon.cocci warnings [not found] <20201103060535.8460-4-nickrterrell@gmail.com> @ 2020-11-13 9:36 ` kernel test robot 0 siblings, 0 replies; 3+ messages in thread From: kernel test robot @ 2020-11-13 9:36 UTC (permalink / raw) To: Nick Terrell, Herbert Xu Cc: kbuild-all, linux-crypto, linux-btrfs, squashfs-devel, linux-f2fs-devel, linux-kernel, Kernel Team, Nick Terrell, Chris Mason, Petr Malat From: kernel test robot <lkp@intel.com> lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Nick Terrell <terrelln@fb.com> Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: kernel test robot <lkp@intel.com> --- url: https://github.com/0day-ci/linux/commits/Nick-Terrell/lib-zstd-Add-zstd-compatibility-wrapper/20201103-150617 base: https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git master 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; } ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-11-13 9:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20200930065318.3326526-4-nickrterrell@gmail.com>
2020-10-01 20:50 ` [PATCH v4 3/9] lib: zstd: Upgrade to latest upstream zstd version 1.4.6 kernel test robot
2020-10-01 20:50 ` [PATCH] lib: zstd: fix semicolon.cocci warnings kernel test robot
[not found] <20201103060535.8460-4-nickrterrell@gmail.com>
2020-11-13 9:36 ` kernel test robot
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).