1be80fc29a
SVN-Revision: 7716
26 lines
779 B
Diff
26 lines
779 B
Diff
Index: fuse-2.6.5/kernel/inode.c
|
|
===================================================================
|
|
--- fuse-2.6.5.orig/kernel/inode.c 2007-06-23 13:03:51.000000000 +0200
|
|
+++ fuse-2.6.5/kernel/inode.c 2007-06-23 13:03:51.000000000 +0200
|
|
@@ -858,12 +858,20 @@
|
|
if (err)
|
|
return err;
|
|
#endif
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
|
+ kobj_set_kset_s(&fuse_subsys, fs_subsys);
|
|
+#else
|
|
kset_set_kset_s(&fuse_subsys, fs_subsys);
|
|
+#endif
|
|
err = subsystem_register(&fuse_subsys);
|
|
if (err)
|
|
goto out_err;
|
|
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
|
+ kobj_set_kset_s(&connections_subsys, fuse_subsys);
|
|
+#else
|
|
kset_set_kset_s(&connections_subsys, fuse_subsys);
|
|
+#endif
|
|
err = subsystem_register(&connections_subsys);
|
|
if (err)
|
|
goto out_fuse_unregister;
|