Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Fri, 21 Mar 2003 16:59:22 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Fri, 21 Mar 2003 16:59:08 -0500 Received: from gans.physik3.uni-rostock.de ([139.30.44.2]:28606 "EHLO gans.physik3.uni-rostock.de") by vger.kernel.org with ESMTP id ; Fri, 21 Mar 2003 16:57:08 -0500 Date: Fri, 21 Mar 2003 23:08:04 +0100 (CET) From: Tim Schmielau To: Alan Cox cc: , Subject: Re: PATCH: time is ulong In-Reply-To: <200303212002.h2LK2QtZ026205@hraefn.swansea.linux.org.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 610 Lines: 15 > -#define INITIAL_JIFFIES ((unsigned int) (-300*HZ)) > +#define INITIAL_JIFFIES ((unsigned long) (-300*HZ)) No. This was deliberate since testing 32 bit jiffies wrap seems more beneficial than testing 64 bit jiffies. Just the formulation might be misleading, which is why I initially wrote #define INITIAL_JIFFIES (0xffffffffUL & (unsigned long)(-300*HZ)) Tim - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/