diff options
-rw-r--r-- | net/dccp/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/output.c b/net/dccp/output.c index fea30cdc0bee..22a618af4893 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c | |||
@@ -175,7 +175,7 @@ unsigned int dccp_sync_mss(struct sock *sk, u32 pmtu) | |||
175 | * make it a multiple of 4 | 175 | * make it a multiple of 4 |
176 | */ | 176 | */ |
177 | 177 | ||
178 | cur_mps -= ((5 + 6 + 10 + 6 + 6 + 6 + 3) / 4) * 4; | 178 | cur_mps -= roundup(5 + 6 + 10 + 6 + 6 + 6, 4); |
179 | 179 | ||
180 | /* And store cached results */ | 180 | /* And store cached results */ |
181 | icsk->icsk_pmtu_cookie = pmtu; | 181 | icsk->icsk_pmtu_cookie = pmtu; |