git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f6afc8
)
tcp: Remove another indentation level in tcp_rcv_state_process
author
Joe Perches
<joe@perches.com>
Fri, 24 May 2013 18:36:13 +0000
(18:36 +0000)
committer
David S. Miller
<davem@davemloft.net>
Sun, 26 May 2013 06:22:18 +0000
(23:22 -0700)
case TCP_SYN_RECV: can have another indentation level removed
by converting
if (acceptable) {
...;
} else {
return 1;
}
to
if (!acceptable)
return 1;
...;
Reflow code and comments to fit 80 columns.
Another pure cleanup patch.
Signed-off-by: Joe Perches <joe@perches.com>
Improved-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_input.c
patch
|
blob
|
history
diff --cc
net/ipv4/tcp_input.c
Simple merge