]> git.baikalelectronics.ru Git - kernel.git/commit
[PATCH] namei fixes (4/19)
authorAl Viro <viro@www.linux.org.uk>
Mon, 6 Jun 2005 20:36:01 +0000 (13:36 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 6 Jun 2005 21:42:24 +0000 (14:42 -0700)
commita31ba643428168a0d159e63396feaa7e7b758bfb
tree321319974be9fcc50f4ec36ccad26b84d4b66b66
parent7b97f0845b8693e5400343bcb6fffedbecc09e75
[PATCH] namei fixes (4/19)

path.mnt in open_namei() set to mirror nd->mnt.

nd->mnt is set in 3 places in that function - path_lookup() in the beginning,
__follow_down() loop after do_last: and __do_follow_link() call after
do_link:.

We set path.mnt to nd->mnt after path_lookup() and __do_follow_link().  In
__follow_down() loop we use &path.mnt instead of &nd->mnt and set nd->mnt to
path.mnt immediately after that loop.

Obviously equivalent transformation.

Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/namei.c