aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2010-07-21 01:10:58 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-26 15:02:41 -0400
commit521d0453547d6195d200176328aaec6c98a7a290 (patch)
tree8c0a1bc9920ec9178b8f035188338a3552c1b4b1
parent96d6523adffbab64f099561a021892125e0c672c (diff)
sysfs: sysfs_delete_link handle symlinks from untagged to tagged directories.
This happens for network devices when SYSFS_DEPRECATED is enabled. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--fs/sysfs/symlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c
index 44bca5f49cd..66038332134 100644
--- a/fs/sysfs/symlink.c
+++ b/fs/sysfs/symlink.c
@@ -135,7 +135,7 @@ void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
135{ 135{
136 const void *ns = NULL; 136 const void *ns = NULL;
137 spin_lock(&sysfs_assoc_lock); 137 spin_lock(&sysfs_assoc_lock);
138 if (targ->sd) 138 if (targ->sd && sysfs_ns_type(kobj->sd))
139 ns = targ->sd->s_ns; 139 ns = targ->sd->s_ns;
140 spin_unlock(&sysfs_assoc_lock); 140 spin_unlock(&sysfs_assoc_lock);
141 sysfs_hash_and_remove(kobj->sd, ns, name); 141 sysfs_hash_and_remove(kobj->sd, ns, name);