Browse Source

unobfuscate follow_up() a bit

really convoluted test in there has grown up during struct mount
introduction; what it checks is that we'd reached the root of
mount tree.
Al Viro 13 years ago
parent
commit
3c0a616368
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/namei.c

+ 1 - 1
fs/namei.c

@@ -722,7 +722,7 @@ int follow_up(struct path *path)
 
 	br_read_lock(&vfsmount_lock);
 	parent = mnt->mnt_parent;
-	if (&parent->mnt == path->mnt) {
+	if (parent == mnt) {
 		br_read_unlock(&vfsmount_lock);
 		return 0;
 	}