summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-08-29 14:35:23 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-08-29 14:35:23 +0000
commit206e5f313e425c2b727b64a023a62c1f3de59b72 (patch)
treed7d49f33d5b291ac9f72b066866fdc293cf47dc7 /target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch
parent28d7de48b8c1150b5d72da89a9fb51f271843579 (diff)
downloadmaster-31e0f0ae-206e5f313e425c2b727b64a023a62c1f3de59b72.tar.gz
master-31e0f0ae-206e5f313e425c2b727b64a023a62c1f3de59b72.tar.bz2
master-31e0f0ae-206e5f313e425c2b727b64a023a62c1f3de59b72.zip
linux/generic: add kernel 2.6.36 preliminary support
SVN-Revision: 22832
Diffstat (limited to 'target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch')
-rw-r--r--target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch b/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch
new file mode 100644
index 0000000000..61f54f0359
--- /dev/null
+++ b/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.35.patch
@@ -0,0 +1,45 @@
+--- a/fs/mini_fo/file.c
++++ b/fs/mini_fo/file.c
+@@ -599,7 +599,7 @@ mini_fo_release(inode_t *inode, file_t *
+ }
+
+ STATIC int
+-mini_fo_fsync(file_t *file, dentry_t *dentry, int datasync)
++mini_fo_fsync(file_t *file, int datasync)
+ {
+ int err1 = 0;
+ int err2 = 0;
+@@ -609,14 +609,14 @@ mini_fo_fsync(file_t *file, dentry_t *de
+ check_mini_fo_file(file);
+
+ if ((hidden_file = ftohf(file)) != NULL) {
+- hidden_dentry = dtohd(dentry);
++ hidden_dentry = dtohd(file->f_path.dentry);
+ if (hidden_file->f_op && hidden_file->f_op->fsync) {
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
+ mutex_lock(&hidden_dentry->d_inode->i_mutex);
+ #else
+ down(&hidden_dentry->d_inode->i_sem);
+ #endif
+- err1 = hidden_file->f_op->fsync(hidden_file, hidden_dentry, datasync);
++ err1 = hidden_file->f_op->fsync(hidden_file, datasync);
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
+ mutex_unlock(&hidden_dentry->d_inode->i_mutex);
+ #else
+@@ -626,14 +626,14 @@ mini_fo_fsync(file_t *file, dentry_t *de
+ }
+
+ if ((hidden_file = ftohf2(file)) != NULL) {
+- hidden_dentry = dtohd2(dentry);
++ hidden_dentry = dtohd2(file->f_path.dentry);
+ if (hidden_file->f_op && hidden_file->f_op->fsync) {
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
+ mutex_lock(&hidden_dentry->d_inode->i_mutex);
+ #else
+ down(&hidden_dentry->d_inode->i_sem);
+ #endif
+- err2 = hidden_file->f_op->fsync(hidden_file, hidden_dentry, datasync);
++ err2 = hidden_file->f_op->fsync(hidden_file, datasync);
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
+ mutex_unlock(&hidden_dentry->d_inode->i_mutex);
+ #else