mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:47:28 +07:00
nfsd: Fix a memory scribble in the callback channel
The offset of the entry in struct rpc_version has to match the version
number.
Reported-by: Dave Jones <davej@codemonkey.org.uk>
Fixes: 1c5876ddbd
("sunrpc: move p_count out of struct rpc_procinfo")
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Reported-by: Dave Jones <davej@codemonkey.org.uk>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
5771a8c088
commit
eff7936877
@ -720,8 +720,8 @@ static const struct rpc_version nfs_cb_version4 = {
|
|||||||
.counts = nfs4_cb_counts,
|
.counts = nfs4_cb_counts,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct rpc_version *nfs_cb_version[] = {
|
static const struct rpc_version *nfs_cb_version[2] = {
|
||||||
&nfs_cb_version4,
|
[1] = &nfs_cb_version4,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct rpc_program cb_program;
|
static const struct rpc_program cb_program;
|
||||||
@ -795,7 +795,7 @@ static int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *c
|
|||||||
.saddress = (struct sockaddr *) &conn->cb_saddr,
|
.saddress = (struct sockaddr *) &conn->cb_saddr,
|
||||||
.timeout = &timeparms,
|
.timeout = &timeparms,
|
||||||
.program = &cb_program,
|
.program = &cb_program,
|
||||||
.version = 0,
|
.version = 1,
|
||||||
.flags = (RPC_CLNT_CREATE_NOPING | RPC_CLNT_CREATE_QUIET),
|
.flags = (RPC_CLNT_CREATE_NOPING | RPC_CLNT_CREATE_QUIET),
|
||||||
};
|
};
|
||||||
struct rpc_clnt *client;
|
struct rpc_clnt *client;
|
||||||
|
Loading…
Reference in New Issue
Block a user