2007-06-06 01:46:02 +03:00
|
|
|
--- fuse.old/kernel/inode.c 2007-05-29 07:31:43.000000000 +0100
|
|
|
|
+++ fuse.dev/kernel/inode.c 2007-05-29 07:29:42.000000000 +0100
|
2007-06-10 22:47:55 +03:00
|
|
|
@@ -858,12 +858,20 @@
|
2007-06-06 01:46:02 +03:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
#endif
|
2007-06-10 22:47:55 +03:00
|
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
2007-06-06 01:46:02 +03:00
|
|
|
+ kobj_set_kset_s(&fuse_subsys, fs_subsys);
|
2007-06-10 22:47:55 +03:00
|
|
|
+#else
|
|
|
|
kset_set_kset_s(&fuse_subsys, fs_subsys);
|
|
|
|
+#endif
|
2007-06-06 01:46:02 +03:00
|
|
|
err = subsystem_register(&fuse_subsys);
|
|
|
|
if (err)
|
|
|
|
goto out_err;
|
|
|
|
|
2007-06-10 22:47:55 +03:00
|
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
|
2007-06-06 01:46:02 +03:00
|
|
|
+ kobj_set_kset_s(&connections_subsys, fuse_subsys);
|
2007-06-10 22:47:55 +03:00
|
|
|
+#else
|
|
|
|
kset_set_kset_s(&connections_subsys, fuse_subsys);
|
|
|
|
+#endif
|
2007-06-06 01:46:02 +03:00
|
|
|
err = subsystem_register(&connections_subsys);
|
|
|
|
if (err)
|
|
|
|
goto out_fuse_unregister;
|