Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

LZO1X: fix lzo1x_worst_compress

This is a correction for a macro which gives worst case compressed data
size by LZO1X.

This patch was provided by the LZO author (Markus Oberhumer).

Signed-off-by: Nitin Gupta <nitingupta910@gmail.com>
Cc: "Markus F.X.J. Oberhumer" <markus@oberhumer.com>
Cc: "Richard Purdie" <rpurdie@openedhand.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Nitin Gupta and committed by
Linus Torvalds
f2a11b15 248a9dc3

+1 -1
+1 -1
include/linux/lzo.h
··· 17 17 #define LZO1X_MEM_COMPRESS (16384 * sizeof(unsigned char *)) 18 18 #define LZO1X_1_MEM_COMPRESS LZO1X_MEM_COMPRESS 19 19 20 - #define lzo1x_worst_compress(x) (x + (x / 64) + 16 + 3) 20 + #define lzo1x_worst_compress(x) ((x) + ((x) / 16) + 64 + 3) 21 21 22 22 /* This requires 'workmem' of size LZO1X_1_MEM_COMPRESS */ 23 23 int lzo1x_1_compress(const unsigned char *src, size_t src_len,