diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-15 16:46:24 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-15 16:46:24 +0000 |
commit | af45b63a85f0d669d942d7800b7c0ad6a75f897f (patch) | |
tree | debbdf72e80754afb8dac1816a13490c08a645f9 /target/linux | |
parent | e5e096618634f2098d0a533cfce004279107c39f (diff) | |
download | upstream-af45b63a85f0d669d942d7800b7c0ad6a75f897f.tar.gz upstream-af45b63a85f0d669d942d7800b7c0ad6a75f897f.tar.bz2 upstream-af45b63a85f0d669d942d7800b7c0ad6a75f897f.zip |
2.6.34: fix kzalloc error
SVN-Revision: 20881
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.34/006-squashfs_add_lzma.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.34/006-squashfs_add_lzma.patch b/target/linux/generic-2.6/patches-2.6.34/006-squashfs_add_lzma.patch index 9fd57970f2..29d507eb4a 100644 --- a/target/linux/generic-2.6/patches-2.6.34/006-squashfs_add_lzma.patch +++ b/target/linux/generic-2.6/patches-2.6.34/006-squashfs_add_lzma.patch @@ -53,7 +53,7 @@ Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk> }; --- /dev/null +++ b/fs/squashfs/lzma_wrapper.c -@@ -0,0 +1,151 @@ +@@ -0,0 +1,152 @@ +/* + * Squashfs - a compressed read only filesystem for Linux + * @@ -82,6 +82,7 @@ Signed-off-by: Phillip Lougher <phillip@lougher.demon.co.uk> +#include <linux/mutex.h> +#include <linux/vmalloc.h> +#include <linux/decompress/unlzma.h> ++#include <linux/slab.h> + +#include "squashfs_fs.h" +#include "squashfs_fs_sb.h" |