nfs42: decode_layoutstats does not need res parameter
Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Peng Tao <tao.peng@primarydata.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
0762ed2ced
commit
19cf633513
@ -238,8 +238,7 @@ out_overflow:
|
|||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int decode_layoutstats(struct xdr_stream *xdr,
|
static int decode_layoutstats(struct xdr_stream *xdr)
|
||||||
struct nfs42_layoutstat_res *res)
|
|
||||||
{
|
{
|
||||||
return decode_op_hdr(xdr, OP_LAYOUTSTATS);
|
return decode_op_hdr(xdr, OP_LAYOUTSTATS);
|
||||||
}
|
}
|
||||||
@ -343,7 +342,7 @@ static int nfs4_xdr_dec_layoutstats(struct rpc_rqst *rqstp,
|
|||||||
goto out;
|
goto out;
|
||||||
WARN_ON(res->num_dev > PNFS_LAYOUTSTATS_MAXDEV);
|
WARN_ON(res->num_dev > PNFS_LAYOUTSTATS_MAXDEV);
|
||||||
for (i = 0; i < res->num_dev; i++) {
|
for (i = 0; i < res->num_dev; i++) {
|
||||||
status = decode_layoutstats(xdr, res);
|
status = decode_layoutstats(xdr);
|
||||||
if (status)
|
if (status)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user