All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Feitoza Parisi <marcelo@feitoza.com.br>
To: kernel-janitors@vger.kernel.org
Subject: [KJ] [PATCH] drivers/ieee1394/hosts.c : Use of time_before()
Date: Thu, 14 Apr 2005 21:46:18 +0000	[thread overview]
Message-ID: <425EE4AA.8040305@feitoza.com.br> (raw)
In-Reply-To: <425D3FF0.1020406@feitoza.com.br>

Again, following Nish's instruction, the time_after() macro, was 
removed, and a time_before() macro was placed there.

Signed-off-by: Marcelo Feitoza Parisi <marcelo@feitoza.com.br>

--- linux/drivers/ieee1394/hosts.c      2005-03-02 04:38:07.000000000 -0300
+++ development/drivers/ieee1394/hosts.c        2005-04-14 
18:44:06.000000000 -0300
@@ -18,6 +18,7 @@
 #include <linux/slab.h>
 #include <linux/pci.h>
 #include <linux/timer.h>
+#include <linux/jiffies.h>

 #include "csr1212.h"
 #include "ieee1394.h"
@@ -217,7 +218,7 @@

        /* IEEE 1394a-2000 prohibits using the same generation number
         * twice in a 60 second period. */
-       if (jiffies - host->csr.gen_timestamp[next_gen] < 60 * HZ)
+       if (time_before(jiffies, host->csr.gen_timestamp[next_gen] + 60 
* HZ))
                /* Wait 60 seconds from the last time this generation 
number was
                 * used. */
                reset_delay = (60 * HZ) + 
host->csr.gen_timestamp[next_gen] - jiffies;

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

  parent reply	other threads:[~2005-04-14 21:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-04-13 15:51 [KJ] [PATCH] drivers/ieee1394/hosts.c : Use of time_after() macro Marcelo Feitoza Parisi
2005-04-13 16:07 ` Nish Aravamudan
2005-04-14 21:46 ` Marcelo Feitoza Parisi [this message]
2005-07-08 19:32 ` [KJ] [PATCH] drivers/ieee1394/hosts.c : Use of time_before macro Marcelo Feitoza Parisi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=425EE4AA.8040305@feitoza.com.br \
    --to=marcelo@feitoza.com.br \
    --cc=kernel-janitors@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.