On Sun, 7 Aug 2022 20:31:05 -0700 Cong Wang wrote: > From: Cong Wang <cong.wang@xxxxxxxxxxxxx> > > As tcp_read_skb() only reads one skb at a time, the while loop is > unnecessary, we can turn it into an if. This also simplifies the > code logic. I think Eric is AFK so we should just apply these, they LGTM. One minor nit below. > --- a/net/ipv4/tcp.c > +++ b/net/ipv4/tcp.c > @@ -1761,27 +1761,18 @@ int tcp_read_skb(struct sock *sk, skb_read_actor_t recv_actor) > if (sk->sk_state == TCP_LISTEN) > return -ENOTCONN; > > - while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) { > - int used; > - > + skb = tcp_recv_skb(sk, seq, &offset); > + if (skb) { if (!skb) return 0; ?