port generic and ixp4xx kernel patches to 2.6.27 (compiles except for iptables, but...
[openwrt/svn-archive/archive.git] / target / linux / generic-2.6 / patches-2.6.27 / 213-mini_fo_2.6.27_fixes.patch
diff --git a/target/linux/generic-2.6/patches-2.6.27/213-mini_fo_2.6.27_fixes.patch b/target/linux/generic-2.6/patches-2.6.27/213-mini_fo_2.6.27_fixes.patch
new file mode 100644 (file)
index 0000000..a7b4e4a
--- /dev/null
@@ -0,0 +1,31 @@
+--- a/fs/mini_fo/inode.c
++++ b/fs/mini_fo/inode.c
+@@ -439,7 +439,7 @@
+       int err=0;
+       dentry_t *hidden_sto_dentry;
+       dentry_t *hidden_sto_dir_dentry;
+-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) && (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27))
+         umode_t mode;
+ #endif
+@@ -466,7 +466,7 @@
+       down(&hidden_sto_dir_dentry->d_inode->i_sem);
+ #endif
+-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) && (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27))
+       mode = S_IALLUGO;
+       err = vfs_symlink(hidden_sto_dir_dentry->d_inode,
+                         hidden_sto_dentry, symname, mode);
+@@ -1151,7 +1151,9 @@
+        *              goto out;
+        */
+-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
++      err = generic_permission(hidden_inode, mask, NULL);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+       err = permission(hidden_inode, mask, nd);
+ #else
+       err = permission(hidden_inode, mask);