Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030432AbWHIC7L (ORCPT ); Tue, 8 Aug 2006 22:59:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030434AbWHIC7K (ORCPT ); Tue, 8 Aug 2006 22:59:10 -0400 Received: from mx2.suse.de ([195.135.220.15]:20689 "EHLO mx2.suse.de") by vger.kernel.org with ESMTP id S1030432AbWHIC7J (ORCPT ); Tue, 8 Aug 2006 22:59:09 -0400 From: Andi Kleen To: john stultz Subject: Re: [RFC][PATCH 1/6] x86_64: Enable arch-generic vsyscall support. Date: Wed, 9 Aug 2006 04:59:05 +0200 User-Agent: KMail/1.9.3 Cc: linux-kernel@vger.kernel.org References: <20060809021707.23103.5607.sendpatchset@cog.beaverton.ibm.com> <200608090429.49951.ak@suse.de> <1155092218.13030.107.camel@cog.beaverton.ibm.com> In-Reply-To: <1155092218.13030.107.camel@cog.beaverton.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608090459.05028.ak@suse.de> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1113 Lines: 36 On Wednesday 09 August 2006 04:56, john stultz wrote: > On Wed, 2006-08-09 at 04:29 +0200, Andi Kleen wrote: > > > diff --git a/kernel/timer.c b/kernel/timer.c > > > index b650f04..08b4a02 100644 > > > --- a/kernel/timer.c > > > +++ b/kernel/timer.c > > > @@ -1023,6 +1023,12 @@ static int __init timekeeping_init_devic > > > > > > device_initcall(timekeeping_init_device); > > > > > > +#ifdef CONFIG_GENERIC_TIME_VSYSCALL > > > +extern void update_vsyscall(struct timespec* ts, struct clocksource* c); > > > +#else > > > +#define update_vsyscall(now, c) > > > +#endif > > > > Using a weak dummy function would be a bit cleaner. > > Will compilers optimize out the call properly? No, but it's just a call ; ret then. > > Looking at it now, it probably should go in a .h file and the empty > define should be a proper "do { } while(0)" Or use weak -Andi - 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/