Skip to content

Commit

Permalink
[PATCH] knfsd: SUNRPC: Don't set msg_name and msg_namelen when callin…
Browse files Browse the repository at this point in the history
…g sock_recvmsg

Clean-up: msg_name and msg_namelen are not used by sock_recvmsg, so don't
bother to set them in svc_recvfrom.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Chuck Lever authored and Linus Torvalds committed Feb 12, 2007
1 parent 067d781 commit 1ba9510
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions net/sunrpc/svcsock.c
Original file line number Diff line number Diff line change
Expand Up @@ -569,29 +569,21 @@ static int
svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, int buflen)
{
struct svc_sock *svsk = rqstp->rq_sock;
struct msghdr msg;
struct socket *sock;
int len;

rqstp->rq_addrlen = sizeof(rqstp->rq_addr);
sock = svsk->sk_sock;

msg.msg_name = &rqstp->rq_addr;
msg.msg_namelen = sizeof(rqstp->rq_addr);
msg.msg_control = NULL;
msg.msg_controllen = 0;

msg.msg_flags = MSG_DONTWAIT;
struct msghdr msg = {
.msg_flags = MSG_DONTWAIT,
};
int len;

len = kernel_recvmsg(sock, &msg, iov, nr, buflen, MSG_DONTWAIT);
len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
msg.msg_flags);

/* sock_recvmsg doesn't fill in the name/namelen, so we must..
*/
memcpy(&rqstp->rq_addr, &svsk->sk_remote, svsk->sk_remotelen);
rqstp->rq_addrlen = svsk->sk_remotelen;

dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
rqstp->rq_sock, iov[0].iov_base, iov[0].iov_len, len);
svsk, iov[0].iov_base, iov[0].iov_len, len);

return len;
}
Expand Down

0 comments on commit 1ba9510

Please sign in to comment.