diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 1 | ||||
-rw-r--r-- | include/linux/sunrpc/svcsock.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index 85df97acc2d0..31a44f441fd1 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h | |||
@@ -10,6 +10,7 @@ | |||
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_accept)(struct svc_xprt *); | ||
13 | int (*xpo_has_wspace)(struct svc_xprt *); | 14 | int (*xpo_has_wspace)(struct svc_xprt *); |
14 | int (*xpo_recvfrom)(struct svc_rqst *); | 15 | int (*xpo_recvfrom)(struct svc_rqst *); |
15 | void (*xpo_prep_reply_hdr)(struct svc_rqst *); | 16 | void (*xpo_prep_reply_hdr)(struct svc_rqst *); |
diff --git a/include/linux/sunrpc/svcsock.h b/include/linux/sunrpc/svcsock.h index 08e78d0a364f..9882ce0ee33c 100644 --- a/include/linux/sunrpc/svcsock.h +++ b/include/linux/sunrpc/svcsock.h | |||
@@ -36,6 +36,7 @@ struct svc_sock { | |||
36 | #define SK_DEFERRED 8 /* request on sk_deferred */ | 36 | #define SK_DEFERRED 8 /* request on sk_deferred */ |
37 | #define SK_OLD 9 /* used for temp socket aging mark+sweep */ | 37 | #define SK_OLD 9 /* used for temp socket aging mark+sweep */ |
38 | #define SK_DETACHED 10 /* detached from tempsocks list */ | 38 | #define SK_DETACHED 10 /* detached from tempsocks list */ |
39 | #define SK_LISTENER 11 /* listening endpoint */ | ||
39 | 40 | ||
40 | atomic_t sk_reserved; /* space on outq that is reserved */ | 41 | atomic_t sk_reserved; /* space on outq that is reserved */ |
41 | 42 | ||