]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/sunrpc/svc_xprt.h
svc: Change sk_inuse to a kref
[linux-2.6-omap-h63xx.git] / include / linux / sunrpc / svc_xprt.h
1 /*
2  * linux/include/linux/sunrpc/svc_xprt.h
3  *
4  * RPC server transport I/O
5  */
6
7 #ifndef SUNRPC_SVC_XPRT_H
8 #define SUNRPC_SVC_XPRT_H
9
10 #include <linux/sunrpc/svc.h>
11 #include <linux/module.h>
12
13 struct svc_xprt_ops {
14         struct svc_xprt *(*xpo_create)(struct svc_serv *,
15                                        struct sockaddr *, int,
16                                        int);
17         struct svc_xprt *(*xpo_accept)(struct svc_xprt *);
18         int             (*xpo_has_wspace)(struct svc_xprt *);
19         int             (*xpo_recvfrom)(struct svc_rqst *);
20         void            (*xpo_prep_reply_hdr)(struct svc_rqst *);
21         int             (*xpo_sendto)(struct svc_rqst *);
22         void            (*xpo_release_rqst)(struct svc_rqst *);
23         void            (*xpo_detach)(struct svc_xprt *);
24         void            (*xpo_free)(struct svc_xprt *);
25 };
26
27 struct svc_xprt_class {
28         const char              *xcl_name;
29         struct module           *xcl_owner;
30         struct svc_xprt_ops     *xcl_ops;
31         struct list_head        xcl_list;
32         u32                     xcl_max_payload;
33 };
34
35 struct svc_xprt {
36         struct svc_xprt_class   *xpt_class;
37         struct svc_xprt_ops     *xpt_ops;
38         struct kref             xpt_ref;
39 };
40
41 int     svc_reg_xprt_class(struct svc_xprt_class *);
42 void    svc_unreg_xprt_class(struct svc_xprt_class *);
43 void    svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *);
44 int     svc_create_xprt(struct svc_serv *, char *, unsigned short, int);
45 void    svc_xprt_put(struct svc_xprt *xprt);
46
47 static inline void svc_xprt_get(struct svc_xprt *xprt)
48 {
49         kref_get(&xprt->xpt_ref);
50 }
51
52 #endif /* SUNRPC_SVC_XPRT_H */