diff options
author | Vasily Averin <vvs@virtuozzo.com> | 2018-12-24 14:46:00 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2018-12-28 05:01:41 +0300 |
commit | 64e20ba204df539a76004114e08abf1156302e35 (patch) | |
tree | 102fc8a0d5a5010df66946413d894468ac755ad8 /net/sunrpc/svc.c | |
parent | 7ef88ff85ff71dd167d29d47bdb91c63cedcd554 (diff) | |
download | linux-64e20ba204df539a76004114e08abf1156302e35.tar.xz |
sunrpc: remove unused xpo_prep_reply_hdr callback
xpo_prep_reply_hdr are not used now.
It was defined for tcp transport only, however it cannot be
called indirectly, so let's move it to its caller and
remove unused callback.
Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r-- | net/sunrpc/svc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index fb647bc01fc5..1e6701c065f9 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1145,6 +1145,17 @@ static __printf(2,3) void svc_printk(struct svc_rqst *rqstp, const char *fmt, .. #endif /* + * Setup response header for TCP, it has a 4B record length field. + */ +static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp) +{ + struct kvec *resv = &rqstp->rq_res.head[0]; + + /* tcp needs a space for the record length... */ + svc_putnl(resv, 0); +} + +/* * Common routine for processing the RPC request. */ static int |