* 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; 2+ 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] 2+ 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; 2+ 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] 2+ messages in thread