aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@redhat.com>2016-10-04 08:40:45 -0400
committerMiklos Szeredi <mszeredi@redhat.com>2016-10-14 05:16:47 -0400
commitd60874cd58fcb21372f2df698c20f8cf2f78fdcb (patch)
treeeade1cfdc44321b875a51d1beef4042e9e657165 /include/linux/fs.h
parent78a3fa4f3249055b472983065b30c02392cf7e2a (diff)
vfs: add vfs_get_link() helper
This helper is for filesystems that want to read the symlink and are better off with the get_link() interface (returning a char *) rather than the readlink() interface (copy into a userspace buffer). Also call the LSM hook for readlink (not get_link) since this is for symlink reading not following. Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 901e25d495cc..bc8ac5108368 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2919,6 +2919,7 @@ extern int vfs_stat(const char __user *, struct kstat *);
2919extern int vfs_lstat(const char __user *, struct kstat *); 2919extern int vfs_lstat(const char __user *, struct kstat *);
2920extern int vfs_fstat(unsigned int, struct kstat *); 2920extern int vfs_fstat(unsigned int, struct kstat *);
2921extern int vfs_fstatat(int , const char __user *, struct kstat *, int); 2921extern int vfs_fstatat(int , const char __user *, struct kstat *, int);
2922extern const char *vfs_get_link(struct dentry *, struct delayed_call *);
2922 2923
2923extern int __generic_block_fiemap(struct inode *inode, 2924extern int __generic_block_fiemap(struct inode *inode,
2924 struct fiemap_extent_info *fieinfo, 2925 struct fiemap_extent_info *fieinfo,