diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-01-12 02:06:05 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-12 16:29:51 -0500 |
commit | 0e0243dc35a2349b3946e54f90e874be396fdb8b (patch) | |
tree | e73bcb2dc5e45ce56a35ca3808287425f39f69c2 /fs | |
parent | 2485a4b610171f4e1c4ab0d053569747795c1bbe (diff) |
NFS: add an endian notation
This function returns a big endian value. The implementation in
fs/nfs/callback_proc.c is declared with "__be32" but the .h file uses
"unsigned" instead. It makes sparse complain:
fs/nfs/callback_proc.c:232:8: error:
symbol 'nfs4_callback_layoutrecall' redeclared with different
type (originally declared at fs/nfs/callback.h:165) - different
base types
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/callback.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h index 07df5f1d85e5..c89d3b9e483c 100644 --- a/fs/nfs/callback.h +++ b/fs/nfs/callback.h | |||
@@ -162,7 +162,7 @@ struct cb_layoutrecallargs { | |||
162 | }; | 162 | }; |
163 | }; | 163 | }; |
164 | 164 | ||
165 | extern unsigned nfs4_callback_layoutrecall( | 165 | extern __be32 nfs4_callback_layoutrecall( |
166 | struct cb_layoutrecallargs *args, | 166 | struct cb_layoutrecallargs *args, |
167 | void *dummy, struct cb_process_state *cps); | 167 | void *dummy, struct cb_process_state *cps); |
168 | 168 | ||