diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-28 18:50:33 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:48:37 -0400 |
commit | 172589ccdde41b59861c92c4a971b95514ef24e3 (patch) | |
tree | ae775e6db4cb85aad1c74b6d93ba359f9dfe88ea /net/ipv4/inet_timewait_sock.c | |
parent | c45248c70125cc374fdf264659643276c72801bf (diff) |
[NET]: DIV_ROUND_UP cleanup (part two)
Hopefully captured all single statement cases under net/. I'm
not too sure if there is some policy about #includes that are
"guaranteed" (ie., in the current tree) to be available through
some other #included header, so I just added linux/kernel.h to
each changed file that didn't #include it previously.
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_timewait_sock.c')
-rw-r--r-- | net/ipv4/inet_timewait_sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/inet_timewait_sock.c b/net/ipv4/inet_timewait_sock.c index 2586df09b9b6..4e189e28f306 100644 --- a/net/ipv4/inet_timewait_sock.c +++ b/net/ipv4/inet_timewait_sock.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * From code orinally in TCP | 8 | * From code orinally in TCP |
9 | */ | 9 | */ |
10 | 10 | ||
11 | 11 | #include <linux/kernel.h> | |
12 | #include <net/inet_hashtables.h> | 12 | #include <net/inet_hashtables.h> |
13 | #include <net/inet_timewait_sock.h> | 13 | #include <net/inet_timewait_sock.h> |
14 | #include <net/ip.h> | 14 | #include <net/ip.h> |
@@ -292,7 +292,7 @@ void inet_twsk_schedule(struct inet_timewait_sock *tw, | |||
292 | if (timeo >= timewait_len) { | 292 | if (timeo >= timewait_len) { |
293 | slot = INET_TWDR_TWKILL_SLOTS - 1; | 293 | slot = INET_TWDR_TWKILL_SLOTS - 1; |
294 | } else { | 294 | } else { |
295 | slot = (timeo + twdr->period - 1) / twdr->period; | 295 | slot = DIV_ROUND_UP(timeo, twdr->period); |
296 | if (slot >= INET_TWDR_TWKILL_SLOTS) | 296 | if (slot >= INET_TWDR_TWKILL_SLOTS) |
297 | slot = INET_TWDR_TWKILL_SLOTS - 1; | 297 | slot = INET_TWDR_TWKILL_SLOTS - 1; |
298 | } | 298 | } |