mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
RxRPC: Fix the conversion to iov_iter
This commit:
commit af2b040e47
Author: Al Viro <viro@zeniv.linux.org.uk>
Date: Thu Nov 27 21:44:24 2014 -0500
Subject: rxrpc: switch rxrpc_send_data() to iov_iter primitives
incorrectly changes a do-while loop into a while loop in rxrpc_send_data().
Unfortunately, at least one pass through the loop is required - even if
there is no data - so that the packet the closes the send phase can be
sent if MSG_MORE is not set.
Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
6c310bc1ac
commit
3af6878eca
@ -548,7 +548,7 @@ static int rxrpc_send_data(struct kiocb *iocb,
|
||||
copied = 0;
|
||||
if (len > iov_iter_count(&msg->msg_iter))
|
||||
len = iov_iter_count(&msg->msg_iter);
|
||||
while (len) {
|
||||
do {
|
||||
int copy;
|
||||
|
||||
if (!skb) {
|
||||
@ -689,7 +689,7 @@ static int rxrpc_send_data(struct kiocb *iocb,
|
||||
rxrpc_queue_packet(call, skb, !iov_iter_count(&msg->msg_iter) && !more);
|
||||
skb = NULL;
|
||||
}
|
||||
}
|
||||
} while (len > 0);
|
||||
|
||||
success:
|
||||
ret = copied;
|
||||
|
Loading…
Reference in New Issue
Block a user