aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/symlink.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2010-07-21 01:12:01 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-26 15:02:41 -0400
commitd33002129eee4717a92e320b0b764a784bbcad3a (patch)
tree0f519f2385d08e3b1702c89e1e01ff079a2e5846 /fs/sysfs/symlink.c
parent521d0453547d6195d200176328aaec6c98a7a290 (diff)
sysfs: allow creating symlinks from untagged to tagged directories
Supporting symlinks from untagged to tagged directories is reasonable, and needed to support CONFIG_SYSFS_DEPRECATED. So don't fail a prior allowing that case to work. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/symlink.c')
-rw-r--r--fs/sysfs/symlink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c
index 660383321347..a7ac78f8e67a 100644
--- a/fs/sysfs/symlink.c
+++ b/fs/sysfs/symlink.c
@@ -67,7 +67,8 @@ static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
67 67
68 sysfs_addrm_start(&acxt, parent_sd); 68 sysfs_addrm_start(&acxt, parent_sd);
69 /* Symlinks must be between directories with the same ns_type */ 69 /* Symlinks must be between directories with the same ns_type */
70 if (ns_type == sysfs_ns_type(sd->s_symlink.target_sd->s_parent)) { 70 if (!ns_type ||
71 (ns_type == sysfs_ns_type(sd->s_symlink.target_sd->s_parent))) {
71 if (warn) 72 if (warn)
72 error = sysfs_add_one(&acxt, sd); 73 error = sysfs_add_one(&acxt, sd);
73 else 74 else