aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sunrpc/auth.h
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-06-23 20:17:58 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2007-07-10 23:40:34 -0400
commitf1c0a8615090359d57e096157feb9f900cbb233c (patch)
tree2d76448a7c83a45944161a3d966a42f922c543dd /include/linux/sunrpc/auth.h
parentde7a8ce38aea529876db3890b61947bc4bc004da (diff)
SUNRPC: Mark auth and cred operation tables as constant.
Also do the same for gss_api operation tables. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc/auth.h')
-rw-r--r--include/linux/sunrpc/auth.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h
index bc77c730325c..e606c2804685 100644
--- a/include/linux/sunrpc/auth.h
+++ b/include/linux/sunrpc/auth.h
@@ -35,7 +35,7 @@ struct rpc_credops;
35struct rpc_cred { 35struct rpc_cred {
36 struct hlist_node cr_hash; /* hash chain */ 36 struct hlist_node cr_hash; /* hash chain */
37 struct rpc_auth * cr_auth; 37 struct rpc_auth * cr_auth;
38 struct rpc_credops * cr_ops; 38 const struct rpc_credops *cr_ops;
39 unsigned long cr_expire; /* when to gc */ 39 unsigned long cr_expire; /* when to gc */
40 atomic_t cr_count; /* ref count */ 40 atomic_t cr_count; /* ref count */
41 unsigned short cr_flags; /* various flags */ 41 unsigned short cr_flags; /* various flags */
@@ -73,7 +73,7 @@ struct rpc_auth {
73 unsigned int au_verfsize; 73 unsigned int au_verfsize;
74 74
75 unsigned int au_flags; /* various flags */ 75 unsigned int au_flags; /* various flags */
76 struct rpc_authops * au_ops; /* operations */ 76 const struct rpc_authops *au_ops; /* operations */
77 rpc_authflavor_t au_flavor; /* pseudoflavor (note may 77 rpc_authflavor_t au_flavor; /* pseudoflavor (note may
78 * differ from the flavor in 78 * differ from the flavor in
79 * au_ops->au_flavor in gss 79 * au_ops->au_flavor in gss
@@ -119,14 +119,11 @@ struct rpc_credops {
119 void *, __be32 *, void *); 119 void *, __be32 *, void *);
120}; 120};
121 121
122extern struct rpc_authops authunix_ops; 122extern const struct rpc_authops authunix_ops;
123extern struct rpc_authops authnull_ops; 123extern const struct rpc_authops authnull_ops;
124#ifdef CONFIG_SUNRPC_SECURE
125extern struct rpc_authops authdes_ops;
126#endif
127 124
128int rpcauth_register(struct rpc_authops *); 125int rpcauth_register(const struct rpc_authops *);
129int rpcauth_unregister(struct rpc_authops *); 126int rpcauth_unregister(const struct rpc_authops *);
130struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *); 127struct rpc_auth * rpcauth_create(rpc_authflavor_t, struct rpc_clnt *);
131void rpcauth_release(struct rpc_auth *); 128void rpcauth_release(struct rpc_auth *);
132struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int); 129struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int);