Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266871
b: refs/heads/master
c: 2339618
h: refs/heads/master
i:
  266869: 932cf77
  266867: 7c77f54
  266863: bbecfcb
v: v3
  • Loading branch information
Eric W. Biederman authored and David S. Miller committed Oct 19, 2011
1 parent eb25fb1 commit d2d4db5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 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: 4c22400ab64d434a00ecbe0c655a16956c902aa8
refs/heads/master: 23396180a9770df2c6a694bbb689c12bdf792f94
6 changes: 3 additions & 3 deletions trunk/fs/sysfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
struct sysfs_dirent *sd;

for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling) {
if (ns && sd->s_ns && (sd->s_ns != ns))
if (sd->s_ns != ns)
continue;
if (!strcmp(sd->s_name, name))
return sd;
Expand Down Expand Up @@ -885,7 +885,7 @@ static struct sysfs_dirent *sysfs_dir_pos(const void *ns,
while (pos && (ino > pos->s_ino))
pos = pos->s_sibling;
}
while (pos && pos->s_ns && pos->s_ns != ns)
while (pos && pos->s_ns != ns)
pos = pos->s_sibling;
return pos;
}
Expand All @@ -896,7 +896,7 @@ static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
if (pos)
pos = pos->s_sibling;
while (pos && pos->s_ns && pos->s_ns != ns)
while (pos && pos->s_ns != ns)
pos = pos->s_sibling;
return pos;
}
Expand Down
2 changes: 0 additions & 2 deletions trunk/fs/sysfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,6 @@ int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const void *ns, const cha
sysfs_addrm_start(&acxt, dir_sd);

sd = sysfs_find_dirent(dir_sd, ns, name);
if (sd && (sd->s_ns != ns))
sd = NULL;
if (sd)
sysfs_remove_one(&acxt, sd);

Expand Down

0 comments on commit d2d4db5

Please sign in to comment.