From owner-freebsd-stable@FreeBSD.ORG Fri Nov 30 09:01:43 2007 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC7F216A418 for ; Fri, 30 Nov 2007 09:01:43 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C63E713C447; Fri, 30 Nov 2007 09:01:42 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <474FD17D.7080209@FreeBSD.org> Date: Fri, 30 Nov 2007 10:01:49 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: Claus Guttesen References: <200711291932.05614.max@love2party.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: max@love2party.net, freebsd-stable@freebsd.org, Pete French Subject: Re: Also seeing 2 x quad-core system slower that 2 x dual core X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Nov 2007 09:01:44 -0000 Claus Guttesen wrote: >> Thing is that GENERIC as installed out of the box should not take two minutes >> to delete a gig of files off a 15k RPM SAS drive! especially not >> when identical hardware with half the number of processor cores only takes >> eleven seconds to do the same job. Something is wrong somewhere if doubling >> your CPU's results in a factor of 12 slowdown surely? > > Is it possible to disable one of the quad-core cpu's from bios? I have > a couple of DL360's myself but I haven't had the need to disable one > of the cpu's. > > If so it could be interesting to see whether the specific task goes > slower/faster. Yes, if the claim is that the hardware is absolutely identical apart from one having two quad-core CPUs instead of two dual-core, the next step is to disable half of the CPUs and confirm that the problem goes away. Check dmesg for the APIC numbers corresponding to the CPUs you want to disable and add the corresponding entries to /boot/loader.conf, e.g.: hint.lapic.1.disable="1" hint.lapic.3.disable="1" hint.lapic.5.disable="1" hint.lapic.7.disable="1" Kris