[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1369455898.3301.466.camel@edumazet-glaptop>
Date: Fri, 24 May 2013 21:24:58 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: Joe Perches <joe@...ches.com>
Cc: David Miller <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>,
Yuchung Cheng <ycheng@...gle.com>
Subject: Re: [PATCH net-next 1/2] tcp: Remove another indentation level in
tcp_rcv_state_process
On Fri, 2013-05-24 at 21:02 -0700, Joe Perches wrote:
> case TCP_SYN_RECV: can have an indentation level removed
> by converting:
>
> if (acceptable) {
> [...];
> } else {
> return 1;
> }
>
> to
> if (!acceptable)
> return 1;
> [...];
>
> Reflow comments to fit 80 columns.
>
> A neatening only patch.
>
> Signed-off-by: Joe Perches <joe@...ches.com>
> ---
> + tp->snd_wnd = ntohs(th->window) <<
> + tp->rx_opt.snd_wscale;
single line ?
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists