ipv4: fix checkpatch error "space prohibited"

Signed-off-by: Weilong Chen <chenweilong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Weilong Chen
2013-12-23 14:37:27 +08:00
committed by David S. Miller
parent a22318e83b
commit 0c9a67d2ed
4 changed files with 11 additions and 11 deletions

View File

@@ -214,9 +214,9 @@ static u32 tcp_yeah_ssthresh(struct sock *sk) {
if (yeah->doing_reno_now < TCP_YEAH_RHO) {
reduction = yeah->lastQ;
reduction = min( reduction, max(tp->snd_cwnd>>1, 2U) );
reduction = min(reduction, max(tp->snd_cwnd>>1, 2U));
reduction = max( reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
} else
reduction = max(tp->snd_cwnd>>1, 2U);