1
0
Fork 0

[PATCH] nfsfh simple endianness annotations

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Trond Myklebust <trond.myklebust@fys.uio.no>
Acked-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
wifi-calibration
Al Viro 2006-10-19 23:28:55 -07:00 committed by Linus Torvalds
parent 63f103111f
commit 83b11340d6
2 changed files with 8 additions and 8 deletions

View File

@ -76,7 +76,7 @@ static int nfsd_acceptable(void *expv, struct dentry *dentry)
* comment in the NFSv3 spec says this is incorrect (implementation notes for * comment in the NFSv3 spec says this is incorrect (implementation notes for
* the write call). * the write call).
*/ */
static inline int static inline __be32
nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type) nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type)
{ {
/* Type can be negative when creating hardlinks - not to a dir */ /* Type can be negative when creating hardlinks - not to a dir */
@ -110,13 +110,13 @@ nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type)
* This is only called at the start of an nfsproc call, so fhp points to * This is only called at the start of an nfsproc call, so fhp points to
* a svc_fh which is all 0 except for the over-the-wire file handle. * a svc_fh which is all 0 except for the over-the-wire file handle.
*/ */
u32 __be32
fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
{ {
struct knfsd_fh *fh = &fhp->fh_handle; struct knfsd_fh *fh = &fhp->fh_handle;
struct svc_export *exp = NULL; struct svc_export *exp = NULL;
struct dentry *dentry; struct dentry *dentry;
u32 error = 0; __be32 error = 0;
dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp)); dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp));
@ -315,7 +315,7 @@ static inline void _fh_update_old(struct dentry *dentry,
fh->ofh_dirino = 0; fh->ofh_dirino = 0;
} }
int __be32
fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, struct svc_fh *ref_fh) fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, struct svc_fh *ref_fh)
{ {
/* ref_fh is a reference file handle. /* ref_fh is a reference file handle.
@ -451,7 +451,7 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, st
* Update file handle information after changing a dentry. * Update file handle information after changing a dentry.
* This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create
*/ */
int __be32
fh_update(struct svc_fh *fhp) fh_update(struct svc_fh *fhp)
{ {
struct dentry *dentry; struct dentry *dentry;

View File

@ -209,9 +209,9 @@ extern char * SVCFH_fmt(struct svc_fh *fhp);
/* /*
* Function prototypes * Function prototypes
*/ */
u32 fh_verify(struct svc_rqst *, struct svc_fh *, int, int); __be32 fh_verify(struct svc_rqst *, struct svc_fh *, int, int);
int fh_compose(struct svc_fh *, struct svc_export *, struct dentry *, struct svc_fh *); __be32 fh_compose(struct svc_fh *, struct svc_export *, struct dentry *, struct svc_fh *);
int fh_update(struct svc_fh *); __be32 fh_update(struct svc_fh *);
void fh_put(struct svc_fh *); void fh_put(struct svc_fh *);
static __inline__ struct svc_fh * static __inline__ struct svc_fh *