mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
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:
committed by
David S. Miller
parent
a22318e83b
commit
0c9a67d2ed
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user