diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-09-29 01:08:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-09-29 01:08:17 +0000 |
commit | bc92b67c41bb9eb64dd342735cf04d0ca5098926 (patch) | |
tree | fb3cad267265be9ac8eb1532182422f278dc3d0a /target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch | |
parent | 9b2097af21c4298fb67622266d5587e4e680fc5c (diff) | |
download | upstream-bc92b67c41bb9eb64dd342735cf04d0ca5098926.tar.gz upstream-bc92b67c41bb9eb64dd342735cf04d0ca5098926.tar.bz2 upstream-bc92b67c41bb9eb64dd342735cf04d0ca5098926.zip |
port generic and ixp4xx kernel patches to 2.6.27 (compiles except for iptables, but otherwise completely untested)
SVN-Revision: 12790
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch b/target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch new file mode 100644 index 0000000000..d4c2d8051d --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.27/005-squashfs_fix.patch @@ -0,0 +1,29 @@ +--- a/fs/squashfs/inode.c ++++ b/fs/squashfs/inode.c +@@ -33,6 +33,7 @@ + #include <linux/fs.h> + #include <linux/smp_lock.h> + #include <linux/slab.h> ++#include <linux/exportfs.h> + #include <linux/squashfs_fs_sb.h> + #include <linux/squashfs_fs_i.h> + #include <linux/buffer_head.h> +@@ -43,8 +44,8 @@ + #include <linux/zlib.h> + #include <linux/blkdev.h> + #include <linux/vmalloc.h> ++#include <linux/semaphore.h> + #include <asm/uaccess.h> +-#include <asm/semaphore.h> + + #include "squashfs.h" + +@@ -2125,7 +2126,7 @@ + } + + +-static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags) ++static void init_once(void *foo) + { + struct squashfs_inode_info *ei = foo; + |