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 /net/sunrpc/svc_xprt.c | |
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 'net/sunrpc/svc_xprt.c')
-rw-r--r-- | net/sunrpc/svc_xprt.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c index fe5270fae336..6ff5ca71602f 100644 --- a/net/sunrpc/svc_xprt.c +++ b/net/sunrpc/svc_xprt.c | |||
@@ -81,3 +81,40 @@ void svc_xprt_init(struct svc_xprt_class *xcl, struct svc_xprt *xprt) | |||
81 | xprt->xpt_ops = xcl->xcl_ops; | 81 | xprt->xpt_ops = xcl->xcl_ops; |
82 | } | 82 | } |
83 | EXPORT_SYMBOL_GPL(svc_xprt_init); | 83 | EXPORT_SYMBOL_GPL(svc_xprt_init); |
84 | |||
85 | int svc_create_xprt(struct svc_serv *serv, char *xprt_name, unsigned short port, | ||
86 | int flags) | ||
87 | { | ||
88 | struct svc_xprt_class *xcl; | ||
89 | int ret = -ENOENT; | ||
90 | struct sockaddr_in sin = { | ||
91 | .sin_family = AF_INET, | ||
92 | .sin_addr.s_addr = INADDR_ANY, | ||
93 | .sin_port = htons(port), | ||
94 | }; | ||
95 | dprintk("svc: creating transport %s[%d]\n", xprt_name, port); | ||
96 | spin_lock(&svc_xprt_class_lock); | ||
97 | list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) { | ||
98 | if (strcmp(xprt_name, xcl->xcl_name) == 0) { | ||
99 | spin_unlock(&svc_xprt_class_lock); | ||
100 | if (try_module_get(xcl->xcl_owner)) { | ||
101 | struct svc_xprt *newxprt; | ||
102 | ret = 0; | ||
103 | newxprt = xcl->xcl_ops->xpo_create | ||
104 | (serv, | ||
105 | (struct sockaddr *)&sin, sizeof(sin), | ||
106 | flags); | ||
107 | if (IS_ERR(newxprt)) { | ||
108 | module_put(xcl->xcl_owner); | ||
109 | ret = PTR_ERR(newxprt); | ||
110 | } | ||
111 | } | ||
112 | goto out; | ||
113 | } | ||
114 | } | ||
115 | spin_unlock(&svc_xprt_class_lock); | ||
116 | dprintk("svc: transport %s not found\n", xprt_name); | ||
117 | out: | ||
118 | return ret; | ||
119 | } | ||
120 | EXPORT_SYMBOL_GPL(svc_create_xprt); | ||