Commit f2ca7153 authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd: allow exports of symlinks

We want to allow exports of symlinks, to allow mountd to communicate to
the kernel which symlinks lead to exports, and hence which symlinks need
to be visible on the pseudofilesystem.
Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
parent 3227fa41
...@@ -358,10 +358,12 @@ static struct svc_export *svc_export_lookup(struct svc_export *); ...@@ -358,10 +358,12 @@ static struct svc_export *svc_export_lookup(struct svc_export *);
static int check_export(struct inode *inode, int flags, unsigned char *uuid) static int check_export(struct inode *inode, int flags, unsigned char *uuid)
{ {
/* We currently export only dirs and regular files. /*
* This is what umountd does. * We currently export only dirs, regular files, and (for v4
* pseudoroot) symlinks.
*/ */
if (!S_ISDIR(inode->i_mode) && if (!S_ISDIR(inode->i_mode) &&
!S_ISLNK(inode->i_mode) &&
!S_ISREG(inode->i_mode)) !S_ISREG(inode->i_mode))
return -ENOTDIR; return -ENOTDIR;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment