diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-05 22:46:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-05 22:46:02 +0000 |
commit | 04324c48cfc7ea3aad8f95552e6349c42537ccdc (patch) | |
tree | 7499eed31bb77462d1260406ece6464886087eb7 /package/fuse/patches/230-kobj.patch | |
parent | 72823077cdabdb6b3432a254d413000d00630634 (diff) | |
download | upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.tar.gz upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.tar.bz2 upstream-04324c48cfc7ea3aad8f95552e6349c42537ccdc.zip |
upgrade a few packages to newer versions (includes patch by kaloz) - preparation for 2.6.22
SVN-Revision: 7507
Diffstat (limited to 'package/fuse/patches/230-kobj.patch')
-rw-r--r-- | package/fuse/patches/230-kobj.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/fuse/patches/230-kobj.patch b/package/fuse/patches/230-kobj.patch new file mode 100644 index 0000000000..88f8b6c938 --- /dev/null +++ b/package/fuse/patches/230-kobj.patch @@ -0,0 +1,17 @@ +--- 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 +@@ -858,12 +858,12 @@ + if (err) + return err; + #endif +- kset_set_kset_s(&fuse_subsys, fs_subsys); ++ kobj_set_kset_s(&fuse_subsys, fs_subsys); + err = subsystem_register(&fuse_subsys); + if (err) + goto out_err; + +- kset_set_kset_s(&connections_subsys, fuse_subsys); ++ kobj_set_kset_s(&connections_subsys, fuse_subsys); + err = subsystem_register(&connections_subsys); + if (err) + goto out_fuse_unregister; |