lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <a8e1da0803081654l50fdda44jbbed1d1ed2caf9ae@mail.gmail.com>
Date:	Sun, 9 Mar 2008 08:54:02 +0800
From:	"Dave Young" <hidave.darkstar@...il.com>
To:	"Johannes Weiner" <hannes@...urebad.de>
Cc:	akpm@...ux-foundation.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] add time_now_after and other macros which compare with jiffies

On Sun, Mar 9, 2008 at 12:12 AM, Johannes Weiner <hannes@...urebad.de> wrote:
> Hi Dave, Andrew and all
>
>
>  Dave Young <hidave.darkstar@...il.com> writes:
>
>  > +/* time_now_after(a) return true if now (jiffies) is after a */
>  > +#define time_now_after(a) time_after(jiffies, a)
>  > +
>  > +/* time_now_before(a) return true if now (jiffies) is before a */
>  > +#define time_now_before(a) time_before(jiffies, a)
>  > +
>  > +/* time_now_after_eq(a) return true if now (jiffies) is after or equal to a */
>  > +#define time_now_after_eq(a) time_after_eq(jiffies, a)
>  > +
>  > +/* time_now_before_eq(a) return true if now (jiffies) is before or equal to a */
>  > +#define time_now_before_eq(a) time_before_eq(jiffies, a)
>
>  How about even more obvious names like time_is_past(), time_is_future(),
>  ...?

Thanks for comment.

Then how do we name the _eq version?  IMHO, the time_now_* is enough.

>
>  Sorry, I missed v1.  Should have proposed that earlier.
>
>         Hannes
>

Regards
dave
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ