diff options
author | Tom Tucker <tom@opengridcomputing.com> | 2007-12-30 22:08:10 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2008-02-01 16:42:12 -0500 |
commit | 8c7b0172a1db8120d25ecb4eff69664c52ee7639 (patch) | |
tree | d048ab4c5c378d2a90e5dd52a09dee4e24712cc9 /include/linux/sunrpc/svc.h | |
parent | def13d7401e9b95bbd34c20057ebeb2972708b1b (diff) |
svc: Make deferral processing xprt independent
This patch moves the transport independent sk_deferred list to the svc_xprt
structure and updates the svc_deferred_req structure to keep pointers to
svc_xprt's directly. The deferral processing code is also moved out of the
transport dependent recvfrom functions and into the generic svc_recv path.
Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
Acked-by: Neil Brown <neilb@suse.de>
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Greg Banks <gnb@sgi.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'include/linux/sunrpc/svc.h')
-rw-r--r-- | include/linux/sunrpc/svc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index cfb2652f6f8f..40adc9d75a6d 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
@@ -320,7 +320,7 @@ static inline void svc_free_res_pages(struct svc_rqst *rqstp) | |||
320 | 320 | ||
321 | struct svc_deferred_req { | 321 | struct svc_deferred_req { |
322 | u32 prot; /* protocol (UDP or TCP) */ | 322 | u32 prot; /* protocol (UDP or TCP) */ |
323 | struct svc_sock *svsk; | 323 | struct svc_xprt *xprt; |
324 | struct sockaddr_storage addr; /* where reply must go */ | 324 | struct sockaddr_storage addr; /* where reply must go */ |
325 | size_t addrlen; | 325 | size_t addrlen; |
326 | union svc_addr_u daddr; /* where reply must come from */ | 326 | union svc_addr_u daddr; /* where reply must come from */ |