From owner-cvs-src@FreeBSD.ORG Sat Jul 3 14:52:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0033416A4CE; Sat, 3 Jul 2004 14:52:40 +0000 (GMT) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACB3F43D4C; Sat, 3 Jul 2004 14:52:40 +0000 (GMT) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) i63EqeSf009954; Sat, 3 Jul 2004 07:52:40 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost)i63EqehZ009953; Sat, 3 Jul 2004 07:52:40 -0700 (PDT) (envelope-from sgk) Date: Sat, 3 Jul 2004 07:52:40 -0700 From: Steve Kargl To: "Thomas T. Veldhouse" Message-ID: <20040703145239.GA9941@troutmask.apl.washington.edu> References: <200407022021.i62KLi4Y041825@repoman.freebsd.org> <200407021721.52787.jhb@FreeBSD.org> <40E64302.2020700@veldy.net> <20040703053940.GA60840@xor.obsecurity.org> <40E6C201.3000104@veldy.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40E6C201.3000104@veldy.net> User-Agent: Mutt/1.4.1i cc: src-committers@freebsd.org cc: current@freebsd.org cc: John Baldwin cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: Kris Kennaway Subject: Re: HEADSUP: Native preemption added to the kernel scheduler X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jul 2004 14:52:41 -0000 On Sat, Jul 03, 2004 at 09:26:09AM -0500, Thomas T. Veldhouse wrote: > Kris Kennaway wrote: > > >>The GENERIC kernel is failing to build now (12AM 7-03-2004) ... > >>complaining about wrong number of arguments in the following file: > >> > >>src/sys/kern/sched_ule.c > >> > >>Unfortunately, I did not get the function details before rebooting my > >>machine into windows. > >> > >> > > > >That was fixed a few hours ago. > > > >Kris > > > > > I am still getting this @ 9:25 AM CDT (cvsup from cvsup2.freebsd.org). > > In /usr/src/sys/kern/sched_ule.c: in function 'sched_bind' > line 1719: too few arguments to function 'mi_switch' > Watch for cut-n-paste space problems. --- sched_ule.c.orig Sat Jul 3 07:51:02 2004 +++ sched_ule.c Sat Jul 3 07:51:15 2004 @@ -1716,7 +1716,7 @@ kseq_load_rem(KSEQ_CPU(ke->ke_cpu), ke); kseq_notify(ke, cpu); /* When we return from mi_switch we'll be on the correct cpu. */ - mi_switch(SW_VOL); + mi_switch(SW_VOL, NULL); #endif } -- Steve