From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751269AbWIKIhh (ORCPT ); Mon, 11 Sep 2006 04:37:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751270AbWIKIhg (ORCPT ); Mon, 11 Sep 2006 04:37:36 -0400 Received: from ns.suse.de ([195.135.220.2]:31106 "EHLO mx1.suse.de") by vger.kernel.org with ESMTP id S1751269AbWIKIhg (ORCPT ); Mon, 11 Sep 2006 04:37:36 -0400 Date: Mon, 11 Sep 2006 10:37:34 +0200 From: Nick Piggin To: Christoph Lameter Cc: "Siddha, Suresh B" , akpm@osdl.org, linux-kernel@vger.kernel.org, mingo@elte.hu Subject: Re: [PATCH] Fix longstanding load balancing bug in the scheduler. Message-ID: <20060911083734.GA25953@wotan.suse.de> References: <20060908103529.A9121@unix-os.sc.intel.com> <20060908130028.A9446@unix-os.sc.intel.com> <20060908170352.C9446@unix-os.sc.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Sep 09, 2006 at 12:56:16PM -0700, Christoph Lameter wrote: > On Fri, 8 Sep 2006, Christoph Lameter wrote: > > > > one or more, it is unnecessary for the common case. > > > > The common case is an arch with much less cpus. The maxinum on i386 > > f.e. is 255 meaning 8 bytes. That fits in the cacheline that is already > > used for the stack frame of the calling function. > > Ughh. Wrong. 255 cpus require 32 bytes. System rarely have that > much. If you configure a kernel with less than 32 cpus then this will be > one word on the stack. > > Also note that the patch restricts the search to online cpus. The > scheduler will check offline cpus without this patch. That may actually > result in speed improvements since the cachelines from offline cpus are > no longer brought in during the search for the busiest group / cpu. This should not be the case. The sched-domain structure should always reflect the online CPUs only (see our hotplug cpu handler), and if you find otherwise then that would be a bug.