aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-07-19 04:49:20 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-19 13:04:52 -0400
commite22841c637dc8b308b40f59d64a5b6683d458ab7 (patch)
tree4a5d32f430c8123a71a1731eb6b94f807bb435f4
parent5d3dbbeaf56d0365ac6b5c0a0da0bd31cc4781e1 (diff)
knfsd: move EX_RDONLY out of header
EX_RDONLY is only called in one place; just put it there. Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu> Acked-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/nfsd/vfs.c12
-rw-r--r--include/linux/nfsd/export.h12
2 files changed, 12 insertions, 12 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
1800static 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 */
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h
index 78feb7beff75..fb4e93016666 100644
--- a/include/linux/nfsd/export.h
+++ b/include/linux/nfsd/export.h
@@ -116,18 +116,6 @@ struct svc_expkey {
116#define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE) 116#define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE)
117#define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES) 117#define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES)
118 118
119static inline int EX_RDONLY(struct svc_export *exp, struct svc_rqst *rqstp)
120{
121 struct exp_flavor_info *f;
122 struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
123
124 for (f = exp->ex_flavors; f < end; f++) {
125 if (f->pseudoflavor == rqstp->rq_flavor)
126 return f->flags & NFSEXP_READONLY;
127 }
128 return exp->ex_flags & NFSEXP_READONLY;
129}
130
131__be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp); 119__be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp);
132 120
133/* 121/*