From owner-svn-src-all@FreeBSD.ORG Sat Oct 1 06:58:37 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7084D1065670; Sat, 1 Oct 2011 06:58:37 +0000 (UTC) (envelope-from c.jayachandran@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id A7FAC8FC19; Sat, 1 Oct 2011 06:58:36 +0000 (UTC) Received: by wwe3 with SMTP id 3so3386843wwe.31 for ; Fri, 30 Sep 2011 23:58:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=OqEWCpKFty6Ae25hv3Rmm66PZJBydYXSJrpTFzy4cUk=; b=M2EHf6BSVjSEYxts/FNiaaJSKqZ7DF4s4jkUcvE7M5lywehJyFJpXS1wC7V5Dp/4tC sDemUNY+22hDOwrQ2arLr3UWXU8Wq0W1d9AlNxWOj4MY8CreZTL6XvKDMcc3qkjVEY63 OVZer1ZI/wcOZsJVeMcmUy7jrXfG61lJtj5ac= MIME-Version: 1.0 Received: by 10.216.131.67 with SMTP id l45mr10342207wei.26.1317450629095; Fri, 30 Sep 2011 23:30:29 -0700 (PDT) Sender: c.jayachandran@gmail.com Received: by 10.216.154.5 with HTTP; Fri, 30 Sep 2011 23:30:29 -0700 (PDT) In-Reply-To: <201110010556.p915uQH6003016@svn.freebsd.org> References: <201110010556.p915uQH6003016@svn.freebsd.org> Date: Sat, 1 Oct 2011 12:00:29 +0530 X-Google-Sender-Auth: 5HfVmas3awecmU9_aedZ6Urq9-M Message-ID: From: "Jayachandran C." To: Adrian Chadd Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r225892 - head/sys/mips/mips X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Oct 2011 06:58:37 -0000 Hi Adrian, On Sat, Oct 1, 2011 at 11:26 AM, Adrian Chadd wrote: > Author: adrian > Date: Sat Oct =A01 05:56:25 2011 > New Revision: 225892 > URL: http://svn.freebsd.org/changeset/base/225892 > > Log: > =A0Disable using wait in cpu_idle() until a better solution to timer and > =A0interrupt handling can be implemented. Taking out the whole thing looks like an overkill here - this is especially bad on XLR where busy wait on a hardware thread will take away cycles from the other hardware threads. The better workaround would be to revert to the version before r216862, which does not have the critical_enter/cpu_idleclock. JC.