Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b76a5afd authored by Trond Myklebust's avatar Trond Myklebust
Browse files

SUNRPC: Use the discard iterator rather than MSG_TRUNC



When discarding message data from the stream, we're better off using
the discard iterator, since that will work with non-TCP streams.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 26781eab
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -376,8 +376,8 @@ static ssize_t
xs_read_discard(struct socket *sock, struct msghdr *msg, int flags,
		size_t count)
{
	struct kvec kvec = { 0 };
	return xs_read_kvec(sock, msg, flags | MSG_TRUNC, &kvec, count, 0);
	iov_iter_discard(&msg->msg_iter, READ, count);
	return sock_recvmsg(sock, msg, flags);
}

static ssize_t
@@ -616,6 +616,7 @@ xs_read_stream(struct sock_xprt *transport, int flags)
	if (transport->recv.offset < transport->recv.len) {
		if (!(msg.msg_flags & MSG_TRUNC))
			return read;
		msg.msg_flags = 0;
		ret = xs_read_discard(transport->sock, &msg, flags,
				transport->recv.len - transport->recv.offset);
		if (ret <= 0)