From owner-freebsd-current@FreeBSD.ORG Fri Apr 11 11:49:40 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A47A37B401 for ; Fri, 11 Apr 2003 11:49:40 -0700 (PDT) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 772F343F85 for ; Fri, 11 Apr 2003 11:49:37 -0700 (PDT) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h3BInZ992280; Fri, 11 Apr 2003 14:49:35 -0400 (EDT) (envelope-from jroberson@chesapeake.net) Date: Fri, 11 Apr 2003 14:49:35 -0400 (EDT) From: Jeff Roberson To: Steve Kargl In-Reply-To: <20030411174210.GA87929@troutmask.apl.washington.edu> Message-ID: <20030411144720.P37530-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: ULE nice bugs are fixed. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2003 18:49:40 -0000 On Fri, 11 Apr 2003, Steve Kargl wrote: > On Fri, Apr 11, 2003 at 12:08:29AM -0400, Jeff Roberson wrote: > > Could those of you that have been testing it so far please try it out > > again and let me know how it feels? > > > > Jeff, > > There is a noticable delay in switching from a vty > to the X11R6 server. Although ctl+alt+F8 takes me > back to X11, there is a few second pause during the > redrawing of the screen. See line 180. Please try changing: #define SCHED_CURR(kg, ke) SCHED_INTERACTIVE(kg) #if 0 (ke->ke_thread->td_priority < PRI_MIN_TIMESHARE || SCHED_INTERACTIVE(kg)) #endif to: #define SCHED_CURR(kg, ke) \ (ke->ke_thread->td_priority < PRI_MIN_TIMESHARE || \ SCHED_INTERACTIVE(kg)) I suspect this is due to priority propagation. I forgot that I had disabled that code. How is it otherwise? Cheers, Jeff