Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 17 Oct 2002 21:17:24 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 17 Oct 2002 21:17:24 -0400 Received: from [198.149.18.6] ([198.149.18.6]:32684 "EHLO tolkor.sgi.com") by vger.kernel.org with ESMTP id ; Thu, 17 Oct 2002 21:17:24 -0400 Date: Thu, 17 Oct 2002 20:22:48 -0500 (CDT) From: Robin Holt X-X-Sender: To: Andi Kleen cc: Christoph Hellwig , John Hesterberg , Subject: Re: [PATCH] 2.5.43 CSA, Job, and PAGG In-Reply-To: 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: 1374 Lines: 44 On 18 Oct 2002, Andi Kleen wrote: > Christoph Hellwig writes: > > > > > +#if defined __ia64__ > > +#define JID_ERR1 "do_csa_acct: No job table entry for jid 0x%lx.\n" > > +#define JID_ERR2 "csa user job accounting write error %d, jid 0x%lx\n" > > +#define JID_ERR3 "Can't disable csa user job accounting jid 0x%lx\n" > > +#define JID_ERR4 "csa user job accounting disabled, jid 0x%lx\n" > > +#else > > +#define JID_ERR1 "do_csa_acct: No job table entry for jid 0x%llx.\n" > > +#define JID_ERR2 "csa user job accounting write error %d, jid 0x%llx\n" > > +#define JID_ERR3 "Can't disable csa user job accounting jid 0x%llx\n" > > +#define JID_ERR4 "csa user job accounting disabled, jid 0x%llx\n" > > +#endif > > > > Umm, this would be #if __LP64__. But please just always cast > > to long long instead. > > __LP64__ is a HP/IA64ism, which is not necessarily defined on other > 64bit platforms. The proper way to test for 64bit in the kernel is > > #include > > ... > > #if BITS_PER_LONG==64 > > #endif > > -Andi > I did the cast to long long instead. Cleans things up nicely. Robin - 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/