diff options
Diffstat (limited to 'include/linux/sunrpc/auth.h')
-rw-r--r-- | include/linux/sunrpc/auth.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/linux/sunrpc/auth.h b/include/linux/sunrpc/auth.h index eed3cb16ccf1..96e237f8e60b 100644 --- a/include/linux/sunrpc/auth.h +++ b/include/linux/sunrpc/auth.h | |||
@@ -131,11 +131,12 @@ struct rpc_credops { | |||
131 | void (*crdestroy)(struct rpc_cred *); | 131 | void (*crdestroy)(struct rpc_cred *); |
132 | 132 | ||
133 | int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); | 133 | int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); |
134 | __be32 * (*crmarshal)(struct rpc_task *, __be32 *); | 134 | int (*crmarshal)(struct rpc_task *task, |
135 | struct xdr_stream *xdr); | ||
135 | int (*crrefresh)(struct rpc_task *); | 136 | int (*crrefresh)(struct rpc_task *); |
136 | __be32 * (*crvalidate)(struct rpc_task *, __be32 *); | 137 | __be32 * (*crvalidate)(struct rpc_task *, __be32 *); |
137 | int (*crwrap_req)(struct rpc_task *, kxdreproc_t, | 138 | int (*crwrap_req)(struct rpc_task *task, |
138 | void *, __be32 *, void *); | 139 | struct xdr_stream *xdr); |
139 | int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t, | 140 | int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t, |
140 | void *, __be32 *, void *); | 141 | void *, __be32 *, void *); |
141 | int (*crkey_timeout)(struct rpc_cred *); | 142 | int (*crkey_timeout)(struct rpc_cred *); |
@@ -165,9 +166,13 @@ struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred * | |||
165 | void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *); | 166 | void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *); |
166 | struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int); | 167 | struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int); |
167 | void put_rpccred(struct rpc_cred *); | 168 | void put_rpccred(struct rpc_cred *); |
168 | __be32 * rpcauth_marshcred(struct rpc_task *, __be32 *); | 169 | int rpcauth_marshcred(struct rpc_task *task, |
170 | struct xdr_stream *xdr); | ||
169 | __be32 * rpcauth_checkverf(struct rpc_task *, __be32 *); | 171 | __be32 * rpcauth_checkverf(struct rpc_task *, __be32 *); |
170 | int rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, __be32 *data, void *obj); | 172 | int rpcauth_wrap_req_encode(struct rpc_task *task, |
173 | struct xdr_stream *xdr); | ||
174 | int rpcauth_wrap_req(struct rpc_task *task, | ||
175 | struct xdr_stream *xdr); | ||
171 | int rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, __be32 *data, void *obj); | 176 | int rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, __be32 *data, void *obj); |
172 | bool rpcauth_xmit_need_reencode(struct rpc_task *task); | 177 | bool rpcauth_xmit_need_reencode(struct rpc_task *task); |
173 | int rpcauth_refreshcred(struct rpc_task *); | 178 | int rpcauth_refreshcred(struct rpc_task *); |