Re: [PATCH] zfs: fix function 'zlib_decompress' pointlessly calling itself

2024-05-14 Thread Tom Rini
On Wed, May 01, 2024 at 12:40:38AM +0800, WHR wrote: > In order to prevent crashing due to infinite recursion and actually > decompress the requested data, call the zlib function 'uncompress' > instead. > > Signed-off-by: WHR Applied to u-boot/next, thanks! -- Tom signature.asc Description:

[PATCH] zfs: fix function 'zlib_decompress' pointlessly calling itself

2024-04-30 Thread WHR
In order to prevent crashing due to infinite recursion and actually decompress the requested data, call the zlib function 'uncompress' instead. Signed-off-by: WHR --- v2: Resubmit with diff content in plain text. diff --git a/fs/zfs/zfs.c b/fs/zfs/zfs.c index bfc11fa667..4896cc18ef 100644 --- a

[PATCH] zfs: fix function 'zlib_decompress' pointlessly calling itself

2024-04-30 Thread whr
To prevent crashing due infinite recursion and actually decompress the requested data, call the zlib function 'uncompress' instead. Signed-off-by: WHR 0001-zfs-fix-function-zlib_decompress-pointlessly-calling Description: /