[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20071225.000758.105456929.yoshfuji@linux-ipv6.org>
Date: Tue, 25 Dec 2007 00:07:58 +0900 (JST)
From: YOSHIFUJI Hideaki / 吉藤英明
<yoshfuji@...ux-ipv6.org>
To: julia@...u.dk
Cc: patrick@...epenguin.com, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org, yoshfuji@...ux-ipv6.org
Subject: Re: [PATCH 31/38] net/decnet: Use time_before, time_before_eq, etc.
In article <Pine.LNX.4.64.0712241547080.23999@....diku.dk> (at Mon, 24 Dec 2007 15:47:32 +0100 (CET)), Julia Lawall <julia@...u.dk> says:
> From: Julia Lawall <julia@...u.dk>
>
> The functions time_before, time_before_eq, time_after, and time_after_eq
> are more robust for comparing jiffies against other values.
> - jiffies >= E
> + time_after_eq(jiffies,E)
> diff -r -u -p a/net/decnet/af_decnet.c b/net/decnet/af_decnet.c
> --- a/net/decnet/af_decnet.c 2007-11-08 08:00:53.000000000 +0100
> +++ b/net/decnet/af_decnet.c 2007-12-23 20:30:40.000000000 +0100
:
> @@ -601,7 +602,7 @@ int dn_destroy_timer(struct sock *sk)
> if (sk->sk_socket)
> return 0;
>
> - if ((jiffies - scp->stamp) >= (HZ * decnet_time_wait)) {
> + if (time_before_eq(jiffies, scp->stamp + HZ * decnet_time_wait)) {
> dn_unhash_sock(sk);
> sock_put(sk);
> return 1;
ugh?
> --- a/net/decnet/dn_timer.c 2006-11-30 19:05:46.000000000 +0100
> +++ b/net/decnet/dn_timer.c 2007-12-23 20:30:40.000000000 +0100
> @@ -21,6 +21,7 @@
> #include <linux/netdevice.h>
> #include <linux/timer.h>
> #include <linux/spinlock.h>
> +#include <linux/jiffies.h>
> #include <net/sock.h>
> #include <asm/atomic.h>
> #include <net/flow.h>
> @@ -96,7 +97,7 @@ static void dn_slow_timer(unsigned long
> * since the last successful transmission.
> */
> if (scp->keepalive && scp->keepalive_fxn && (scp->state == DN_RUN)) {
> - if ((jiffies - scp->stamp) >= scp->keepalive)
> + if (time_before_eq(jiffies, scp->stamp + scp->keepalive))
> scp->keepalive_fxn(sk);
> }
>
ugh?
--yoshfuji
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists