diff options
author | Tom Tucker <tom@opengridcomputing.com> | 2007-12-30 22:07:42 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2008-02-01 16:42:09 -0500 |
commit | b700cbb11fced2a0e953fdd19eac07ffaad86598 (patch) | |
tree | 345028d75f049b63bcec574158b94e205e9684bc /include/linux/sunrpc | |
parent | f9f3cc4fae04c87c815a4b473fb577cf74ef27da (diff) |
svc: Add a generic transport svc_create_xprt function
The svc_create_xprt function is a transport independent version
of the svc_makesock function.
Since transport instance creation contains transport dependent and
independent components, add an xpo_create transport function. The
transport implementation of this function allocates the memory for the
endpoint, implements the transport dependent initialization logic, and
calls svc_xprt_init to initialize the transport independent field (svc_xprt)
in it's data structure.
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')
-rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index 31a44f441fd1..986a5a07044b 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h | |||
@@ -10,6 +10,9 @@ | |||
10 | #include <linux/sunrpc/svc.h> | 10 | #include <linux/sunrpc/svc.h> |
11 | 11 | ||
12 | struct svc_xprt_ops { | 12 | struct svc_xprt_ops { |
13 | struct svc_xprt *(*xpo_create)(struct svc_serv *, | ||
14 | struct sockaddr *, int, | ||
15 | int); | ||
13 | struct svc_xprt *(*xpo_accept)(struct svc_xprt *); | 16 | struct svc_xprt *(*xpo_accept)(struct svc_xprt *); |
14 | int (*xpo_has_wspace)(struct svc_xprt *); | 17 | int (*xpo_has_wspace)(struct svc_xprt *); |
15 | int (*xpo_recvfrom)(struct svc_rqst *); | 18 | int (*xpo_recvfrom)(struct svc_rqst *); |
@@ -36,5 +39,6 @@ struct svc_xprt { | |||
36 | int svc_reg_xprt_class(struct svc_xprt_class *); | 39 | int svc_reg_xprt_class(struct svc_xprt_class *); |
37 | void svc_unreg_xprt_class(struct svc_xprt_class *); | 40 | void svc_unreg_xprt_class(struct svc_xprt_class *); |
38 | void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *); | 41 | void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *); |
42 | int svc_create_xprt(struct svc_serv *, char *, unsigned short, int); | ||
39 | 43 | ||
40 | #endif /* SUNRPC_SVC_XPRT_H */ | 44 | #endif /* SUNRPC_SVC_XPRT_H */ |