mirror of
https://github.com/torvalds/linux.git
synced 2025-12-01 07:26:02 +07:00
rxrpc: Fix the names of the fields in the ACK trailer struct
From AFS-3.3 a trailer containing extra info was added to the ACK packet format - but AF_RXRPC has the names of some of the fields mixed up compared to other AFS implementations. Rename the struct and the fields to make them match. 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
This commit is contained in:
@@ -135,9 +135,9 @@ struct rxrpc_ackpacket {
|
||||
/*
|
||||
* ACK packets can have a further piece of information tagged on the end
|
||||
*/
|
||||
struct rxrpc_ackinfo {
|
||||
__be32 rxMTU; /* maximum Rx MTU size (bytes) [AFS 3.3] */
|
||||
__be32 maxMTU; /* maximum interface MTU size (bytes) [AFS 3.3] */
|
||||
struct rxrpc_acktrailer {
|
||||
__be32 maxMTU; /* maximum Rx MTU size (bytes) [AFS 3.3] */
|
||||
__be32 ifMTU; /* maximum interface MTU size (bytes) [AFS 3.3] */
|
||||
__be32 rwind; /* Rx window size (packets) [AFS 3.4] */
|
||||
__be32 jumbo_max; /* max packets to stick into a jumbo packet [AFS 3.5] */
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user