diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-20 13:53:56 -0500 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-31 19:28:20 -0500 |
| commit | 080b794ce5ad318ce34c52abaedf1bc6788a5abb (patch) | |
| tree | f44c01823db805ae30e866d458dc5c6f7002750a /include/linux | |
| parent | 6eac7d3f45a2519283d38bf670cb6968230124f8 (diff) | |
SUNRPC: constify rpc_program->name
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sunrpc/clnt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index db6970ced9bc..4a46ffd73a04 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
| @@ -70,12 +70,12 @@ struct rpc_clnt { | |||
| 70 | */ | 70 | */ |
| 71 | #define RPC_MAXVERSION 4 | 71 | #define RPC_MAXVERSION 4 |
| 72 | struct rpc_program { | 72 | struct rpc_program { |
| 73 | char * name; /* protocol name */ | 73 | const char * name; /* protocol name */ |
| 74 | u32 number; /* program number */ | 74 | u32 number; /* program number */ |
| 75 | unsigned int nrvers; /* number of versions */ | 75 | unsigned int nrvers; /* number of versions */ |
| 76 | struct rpc_version ** version; /* version array */ | 76 | struct rpc_version ** version; /* version array */ |
| 77 | struct rpc_stat * stats; /* statistics */ | 77 | struct rpc_stat * stats; /* statistics */ |
| 78 | char * pipe_dir_name; /* path to rpc_pipefs dir */ | 78 | const char * pipe_dir_name; /* path to rpc_pipefs dir */ |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | struct rpc_version { | 81 | struct rpc_version { |
