From owner-svn-src-head@FreeBSD.ORG Wed Apr 21 11:35:35 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 473B11065674; Wed, 21 Apr 2010 11:35:35 +0000 (UTC) (envelope-from rpaulo@freebsd.org) Received: from karen.lavabit.com (karen.lavabit.com [72.249.41.33]) by mx1.freebsd.org (Postfix) with ESMTP id 2271E8FC31; Wed, 21 Apr 2010 11:35:34 +0000 (UTC) Received: from e.earth.lavabit.com (e.earth.lavabit.com [192.168.111.14]) by karen.lavabit.com (Postfix) with ESMTP id 78AF724EE08; Wed, 21 Apr 2010 06:35:34 -0500 (CDT) Received: from 10.0.10.3 (54.81.54.77.rev.vodafone.pt [77.54.81.54]) by lavabit.com with ESMTP id 73X69BNNVBWD; Wed, 21 Apr 2010 06:35:34 -0500 Mime-Version: 1.0 (Apple Message framework v1078) Content-Type: text/plain; charset=us-ascii From: Rui Paulo In-Reply-To: <20100421.094242.94902748.nyan@FreeBSD.org> Date: Wed, 21 Apr 2010 12:35:31 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <46ADE413-773C-47C3-8EDE-12B6FEDC0BD8@FreeBSD.org> References: <201004202104.o3KL4vHv043955@svn.freebsd.org> <20100421.094242.94902748.nyan@FreeBSD.org> To: TAKAHASHI Yoshihiro X-Mailer: Apple Mail (2.1078) Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r206922 - head/sys/x86/isa X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Apr 2010 11:35:35 -0000 On 21 Apr 2010, at 01:42, TAKAHASHI Yoshihiro wrote: > In article <201004202104.o3KL4vHv043955@svn.freebsd.org> > Rui Paulo writes: >=20 >> Log: >> Fix another instance of lapic_cyclic_clock_func. >>=20 >> Modified: >> head/sys/x86/isa/clock.c >>=20 >> Modified: head/sys/x86/isa/clock.c >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- head/sys/x86/isa/clock.c Tue Apr 20 21:03:42 2010 = (r206921) >> +++ head/sys/x86/isa/clock.c Tue Apr 20 21:04:57 2010 = (r206922) >> @@ -186,8 +186,8 @@ clkintr(struct trapframe *frame) >> * timers. >> */ >> int cpu =3D PCPU_GET(cpuid); >> - if (lapic_cyclic_clock_func[cpu] !=3D NULL) >> - (*lapic_cyclic_clock_func[cpu])(frame); >> + if (cyclic_clock_func[cpu] !=3D NULL) >> + (*cyclic_clock_func[cpu])(frame); >> #endif >>=20 >> if (using_atrtc_timer) { >=20 > The same change is needed for sys/pc98/cbus/clock.c. Thanks, fixed. Regards, -- Rui Paulo