Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 27 Aug 2002 20:55:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 27 Aug 2002 20:55:05 -0400 Received: from adsl-67-117-146-62.dsl.snfc21.pacbell.net ([67.117.146.62]:43269 "EHLO localhost") by vger.kernel.org with ESMTP id ; Tue, 27 Aug 2002 20:55:03 -0400 From: "Stephen C. Biggs" To: Daniel Phillips , linux-kernel@vger.kernel.org Date: Tue, 27 Aug 2002 17:59:09 -0700 Subject: Re: [PATCH] sched.c Message-ID: <3D6BBDED.28599.4E361C@localhost> References: In-reply-to: X-mailer: Pegasus Mail for Windows (v4.02) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 805 Lines: 29 [Empty post?] On 28 Aug 2002 at 2:47, Daniel Phillips wrote: > On Wednesday 28 August 2002 02:13, Daniel Phillips wrote: > > On Tuesday 27 August 2002 20:35, Andrew Morton wrote: > > > Lahti Oy wrote: > > > > - for (i = 0; i < NR_CPUS; i++) > > > > + for (i = NR_CPUS; i; i--) > > > > sum += cpu_rq(i)->nr_running; > > > > > > Off-by-one there. You'd want > > > > > > for (i = NR_CPUS; --i >= 0; ) > > > > > > or something similarly foul ;) > > > > int i = NR_CPUS; > > > > while (--i) for (i = NR_CPUS - 1; i >= 0; i--) unless i is unsigned... - 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/