Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lz4: fix system halt at boot kernel on x86_64
Sometimes, on x86_64, decompression fails with the following error: Decompressing Linux... Decoding failed -- System halted This condition is not needed for a 64bit kernel(from commit d5e7caf): if( ... || (op + COPYLENGTH) > oend) goto _output_error macro LZ4_SECURE_COPY() tests op and does not copy any data when op exceeds the value. added by analogy to lz4_uncompress_unknownoutputsize(...) Signed-off-by: Krzysztof Kolasa <[email protected]> Tested-by: Alexander Kuleshov <[email protected]> Tested-by: Caleb Jorden <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information