Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67975
b: refs/heads/master
c: 7d0c7d6
h: refs/heads/master
i:
  67973: 46b007c
  67971: 01bf20f
  67967: a3690ac
v: v3
  • Loading branch information
Eric W. Biederman authored and Greg Kroah-Hartman committed Oct 12, 2007
1 parent a82d1cf commit 0c7f07f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 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: 0333cd8a3f4249fde2c50929a6eac35245fc685b
refs/heads/master: 7d0c7d676cc066413e1583b5af9fba8011972d41
4 changes: 1 addition & 3 deletions trunk/fs/sysfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -737,10 +737,8 @@ int sysfs_create_dir(struct kobject * kobj)

if (kobj->parent)
parent_sd = kobj->parent->sd;
else if (sysfs_mount && sysfs_mount->mnt_sb)
parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata;
else
return -EFAULT;
parent_sd = &sysfs_root;

error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd);
if (!error)
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/sysfs/mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/* Random magic number */
#define SYSFS_MAGIC 0x62656572

struct vfsmount *sysfs_mount;
static struct vfsmount *sysfs_mount;
struct super_block * sysfs_sb = NULL;
struct kmem_cache *sysfs_dir_cachep;

Expand Down
7 changes: 3 additions & 4 deletions trunk/fs/sysfs/symlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,9 @@ int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char

BUG_ON(!name);

if (!kobj) {
if (sysfs_mount && sysfs_mount->mnt_sb)
parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata;
} else
if (!kobj)
parent_sd = &sysfs_root;
else
parent_sd = kobj->sd;

error = -EFAULT;
Expand Down
1 change: 0 additions & 1 deletion trunk/fs/sysfs/sysfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ struct sysfs_addrm_cxt {
int cnt;
};

extern struct vfsmount * sysfs_mount;
extern struct sysfs_dirent sysfs_root;
extern struct kmem_cache *sysfs_dir_cachep;

Expand Down

0 comments on commit 0c7f07f

Please sign in to comment.