From owner-freebsd-stable@FreeBSD.ORG Sun Sep 12 00:07:03 2004 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9E0416A4CE for ; Sun, 12 Sep 2004 00:07:03 +0000 (GMT) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D1D343D2D for ; Sun, 12 Sep 2004 00:07:03 +0000 (GMT) (envelope-from stephen@math.missouri.edu) Received: from [10.0.0.3] (12-216-240-169.client.mchsi.com[12.216.240.169]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20040912000702m9100fvnt2e>; Sun, 12 Sep 2004 00:07:02 +0000 Message-ID: <4143931B.5080104@math.missouri.edu> Date: Sat, 11 Sep 2004 19:06:51 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040903 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-stable@FreeBSD.ORG Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: 2 Processors under FreeBSD 5.3 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Sep 2004 00:07:03 -0000 I have a dual Athlon MP computer, and I have a very recent version of FreeBSD 5.3 running on it. If I start 6 computer intensive processes, and then kill 3 of them that are using (say) processor 1, then the other 3 processes are all processor 0, and as such only get 33% computer time each. Under FreeBSD 4.10 they would have got 66% computer time each, because there each process didn't seem stuck to a particular processor. Is there a sysctl variable that controls this, or is this a bug in FreeBSD 5.3, or what is going on? Here is the computer intensive process: main() { int i; while(1) {i++;} }