diff options
author | David Howells <dhowells@redhat.com> | 2024-01-29 17:37:52 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2024-02-29 18:49:57 +0300 |
commit | 41b8debba79ca4a4aee35f2e3c66bfc7bb6691ee (patch) | |
tree | 7fe02a5e2999b9178ab12d7927fec237e3e4b0c9 /net/rxrpc/output.c | |
parent | 12bdff73a147aebcea8efae2b395ef0c27448909 (diff) | |
download | linux-41b8debba79ca4a4aee35f2e3c66bfc7bb6691ee.tar.xz |
rxrpc: Note cksum in txbuf
Add a field to rxrpc_txbuf in which to store the checksum to go in the
header as this may get overwritten in the wire header struct when
transmitting as part of a jumbo packet.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: "David S. Miller" <davem@davemloft.net>
cc: Eric Dumazet <edumazet@google.com>
cc: Jakub Kicinski <kuba@kernel.org>
cc: Paolo Abeni <pabeni@redhat.com>
cc: linux-afs@lists.infradead.org
cc: netdev@vger.kernel.org
Diffstat (limited to 'net/rxrpc/output.c')
-rw-r--r-- | net/rxrpc/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rxrpc/output.c b/net/rxrpc/output.c index 8344ece5358a..828b145edc56 100644 --- a/net/rxrpc/output.c +++ b/net/rxrpc/output.c @@ -335,6 +335,7 @@ int rxrpc_send_data_packet(struct rxrpc_call *call, struct rxrpc_txbuf *txb) /* Each transmission of a Tx packet+ needs a new serial number */ txb->serial = rxrpc_get_next_serial(conn); txb->wire.serial = htonl(txb->serial); + txb->wire.cksum = txb->cksum; if (test_bit(RXRPC_CONN_PROBING_FOR_UPGRADE, &conn->flags) && txb->seq == 1) |