diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2011-10-12 18:01:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-10-19 19:24:15 -0400 |
commit | 23396180a9770df2c6a694bbb689c12bdf792f94 (patch) | |
tree | a943f113f6532b04fcef1673113493cf44ac2365 /fs/sysfs | |
parent | 4c22400ab64d434a00ecbe0c655a16956c902aa8 (diff) |
sysfs: Remove support for tagged directories with untagged members.
Now that /sys/class/net/bonding_masters is implemented as a tagged sysfs
file we can remove support for untagged files in tagged directories.
This change removes any ambiguity of what a NULL namespace value
means. A NULL namespace parameter after this patch means
that we are talking about an untagged sysfs dirent.
This makes the sysfs code much less prone to mistakes when during
maintenance.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/sysfs')
-rw-r--r-- | fs/sysfs/dir.c | 6 | ||||
-rw-r--r-- | fs/sysfs/inode.c | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index ea9120a830d8..352d26d98c0a 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c | |||
@@ -543,7 +543,7 @@ struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd, | |||
543 | struct sysfs_dirent *sd; | 543 | struct sysfs_dirent *sd; |
544 | 544 | ||
545 | for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling) { | 545 | for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling) { |
546 | if (ns && sd->s_ns && (sd->s_ns != ns)) | 546 | if (sd->s_ns != ns) |
547 | continue; | 547 | continue; |
548 | if (!strcmp(sd->s_name, name)) | 548 | if (!strcmp(sd->s_name, name)) |
549 | return sd; | 549 | return sd; |
@@ -885,7 +885,7 @@ static struct sysfs_dirent *sysfs_dir_pos(const void *ns, | |||
885 | while (pos && (ino > pos->s_ino)) | 885 | while (pos && (ino > pos->s_ino)) |
886 | pos = pos->s_sibling; | 886 | pos = pos->s_sibling; |
887 | } | 887 | } |
888 | while (pos && pos->s_ns && pos->s_ns != ns) | 888 | while (pos && pos->s_ns != ns) |
889 | pos = pos->s_sibling; | 889 | pos = pos->s_sibling; |
890 | return pos; | 890 | return pos; |
891 | } | 891 | } |
@@ -896,7 +896,7 @@ static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns, | |||
896 | pos = sysfs_dir_pos(ns, parent_sd, ino, pos); | 896 | pos = sysfs_dir_pos(ns, parent_sd, ino, pos); |
897 | if (pos) | 897 | if (pos) |
898 | pos = pos->s_sibling; | 898 | pos = pos->s_sibling; |
899 | while (pos && pos->s_ns && pos->s_ns != ns) | 899 | while (pos && pos->s_ns != ns) |
900 | pos = pos->s_sibling; | 900 | pos = pos->s_sibling; |
901 | return pos; | 901 | return pos; |
902 | } | 902 | } |
diff --git a/fs/sysfs/inode.c b/fs/sysfs/inode.c index e3f091a81c72..527f0cca66ee 100644 --- a/fs/sysfs/inode.c +++ b/fs/sysfs/inode.c | |||
@@ -336,8 +336,6 @@ int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const void *ns, const cha | |||
336 | sysfs_addrm_start(&acxt, dir_sd); | 336 | sysfs_addrm_start(&acxt, dir_sd); |
337 | 337 | ||
338 | sd = sysfs_find_dirent(dir_sd, ns, name); | 338 | sd = sysfs_find_dirent(dir_sd, ns, name); |
339 | if (sd && (sd->s_ns != ns)) | ||
340 | sd = NULL; | ||
341 | if (sd) | 339 | if (sd) |
342 | sysfs_remove_one(&acxt, sd); | 340 | sysfs_remove_one(&acxt, sd); |
343 | 341 | ||