sunrpc: move p_count out of struct rpc_procinfo
p_count is the only writeable memeber of struct rpc_procinfo, which is a good candidate to be const-ified as it contains function pointers. This patch moves it into out out struct rpc_procinfo, and into a separate writable array that is pointed to by struct rpc_version and indexed by p_statidx. Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:

committed by
Anna Schumaker

parent
e91ff8e3c4
commit
c551858a88
@@ -364,11 +364,12 @@ void gssp_free_upcall_data(struct gssp_upcall_data *data)
|
||||
/*
|
||||
* Initialization stuff
|
||||
*/
|
||||
|
||||
static unsigned int gssp_version1_counts[ARRAY_SIZE(gssp_procedures)];
|
||||
static const struct rpc_version gssp_version1 = {
|
||||
.number = GSSPROXY_VERS_1,
|
||||
.nrprocs = ARRAY_SIZE(gssp_procedures),
|
||||
.procs = gssp_procedures,
|
||||
.counts = gssp_version1_counts,
|
||||
};
|
||||
|
||||
static const struct rpc_version *gssp_version[] = {
|
||||
|
Reference in New Issue
Block a user