From mboxrd@z Thu Jan 1 00:00:00 1970 From: Phillip Lougher Subject: [PATCH 0/2] Squashfs: add LZ4 compression Date: Thu, 27 Nov 2014 08:00:47 +0000 Message-ID: <1417075250-6502-1-git-send-email-phillip@squashfs.org.uk> Cc: texstar@gmail.com, martin@mvath.de, guanx.bac@gmail.com, bruno@wolff.to, dave@vasilevsky.ca, szycha@gmail.com, blyons@students.naropa.edu, tokiclover@gmail.com, afm404@gmail.com, hugochevrain@gmail.com, Phillip Lougher To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Hi, The following is a repost of the Squashfs LZ4 compression patches updated to the latest -rc kernel. These patches were originally sent last year, but they did not receive much interest at the time. These patches are being reposted by popular demand. I have received many private and public requests to repost these patches and to get them mainlined. My intention is to submit them in the next kernel merge window. If you want LZ4 support in Squashfs now is a good time to publically support the inclusion of these patches. Phillip Lougher (2): Squashfs: add LZ4 compression support Squashfs: Add LZ4 compression configuration option Documentation/filesystems/squashfs.txt | 8 +- fs/squashfs/Kconfig | 15 ++++ fs/squashfs/Makefile | 1 + fs/squashfs/decompressor.c | 7 ++ fs/squashfs/decompressor.h | 4 + fs/squashfs/lz4_wrapper.c | 142 ++++++++++++++++++++++++++++++++ fs/squashfs/squashfs_fs.h | 1 + 7 files changed, 174 insertions(+), 4 deletions(-) create mode 100644 fs/squashfs/lz4_wrapper.c These patches are also available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-lz4.git master Squashfs-tools 4.3 already supports LZ4 compression. Phillip