rxrpc: Add a private skb flag to indicate transmission-phase skbs
Add a flag in the private data on an skbuff to indicate that this is a transmission-phase buffer rather than a receive-phase buffer. Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
@@ -336,6 +336,8 @@ static int rxrpc_send_data(struct rxrpc_sock *rx,
|
||||
if (!skb)
|
||||
goto maybe_error;
|
||||
|
||||
sp = rxrpc_skb(skb);
|
||||
sp->rx_flags |= RXRPC_SKB_TX_BUFFER;
|
||||
rxrpc_new_skb(skb, rxrpc_skb_tx_new);
|
||||
|
||||
_debug("ALLOC SEND %p", skb);
|
||||
@@ -346,7 +348,6 @@ static int rxrpc_send_data(struct rxrpc_sock *rx,
|
||||
skb_reserve(skb, call->conn->security_size);
|
||||
skb->len += call->conn->security_size;
|
||||
|
||||
sp = rxrpc_skb(skb);
|
||||
sp->remain = chunk;
|
||||
if (sp->remain > skb_tailroom(skb))
|
||||
sp->remain = skb_tailroom(skb);
|
||||
|
Reference in New Issue
Block a user