diff options
author | Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu> | 2007-05-09 05:33:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 15:30:50 -0400 |
commit | 2dfdd266b9a2f2d93a3fdbee89969f6ea9ec5377 (patch) | |
tree | a3dd643401a5fa63f60759c89fd00a4ef175cda5 /fs/namei.c | |
parent | 62ce39c531860aee6c12128c629b0a82f656a306 (diff) |
fs: use path_walk in do_path_lookup
Since path_walk sets the total_link_count to 0 and calls link_path_walk, we
can just call path_walk directly.
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Acked-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namei.c b/fs/namei.c index 19f178ec5744..b3780e3fc88e 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1152,8 +1152,8 @@ static int fastcall do_path_lookup(int dfd, const char *name, | |||
1152 | 1152 | ||
1153 | fput_light(file, fput_needed); | 1153 | fput_light(file, fput_needed); |
1154 | } | 1154 | } |
1155 | current->total_link_count = 0; | 1155 | |
1156 | retval = link_path_walk(name, nd); | 1156 | retval = path_walk(name, nd); |
1157 | out: | 1157 | out: |
1158 | if (unlikely(!retval && !audit_dummy_context() && nd->dentry && | 1158 | if (unlikely(!retval && !audit_dummy_context() && nd->dentry && |
1159 | nd->dentry->d_inode)) | 1159 | nd->dentry->d_inode)) |