*** empty log message ***
diff --git a/kernel/control.c b/kernel/control.c
index aff8b64..50e07eb 100644
--- a/kernel/control.c
+++ b/kernel/control.c
@@ -183,12 +183,22 @@
 	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)
 {
diff --git a/kernel/inode.c b/kernel/inode.c
index 0eb8ced..0145045 100644
--- a/kernel/inode.c
+++ b/kernel/inode.c
@@ -270,10 +270,18 @@
 }
 #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 @@
 
 #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 @@
 }
 
 #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,