*** empty log message *** fuse_2_6_0_pre3
authorMiklos Szeredi <miklos@szeredi.hu>
Thu, 29 Jun 2006 15:13:35 +0000 (15:13 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Thu, 29 Jun 2006 15:13:35 +0000 (15:13 +0000)
kernel/control.c
kernel/inode.c

index aff8b641c96c4f8d7aaf8237c1f06943f6d4b236..50e07ebceff8f60547f15b406c708bfe5ce76c9c 100644 (file)
@@ -183,12 +183,22 @@ static int fuse_ctl_fill_super(struct super_block *sb, void *data, int silent)
        return 0;
 }
 
+#ifdef KERNEL_2_6_18_PLUS
+static int fuse_ctl_get_sb(struct file_system_type *fs_type, int flags,
+                       const char *dev_name, void *raw_data,
+                       struct vfsmount *mnt)
+{
+       return get_sb_single(fs_type, flags, raw_data,
+                               fuse_ctl_fill_super, mnt);
+}
+#else
 static struct super_block *fuse_ctl_get_sb(struct file_system_type *fs_type,
                                           int flags, const char *dev_name,
                                           void *raw_data)
 {
        return get_sb_single(fs_type, flags, raw_data, fuse_ctl_fill_super);
 }
+#endif
 
 static void fuse_ctl_kill_sb(struct super_block *sb)
 {
index 0eb8cedc89514e7f8b47893742c294b4f825c2ea..0145045649092824fd0a5e3d7b64d4f4ab1ba061 100644 (file)
@@ -270,10 +270,18 @@ struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
 }
 #endif
 
+#ifdef KERNEL_2_6_18_PLUS
+static void fuse_umount_begin(struct vfsmount *vfsmnt, int flags)
+{
+       if (flags & MNT_FORCE)
+               fuse_abort_conn(get_fuse_conn_super(vfsmnt->mnt_sb));
+}
+#else
 static void fuse_umount_begin(struct super_block *sb)
 {
        fuse_abort_conn(get_fuse_conn_super(sb));
 }
+#endif
 
 static void fuse_put_super(struct super_block *sb)
 {
@@ -312,7 +320,6 @@ static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr
 
 #ifdef KERNEL_2_6_18_PLUS
 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
-{
 #else
 static int fuse_statfs(struct super_block *sb, struct kstatfs *buf)
 #endif
@@ -762,12 +769,21 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
 }
 
 #ifdef KERNEL_2_6
+#ifdef KERNEL_2_6_18_PLUS
+static int fuse_get_sb(struct file_system_type *fs_type,
+                      int flags, const char *dev_name,
+                      void *raw_data, struct vfsmount *mnt)
+{
+       return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
+}
+#else
 static struct super_block *fuse_get_sb(struct file_system_type *fs_type,
                                       int flags, const char *dev_name,
                                       void *raw_data)
 {
        return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super);
 }
+#endif
 
 static struct file_system_type fuse_fs_type = {
        .owner          = THIS_MODULE,