diff options
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 2 | ||||
-rw-r--r-- | include/linux/sunrpc/svcsock.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index 187dc4e2e202..7ae6c857b05d 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h | |||
@@ -10,6 +10,8 @@ | |||
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 | int (*xpo_recvfrom)(struct svc_rqst *); | ||
14 | int (*xpo_sendto)(struct svc_rqst *); | ||
13 | }; | 15 | }; |
14 | 16 | ||
15 | struct svc_xprt_class { | 17 | struct svc_xprt_class { |
diff --git a/include/linux/sunrpc/svcsock.h b/include/linux/sunrpc/svcsock.h index 1878cbe1aa4f..08e78d0a364f 100644 --- a/include/linux/sunrpc/svcsock.h +++ b/include/linux/sunrpc/svcsock.h | |||
@@ -45,9 +45,6 @@ struct svc_sock { | |||
45 | * be revisted */ | 45 | * be revisted */ |
46 | struct mutex sk_mutex; /* to serialize sending data */ | 46 | struct mutex sk_mutex; /* to serialize sending data */ |
47 | 47 | ||
48 | int (*sk_recvfrom)(struct svc_rqst *rqstp); | ||
49 | int (*sk_sendto)(struct svc_rqst *rqstp); | ||
50 | |||
51 | /* We keep the old state_change and data_ready CB's here */ | 48 | /* We keep the old state_change and data_ready CB's here */ |
52 | void (*sk_ostate)(struct sock *); | 49 | void (*sk_ostate)(struct sock *); |
53 | void (*sk_odata)(struct sock *, int bytes); | 50 | void (*sk_odata)(struct sock *, int bytes); |