diff options
| author | Patrick Mochel <mochel@osdl.org> | 2003-06-04 18:55:13 -0700 |
|---|---|---|
| committer | Patrick Mochel <mochel@osdl.org> | 2003-06-04 18:55:13 -0700 |
| commit | 043400bf0e7df24caa8ccd8b9e2067d0facccf8c (patch) | |
| tree | 0e774e23e9bb2a78ad7ec5a9e2a22d2a039b4bc4 /fs/namespace.c | |
| parent | c2e2d4f7c91100686c8d9987299058307452ddd6 (diff) | |
[fs] Remove kobject support for filesystems
It was initially added for the immediate gain of being able to see what
filesystems were registered in the system. However, it was done without
proper analysis of the lifetime rules associated with them.
Someday, we should convert struct filesystem_type and struct super_block to
use kobjects, though it will take sufficent time and effort to get it right.
Until then, we go without..
Diffstat (limited to 'fs/namespace.c')
| -rw-r--r-- | fs/namespace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index 3ba38cc13f33..61e5ec891363 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -24,7 +24,7 @@ #include <asm/uaccess.h> extern int __init init_rootfs(void); -extern int __init fs_subsys_init(void); +extern int __init sysfs_init(void); static struct list_head *mount_hashtable; static int hash_mask, hash_bits; @@ -1144,7 +1144,7 @@ void __init mnt_init(unsigned long mempages) d++; i--; } while (i); - fs_subsys_init(); + sysfs_init(); init_rootfs(); init_mount_tree(); } |
