diff options
author | Christoph Hellwig <hch@infradead.org> | 2013-09-09 07:16:41 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-10 17:06:45 -0400 |
commit | 4aa32895c3f924c34b9275ca28be534a8a0c624b (patch) | |
tree | 0a0becb7fdff62056c065b9223058f0285fd5bf5 /Documentation/filesystems | |
parent | b05430fc9341fea7a6228a3611c850a476809596 (diff) |
fs: remove vfs_follow_link
For a long time no filesystem has been using vfs_follow_link, and as seen
by recent filesystem submissions any new use is accidental as well.
Remove vfs_follow_link, document the replacement in
Documentation/filesystems/porting and also rename __vfs_follow_link
to match its only caller better.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r-- | Documentation/filesystems/porting | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/filesystems/porting b/Documentation/filesystems/porting index 206a1bdc7321..f0890581f7f6 100644 --- a/Documentation/filesystems/porting +++ b/Documentation/filesystems/porting @@ -451,3 +451,7 @@ in your dentry operations instead. -- [mandatory] ->readdir() is gone now; switch to ->iterate() +[mandatory] + vfs_follow_link has been removed. Filesystems must use nd_set_link + from ->follow_link for normal symlinks, or nd_jump_link for magic + /proc/<pid> style links. |