mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 14:32:06 +00:00
rxrpc: Don't set the MORE-PACKETS rxrpc wire header flag
The MORE-PACKETS rxrpc header flag hasn't actually been looked at by anything since 1988 and not all implementations generate it. Change rxrpc so that it doesn't set MORE-PACKETS at all rather than setting it inconsistently. Signed-off-by: David Howells <dhowells@redhat.com> cc: Marc Dionne <marc.dionne@auristor.com> cc: linux-afs@lists.infradead.org Link: https://patch.msgid.link/20241204074710.990092-6-dhowells@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
efa95c3235
commit
cbe0d89095
@@ -385,9 +385,6 @@ reload:
|
||||
(msg_data_left(msg) == 0 && !more)) {
|
||||
if (msg_data_left(msg) == 0 && !more)
|
||||
txb->flags |= RXRPC_LAST_PACKET;
|
||||
else if (call->tx_top - call->acks_hard_ack <
|
||||
call->tx_winsize)
|
||||
txb->flags |= RXRPC_MORE_PACKETS;
|
||||
|
||||
ret = call->security->secure_packet(call, txb);
|
||||
if (ret < 0)
|
||||
|
||||
Reference in New Issue
Block a user