Commit b8a8a0dd authored by Trond Myklebust's avatar Trond Myklebust

NFSv4: Fix an incorrect pointer declaration in decode_first_pnfs_layout_type

We always encode to __be32 format in XDR: silences a sparse warning.
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
Cc: Andy Adamson <andros@netapp.com>
parent 393faffe
...@@ -4630,7 +4630,7 @@ static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr, ...@@ -4630,7 +4630,7 @@ static int decode_getfattr(struct xdr_stream *xdr, struct nfs_fattr *fattr,
static int decode_first_pnfs_layout_type(struct xdr_stream *xdr, static int decode_first_pnfs_layout_type(struct xdr_stream *xdr,
uint32_t *layouttype) uint32_t *layouttype)
{ {
uint32_t *p; __be32 *p;
int num; int num;
p = xdr_inline_decode(xdr, 4); p = xdr_inline_decode(xdr, 4);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment