diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sunrpc/svc.h | 2 | ||||
| -rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 37f7448c997e..cfb2652f6f8f 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
| @@ -217,7 +217,7 @@ struct svc_rqst { | |||
| 217 | struct auth_ops * rq_authop; /* authentication flavour */ | 217 | struct auth_ops * rq_authop; /* authentication flavour */ |
| 218 | u32 rq_flavor; /* pseudoflavor */ | 218 | u32 rq_flavor; /* pseudoflavor */ |
| 219 | struct svc_cred rq_cred; /* auth info */ | 219 | struct svc_cred rq_cred; /* auth info */ |
| 220 | struct sk_buff * rq_skbuff; /* fast recv inet buffer */ | 220 | void * rq_xprt_ctxt; /* transport specific context ptr */ |
| 221 | struct svc_deferred_req*rq_deferred; /* deferred request we are replaying */ | 221 | struct svc_deferred_req*rq_deferred; /* deferred request we are replaying */ |
| 222 | 222 | ||
| 223 | struct xdr_buf rq_arg; | 223 | struct xdr_buf rq_arg; |
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index 7ae6c857b05d..01ee7bc2c374 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | struct svc_xprt_ops { | 12 | struct svc_xprt_ops { |
| 13 | int (*xpo_recvfrom)(struct svc_rqst *); | 13 | int (*xpo_recvfrom)(struct svc_rqst *); |
| 14 | int (*xpo_sendto)(struct svc_rqst *); | 14 | int (*xpo_sendto)(struct svc_rqst *); |
| 15 | void (*xpo_release_rqst)(struct svc_rqst *); | ||
| 15 | }; | 16 | }; |
| 16 | 17 | ||
| 17 | struct svc_xprt_class { | 18 | struct svc_xprt_class { |
