aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-05-19 10:21:32 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-05-19 10:21:32 +0000
commit01afcd25567dec5dc3073a6959ce8e8abe5651d4 (patch)
treeb748df0a27c6e23d40e92ab66317e2d1c8596777 /target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch
parent5bad9df354c05a1bb64ea3af6dcf1fa8a2f63a9b (diff)
downloadupstream-01afcd25567dec5dc3073a6959ce8e8abe5651d4.tar.gz
upstream-01afcd25567dec5dc3073a6959ce8e8abe5651d4.tar.bz2
upstream-01afcd25567dec5dc3073a6959ce8e8abe5651d4.zip
remove 2.6.29 since there are no remaining users of it
SVN-Revision: 15922
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch b/target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch
deleted file mode 100644
index 8bd9ba3244..0000000000
--- a/target/linux/generic-2.6/patches-2.6.29/212-mini_fo_2.6.26_fixes.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/fs/mini_fo/super.c
-+++ b/fs/mini_fo/super.c
-@@ -84,6 +84,7 @@ mini_fo_write_inode(inode_t *inode, int
- #endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
-
-
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
- STATIC void
- mini_fo_put_inode(inode_t *inode)
- {
-@@ -99,6 +100,7 @@ mini_fo_put_inode(inode_t *inode)
- if (atomic_read(&inode->i_count) == 1)
- inode->i_nlink = 0;
- }
-+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) */
-
-
- #if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
-@@ -238,7 +240,7 @@ mini_fo_clear_inode(inode_t *inode)
- * dies.
- */
- STATIC void
--#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)) && (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26))
- mini_fo_umount_begin(struct vfsmount *mnt, int flags)
- {
- struct vfsmount *hidden_mnt;
-@@ -290,7 +292,9 @@ struct super_operations mini_fo_sops =
- #if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
- write_inode: mini_fo_write_inode,
- #endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
- put_inode: mini_fo_put_inode,
-+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) */
- #if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
- delete_inode: mini_fo_delete_inode,
- #endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */