Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 9 Jan 2002 18:15:54 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 9 Jan 2002 18:15:44 -0500 Received: from samba.sourceforge.net ([198.186.203.85]:13067 "HELO lists.samba.org") by vger.kernel.org with SMTP id ; Wed, 9 Jan 2002 18:15:27 -0500 Date: Thu, 10 Jan 2002 10:15:14 +1100 From: Anton Blanchard To: Ingo Molnar Cc: Linus Torvalds , linux-kernel Subject: Re: [patch] O(1) scheduler, -D1, 2.5.2-pre9, 2.4.17 Message-ID: <20020109231513.GA10002@krispykreme> In-Reply-To: <20020108114355.GA25718@krispykreme> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org > > With the patch things look much better (and the kernel boots on my > > ppc64 machine :) > > hey it should not even compile, you forgot to send us the PPC definition > of sched_find_first_zero_bit() ;-) Good point, but its ppc64 so the patch would include all of include/asm-ppc64 and arch/ppc64 :) I expect most architectures have a reasonably fast find_first_zero_bit so they can simply do: static inline int sched_find_first_zero_bit(unsigned long *bitmap) { return find_first_zero_bit(bitmap, MAX_PRIO); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/