24 Nov, 2014

1 commit


29 Aug, 2014

1 commit

  • The lz4 library has two functions for decompression, with slightly
    different signatures and behaviour. The lz4_decompress_crypto() function
    seemed to be using the one that assumes that the decompressed length is
    known in advance.

    This patch switches to the other decompression function and makes sure
    that the length of the decompressed output is properly returned to the
    caller.

    The same issue was present in the lz4hc algorithm.

    Coincidentally, this change also makes very basic lz4 and lz4hc
    compression tests in testmgr pass.

    Signed-off-by: KOVACS Krisztian
    Signed-off-by: Herbert Xu

    KOVACS Krisztian
     

10 Jul, 2013

1 commit

  • Add support for lz4 and lz4hc compression algorithm using the lib/lz4/*
    codebase.

    [akpm@linux-foundation.org: fix warnings]
    Signed-off-by: Chanho Min
    Cc: "Darrick J. Wong"
    Cc: Bob Pearson
    Cc: Richard Weinberger
    Cc: Herbert Xu
    Cc: Yann Collet
    Cc: Kyungsik Lee
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Chanho Min