diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-06-02 08:22:56 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-06-02 08:22:56 +0000 |
commit | 7cce2d8fc39a7bbcdcf8755ad331409b0a103103 (patch) | |
tree | c5089f65708dd1656748c8079574e68096d53242 /target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch | |
parent | 40720b6d2027e49c59718c3650c93bc6771a38b3 (diff) | |
download | mtk-20170518-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.zip mtk-20170518-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.tar.gz mtk-20170518-7cce2d8fc39a7bbcdcf8755ad331409b0a103103.tar.bz2 |
add generic 2.6.26 patches/files
SVN-Revision: 11323
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch b/target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch new file mode 100644 index 0000000..961829e --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.26/005-squashfs_fix.patch @@ -0,0 +1,19 @@ +--- 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> +@@ -2125,7 +2126,7 @@ + } + + +-static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags) ++static void init_once(struct kmem_cache * cachep, void *foo) + { + struct squashfs_inode_info *ei = foo; + |