diff options
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/vfs.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 5c97d0ea9e22..f2684e57cf22 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -1797,6 +1797,18 @@ nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat) | |||
1797 | return err; | 1797 | return err; |
1798 | } | 1798 | } |
1799 | 1799 | ||
1800 | static inline int EX_RDONLY(struct svc_export *exp, struct svc_rqst *rqstp) | ||
1801 | { | ||
1802 | struct exp_flavor_info *f; | ||
1803 | struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors; | ||
1804 | |||
1805 | for (f = exp->ex_flavors; f < end; f++) { | ||
1806 | if (f->pseudoflavor == rqstp->rq_flavor) | ||
1807 | return f->flags & NFSEXP_READONLY; | ||
1808 | } | ||
1809 | return exp->ex_flags & NFSEXP_READONLY; | ||
1810 | } | ||
1811 | |||
1800 | /* | 1812 | /* |
1801 | * Check for a user's access permissions to this inode. | 1813 | * Check for a user's access permissions to this inode. |
1802 | */ | 1814 | */ |