diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-08-20 22:00:41 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-08-20 22:00:41 +0000 |
commit | bd08c5928d1f1549fa56934d26f8349a7f91d119 (patch) | |
tree | 149edda4b47c81266b596236bcae903222cf1824 /package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch | |
parent | 080dc036df44ade669021062ce0eb3745a3adb80 (diff) | |
download | upstream-bd08c5928d1f1549fa56934d26f8349a7f91d119.tar.gz upstream-bd08c5928d1f1549fa56934d26f8349a7f91d119.tar.bz2 upstream-bd08c5928d1f1549fa56934d26f8349a7f91d119.zip |
move more extra packages from ./trunk to ./packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12359 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch')
-rw-r--r-- | package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch b/package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch deleted file mode 100644 index f12fc96509..0000000000 --- a/package/shfs/patches/102-shfs_0.35_clean_inode_clear.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: shfs-0.35/shfs/Linux-2.6/inode.c -=================================================================== ---- shfs-0.35.orig/shfs/Linux-2.6/inode.c 2007-06-04 13:22:58.397977440 +0200 -+++ shfs-0.35/shfs/Linux-2.6/inode.c 2007-06-04 13:22:58.637940960 +0200 -@@ -8,6 +8,7 @@ - #include <linux/modversions.h> - #endif - -+#include <linux/version.h> - #include <linux/kernel.h> - #include <linux/module.h> - #include <linux/init.h> -@@ -118,6 +119,9 @@ - } - KMEM_FREE("inode", inode_cache, i); - out: -+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,13)) -+ truncate_inode_pages(&inode->i_data, 0); -+#endif - clear_inode(inode); - } - |