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/txbuf.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/txbuf.c')
-rw-r--r-- | net/rxrpc/txbuf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rxrpc/txbuf.c b/net/rxrpc/txbuf.c index 48d5a8f644e5..7273615afe94 100644 --- a/net/rxrpc/txbuf.c +++ b/net/rxrpc/txbuf.c @@ -35,6 +35,7 @@ struct rxrpc_txbuf *rxrpc_alloc_txbuf(struct rxrpc_call *call, u8 packet_type, txb->ack_why = 0; txb->seq = call->tx_prepared + 1; txb->serial = 0; + txb->cksum = 0; txb->wire.epoch = htonl(call->conn->proto.epoch); txb->wire.cid = htonl(call->cid); txb->wire.callNumber = htonl(call->call_id); |