[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070719082838.GA2507@infradead.org>
Date: Thu, 19 Jul 2007 09:28:38 +0100
From: Christoph Hellwig <hch@...radead.org>
To: "J. Bruce Fields" <bfields@...ldses.org>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
NeilBrown <neilb@...e.de>, andros@...i.umich.edu,
"J. Bruce Fields" <bfields@...i.umich.edu>,
nfs@...ts.sourceforge.net, linux-kernel@...r.kernel.org
Subject: Re: [NFS] [PATCH 4/5] knfsd: move EX_RDONLY out of header
On Wed, Jul 18, 2007 at 06:57:29PM -0400, J. Bruce Fields wrote:
> From: J. Bruce Fields <bfields@...i.umich.edu>
>
> EX_RDONLY is only called in one place; just put it there.
>
> Signed-off-by: "J. Bruce Fields" <bfields@...i.umich.edu>
> ---
> fs/nfsd/vfs.c | 12 ++++++++++++
> include/linux/nfsd/export.h | 12 ------------
> 2 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> index 5c97d0e..f2684e5 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)
> return err;
> }
>
> +static inline int EX_RDONLY(struct svc_export *exp, struct svc_rqst *rqstp)
> +{
> + struct exp_flavor_info *f;
> + struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
> +
> + for (f = exp->ex_flavors; f < end; f++) {
> + if (f->pseudoflavor == rqstp->rq_flavor)
> + return f->flags & NFSEXP_READONLY;
> + }
> + return exp->ex_flags & NFSEXP_READONLY;
> +}
As mentioned last time lease remove the inline qualifier and give it a
lower-case name.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists