mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
[TIPC]: Skip connection flow control in connectionless sockets
This patch optimizes the receive path for SOCK_DGRAM and SOCK_RDM messages by skipping over code that handles connection-based flow control. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2c8dd11636
commit
990098068f
@ -919,7 +919,8 @@ restart:
|
||||
/* Consume received message (optional) */
|
||||
|
||||
if (likely(!(flags & MSG_PEEK))) {
|
||||
if (unlikely(++tsock->p->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
|
||||
if ((sock->state != SS_READY) &&
|
||||
(++tsock->p->conn_unacked >= TIPC_FLOW_CONTROL_WIN))
|
||||
tipc_acknowledge(tsock->p->ref, tsock->p->conn_unacked);
|
||||
advance_queue(tsock);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user