From: Ilya Lesokhin <il...@mellanox.com> Date: Wed, 7 Feb 2018 15:13:11 +0200
> +static bool tcp_can_coalesce_send_queue_head(struct sock *sk, int len) > +{ > + struct sk_buff *skb, *next; > + > + skb = tcp_send_head(sk); > + tcp_for_write_queue_from_safe(skb, next, sk) > + { Please format tcp_for_write_queue_from_safe() uses like a real for loop, meaning that the openning curly braces go on the same line as the tcp_for_write_queue_from_safe() statement. Thank you.