Skip to content

Commit

Permalink
tgupdate: merge t/upstream base into t/upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
matttbe committed Aug 13, 2024
2 parents 971367a + d7c798c commit 45fdbcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -6806,9 +6806,9 @@ tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb)

/* Note, that this wakeup is only for marginal crossed SYN case.
* Passively open sockets are not waked up, because
* sk->sk_wq == NULL and sk->sk_socket == NULL.
* sk->sk_sleep == NULL and sk->sk_socket == NULL.
*/
if (sk->sk_socket && th->syn)
if (sk->sk_socket)
sk_wake_async(sk, SOCK_WAKE_IO, POLL_OUT);

tp->snd_una = TCP_SKB_CB(skb)->ack_seq;
Expand Down

0 comments on commit 45fdbcb

Please sign in to comment.