lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ