summaryrefslogtreecommitdiffstats
path: root/fs/libfs.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2015-05-02 13:32:22 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2015-05-10 22:19:45 -0400
commit680baacbca69d18a6d7315374ad83d05ac9c0977 (patch)
treea69822ef5234d4a308b780ff51c5d9b77bd3a89b /fs/libfs.c
parent46afd6f61cc33ae4b3a2aed4bb454d11d4114c27 (diff)
new ->follow_link() and ->put_link() calling conventions
a) instead of storing the symlink body (via nd_set_link()) and returning an opaque pointer later passed to ->put_link(), ->follow_link() _stores_ that opaque pointer (into void * passed by address by caller) and returns the symlink body. Returning ERR_PTR() on error, NULL on jump (procfs magic symlinks) and pointer to symlink body for normal symlinks. Stored pointer is ignored in all cases except the last one. Storing NULL for opaque pointer (or not storing it at all) means no call of ->put_link(). b) the body used to be passed to ->put_link() implicitly (via nameidata). Now only the opaque pointer is. In the cases when we used the symlink body to free stuff, ->follow_link() now should store it as opaque pointer in addition to returning it. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/libfs.c')
-rw-r--r--fs/libfs.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/fs/libfs.c b/fs/libfs.c
index 72e4e015455f..0c83fde20dbd 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -1024,12 +1024,9 @@ int noop_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1024} 1024}
1025EXPORT_SYMBOL(noop_fsync); 1025EXPORT_SYMBOL(noop_fsync);
1026 1026
1027void kfree_put_link(struct dentry *dentry, struct nameidata *nd, 1027void kfree_put_link(struct dentry *dentry, void *cookie)
1028 void *cookie)
1029{ 1028{
1030 char *s = nd_get_link(nd); 1029 kfree(cookie);
1031 if (!IS_ERR(s))
1032 kfree(s);
1033} 1030}
1034EXPORT_SYMBOL(kfree_put_link); 1031EXPORT_SYMBOL(kfree_put_link);
1035 1032
@@ -1094,10 +1091,9 @@ simple_nosetlease(struct file *filp, long arg, struct file_lock **flp,
1094} 1091}
1095EXPORT_SYMBOL(simple_nosetlease); 1092EXPORT_SYMBOL(simple_nosetlease);
1096 1093
1097void *simple_follow_link(struct dentry *dentry, struct nameidata *nd) 1094const char *simple_follow_link(struct dentry *dentry, void **cookie, struct nameidata *nd)
1098{ 1095{
1099 nd_set_link(nd, d_inode(dentry)->i_link); 1096 return d_inode(dentry)->i_link;
1100 return NULL;
1101} 1097}
1102EXPORT_SYMBOL(simple_follow_link); 1098EXPORT_SYMBOL(simple_follow_link);
1103 1099