diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-20 02:28:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-20 13:26:41 -0400 |
commit | 83b11340d683a67a77e35a5ffb5ad4afbf0be4e5 (patch) | |
tree | 3290de0b43b4e2190ad91be70ebf9472f7ae6c36 /fs/nfsd/nfsfh.c | |
parent | 63f103111fdfc3cba00e4c94921d32362f375d93 (diff) |
[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>
Diffstat (limited to 'fs/nfsd/nfsfh.c')
-rw-r--r-- | fs/nfsd/nfsfh.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c index 501d83884530..727ab3bd450d 100644 --- a/fs/nfsd/nfsfh.c +++ b/fs/nfsd/nfsfh.c | |||
@@ -76,7 +76,7 @@ static int nfsd_acceptable(void *expv, struct dentry *dentry) | |||
76 | * comment in the NFSv3 spec says this is incorrect (implementation notes for | 76 | * comment in the NFSv3 spec says this is incorrect (implementation notes for |
77 | * the write call). | 77 | * the write call). |
78 | */ | 78 | */ |
79 | static inline int | 79 | static inline __be32 |
80 | nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type) | 80 | nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type) |
81 | { | 81 | { |
82 | /* Type can be negative when creating hardlinks - not to a dir */ | 82 | /* 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) | |||
110 | * This is only called at the start of an nfsproc call, so fhp points to | 110 | * This is only called at the start of an nfsproc call, so fhp points to |
111 | * a svc_fh which is all 0 except for the over-the-wire file handle. | 111 | * a svc_fh which is all 0 except for the over-the-wire file handle. |
112 | */ | 112 | */ |
113 | u32 | 113 | __be32 |
114 | fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) | 114 | fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) |
115 | { | 115 | { |
116 | struct knfsd_fh *fh = &fhp->fh_handle; | 116 | struct knfsd_fh *fh = &fhp->fh_handle; |
117 | struct svc_export *exp = NULL; | 117 | struct svc_export *exp = NULL; |
118 | struct dentry *dentry; | 118 | struct dentry *dentry; |
119 | u32 error = 0; | 119 | __be32 error = 0; |
120 | 120 | ||
121 | dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp)); | 121 | dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp)); |
122 | 122 | ||
@@ -315,7 +315,7 @@ static inline void _fh_update_old(struct dentry *dentry, | |||
315 | fh->ofh_dirino = 0; | 315 | fh->ofh_dirino = 0; |
316 | } | 316 | } |
317 | 317 | ||
318 | int | 318 | __be32 |
319 | fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, struct svc_fh *ref_fh) | 319 | fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, struct svc_fh *ref_fh) |
320 | { | 320 | { |
321 | /* ref_fh is a reference file handle. | 321 | /* 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 | |||
451 | * Update file handle information after changing a dentry. | 451 | * Update file handle information after changing a dentry. |
452 | * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create | 452 | * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create |
453 | */ | 453 | */ |
454 | int | 454 | __be32 |
455 | fh_update(struct svc_fh *fhp) | 455 | fh_update(struct svc_fh *fhp) |
456 | { | 456 | { |
457 | struct dentry *dentry; | 457 | struct dentry *dentry; |