2007-12-30 20:07:15 -07:00
|
|
|
/*
|
|
|
|
* linux/include/linux/sunrpc/svc_xprt.h
|
|
|
|
*
|
|
|
|
* RPC server transport I/O
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SUNRPC_SVC_XPRT_H
|
|
|
|
#define SUNRPC_SVC_XPRT_H
|
|
|
|
|
|
|
|
#include <linux/sunrpc/svc.h>
|
2007-12-30 20:07:46 -07:00
|
|
|
#include <linux/module.h>
|
2007-12-30 20:07:15 -07:00
|
|
|
|
|
|
|
struct svc_xprt_ops {
|
2007-12-30 20:07:42 -07:00
|
|
|
struct svc_xprt *(*xpo_create)(struct svc_serv *,
|
|
|
|
struct sockaddr *, int,
|
|
|
|
int);
|
2007-12-30 20:07:36 -07:00
|
|
|
struct svc_xprt *(*xpo_accept)(struct svc_xprt *);
|
2007-12-30 20:07:31 -07:00
|
|
|
int (*xpo_has_wspace)(struct svc_xprt *);
|
2007-12-30 20:07:23 -07:00
|
|
|
int (*xpo_recvfrom)(struct svc_rqst *);
|
2007-12-30 20:07:29 -07:00
|
|
|
void (*xpo_prep_reply_hdr)(struct svc_rqst *);
|
2007-12-30 20:07:23 -07:00
|
|
|
int (*xpo_sendto)(struct svc_rqst *);
|
2007-12-30 20:07:25 -07:00
|
|
|
void (*xpo_release_rqst)(struct svc_rqst *);
|
2007-12-30 20:07:27 -07:00
|
|
|
void (*xpo_detach)(struct svc_xprt *);
|
|
|
|
void (*xpo_free)(struct svc_xprt *);
|
2007-12-30 20:07:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct svc_xprt_class {
|
|
|
|
const char *xcl_name;
|
|
|
|
struct module *xcl_owner;
|
|
|
|
struct svc_xprt_ops *xcl_ops;
|
|
|
|
struct list_head xcl_list;
|
2007-12-30 20:07:21 -07:00
|
|
|
u32 xcl_max_payload;
|
2007-12-30 20:07:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct svc_xprt {
|
|
|
|
struct svc_xprt_class *xpt_class;
|
|
|
|
struct svc_xprt_ops *xpt_ops;
|
2007-12-30 20:07:46 -07:00
|
|
|
struct kref xpt_ref;
|
2007-12-30 20:07:53 -07:00
|
|
|
struct list_head xpt_list;
|
|
|
|
struct list_head xpt_ready;
|
2007-12-30 20:07:48 -07:00
|
|
|
unsigned long xpt_flags;
|
|
|
|
#define XPT_BUSY 0 /* enqueued/receiving */
|
|
|
|
#define XPT_CONN 1 /* conn pending */
|
|
|
|
#define XPT_CLOSE 2 /* dead or dying */
|
|
|
|
#define XPT_DATA 3 /* data pending */
|
|
|
|
#define XPT_TEMP 4 /* connected transport */
|
|
|
|
#define XPT_DEAD 6 /* transport closed */
|
|
|
|
#define XPT_CHNGBUF 7 /* need to change snd/rcv buf sizes */
|
|
|
|
#define XPT_DEFERRED 8 /* deferred request pending */
|
|
|
|
#define XPT_OLD 9 /* used for xprt aging mark+sweep */
|
|
|
|
#define XPT_DETACHED 10 /* detached from tempsocks list */
|
|
|
|
#define XPT_LISTENER 11 /* listening endpoint */
|
2007-12-30 20:07:50 -07:00
|
|
|
|
|
|
|
struct svc_pool *xpt_pool; /* current pool iff queued */
|
|
|
|
struct svc_serv *xpt_server; /* service for transport */
|
2007-12-30 20:07:55 -07:00
|
|
|
atomic_t xpt_reserved; /* space on outq that is rsvd */
|
2007-12-30 20:07:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
int svc_reg_xprt_class(struct svc_xprt_class *);
|
|
|
|
void svc_unreg_xprt_class(struct svc_xprt_class *);
|
2007-12-30 20:07:50 -07:00
|
|
|
void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *,
|
|
|
|
struct svc_serv *);
|
2007-12-30 20:07:42 -07:00
|
|
|
int svc_create_xprt(struct svc_serv *, char *, unsigned short, int);
|
2007-12-30 20:07:46 -07:00
|
|
|
void svc_xprt_put(struct svc_xprt *xprt);
|
|
|
|
|
|
|
|
static inline void svc_xprt_get(struct svc_xprt *xprt)
|
|
|
|
{
|
|
|
|
kref_get(&xprt->xpt_ref);
|
|
|
|
}
|
2007-12-30 20:07:15 -07:00
|
|
|
|
|
|
|
#endif /* SUNRPC_SVC_XPRT_H */
|