[PATCH 1/5] Add LZO compression support to the kernel
- From: Richard Purdie <rpurdie@xxxxxxxxxxxxxx>
- Date: Wed, 28 Feb 2007 19:13:24 +0000
Add LZO1X compression/decompression support to the kernel.
This is based on the standard userspace lzo library, particularly
minilzo with the headers much trimmed down and simplified for kernel
use. Its structured so that it should still diff with the userspace
version for ease of future updating.
Signed-off-by: Richard Purdie <rpurdie@xxxxxxxxxxxxxx>
---
include/linux/lzo.h | 63 +
lib/Kconfig | 5
lib/Makefile | 1
lib/lzo/Makefile | 3
lib/lzo/lzoconf.h | 186 +++++
lib/lzo/lzodefs.h | 463 +++++++++++++
lib/lzo/lzointf.c | 37 +
lib/lzo/minilzo.c | 1771
++++++++++++++++++++++++++++++++++++++++++++++++++++
8 files changed, 2529 insertions(+)
http://folks.o-hand.com/richard/lzo/lzo_kernel.patch
(since it exceeds the file size limit for LKML)
I can email inline if anyone prefers it that way.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Prev by Date: [PATCH 0/5] Add LZO Compression
- Next by Date: [PATCH 2/5] jffs2: Add LZO compression support to jffs2
- Previous by thread: [PATCH 0/5] Add LZO Compression
- Next by thread: [PATCH 2/5] jffs2: Add LZO compression support to jffs2
- Index(es):
Relevant Pages
- [PATCH 1/5] Add LZO compression support to the kernel
... Add LZO1X compression/decompression support to the kernel. ... This is based
on the standard userspace lzo library, ... minilzo with the headers much
trimmed down and simplified for kernel ... (Linux-Kernel) - State of userland headers
... When I first created llh, it was a couple of weeks before 2.6.0 came out. ...
had a need for those headers, since a new version of PLD distro was supposed ... LLH as
it is is not and never will be mergable into mainline kernel. ... llh for the most popular
archs and figure out how to build all the various ... (Linux-Kernel) - Re: State of userland headers
... to get changes of this nature into glibc in particular, ... If the headers
... the kernel. ... This would mean that the kabi headers have no ...
(Linux-Kernel) - Re: [PATCH] make headers_install kbuild target.
... There are many other users that poke direct in the kernel source also. ... The
gentoo people have been collecting patches to clean up the headers: ... For kernel
space, you can do it incrementally, since the whole kabi/ ... (Linux-Kernel) - Re: [RFC] Splitting kernel headers and deprecating __KERNEL__
... > just make one thing clear: the kernel headers are for the kernel, ... userland
must duplicate the contents of headers in which the kernel ... defines the kerneluserland ABI,
tracking changes in them in the ... (Linux-Kernel)