Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75741
b: refs/heads/master
c: 00d2666
h: refs/heads/master
i:
  75739: 30c6196
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 25, 2008
1 parent 92af679 commit e630b87
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 917e865df7eb020f20ffc2b4204f282a587df94f
refs/heads/master: 00d2666623368ffd39afc875ff8a2eead2a0436c
2 changes: 1 addition & 1 deletion trunk/fs/ecryptfs/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ static int do_sysfs_registration(void)
{
int rc;

ecryptfs_kset = kset_create_and_add("ecryptfs", NULL, &fs_subsys.kobj);
ecryptfs_kset = kset_create_and_add("ecryptfs", NULL, fs_kobj);
if (!ecryptfs_kset) {
printk(KERN_ERR "Unable to create ecryptfs kset\n");
rc = -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/fuse/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ static int fuse_sysfs_init(void)
{
int err;

fuse_kobj = kobject_create_and_add("fuse", &fs_subsys.kobj);
fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
if (!fuse_kobj) {
err = -ENOMEM;
goto out_err;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/gfs2/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ int gfs2_sys_init(void)
gfs2_sys_margs = NULL;
spin_lock_init(&gfs2_sys_margs_lock);
kobject_set_name(&gfs2_kset.kobj, "gfs2");
gfs2_kset.kobj.kset = &fs_subsys;
gfs2_kset.kobj.parent = fs_kobj;
return kset_register(&gfs2_kset);
}

Expand Down
11 changes: 5 additions & 6 deletions trunk/fs/namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ static struct kmem_cache *mnt_cache __read_mostly;
static struct rw_semaphore namespace_sem;

/* /sys/fs */
decl_subsys(fs, NULL);
EXPORT_SYMBOL_GPL(fs_subsys);
struct kobject *fs_kobj;
EXPORT_SYMBOL_GPL(fs_kobj);

static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
{
Expand Down Expand Up @@ -1861,10 +1861,9 @@ void __init mnt_init(void)
if (err)
printk(KERN_WARNING "%s: sysfs_init error: %d\n",
__FUNCTION__, err);
err = subsystem_register(&fs_subsys);
if (err)
printk(KERN_WARNING "%s: subsystem_register error: %d\n",
__FUNCTION__, err);
fs_kobj = kobject_create_and_add("fs", NULL);
if (!fs_kobj)
printk(KERN_WARNING "%s: kobj create error\n", __FUNCTION__);
init_rootfs();
init_mount_tree();
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ extern void drop_collected_mounts(struct vfsmount *);
extern int vfs_statfs(struct dentry *, struct kstatfs *);

/* /sys/fs */
extern struct kset fs_subsys;
extern struct kobject *fs_kobj;

#define FLOCK_VERIFY_READ 1
#define FLOCK_VERIFY_WRITE 2
Expand Down

0 comments on commit e630b87

Please sign in to comment.