From owner-svn-src-all@freebsd.org Thu Jul 16 18:02:52 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 124589A37A6; Thu, 16 Jul 2015 18:02:52 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: from mail-wg0-x22c.google.com (mail-wg0-x22c.google.com [IPv6:2a00:1450:400c:c00::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9EB2019D2; Thu, 16 Jul 2015 18:02:51 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: by wgxm20 with SMTP id m20so64587819wgx.3; Thu, 16 Jul 2015 11:02:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Q12+8HzSGFbsxLSkHuuuua6RwMl8LhGBcsOed5cnX1M=; b=tOZExBsapKEQaERD32z721Niwrs6vABs97gi+16aAMUwwbMYWXZytEatCZsjeAUNr1 xn/IZKEuKPIRxE3Gd1fvlQMZ/68q82hnb76O7m/THByLpSIu9MJbFI/xdqYdXIT6/5KN gKaHy86DBkozfo0NQzfCxKeTBqgU0CX+js7OqeS0+v9NoqMRJy8Tpxhb0NTgyQ7ReoOd 7vSSZG/6Ck7ZED3VELQonBdowLREqGPvgGhaCYGETwADu/mSz8LXDsdyMAznI8S6Uf5w 4X4o+rvEh9JYEtYwuZa4BSJ/pa+8GZPwS3XMRx2aMUdelrGvL4aAYLi02bQVr7QjjsSX cUIA== MIME-Version: 1.0 X-Received: by 10.180.83.72 with SMTP id o8mr7590033wiy.27.1437069769899; Thu, 16 Jul 2015 11:02:49 -0700 (PDT) Received: by 10.27.87.195 with HTTP; Thu, 16 Jul 2015 11:02:49 -0700 (PDT) In-Reply-To: <201507161046.t6GAkrEt028784@repo.freebsd.org> References: <201507161046.t6GAkrEt028784@repo.freebsd.org> Date: Thu, 16 Jul 2015 14:02:49 -0400 Message-ID: Subject: Re: svn commit: r285627 - in head/sys: arm/arm arm/at91 arm/cavium/cns11xx arm/samsung/s3c2xx0 arm/xscale/i80321 arm/xscale/i8134x arm/xscale/ixp425 arm/xscale/pxa arm64/arm64 ddb i386/i386 powerpc/boo... From: Benjamin Kaduk To: Zbigniew Bodek Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Jul 2015 18:02:52 -0000 On Thu, Jul 16, 2015 at 6:46 AM, Zbigniew Bodek wrote: > Author: zbb > Date: Thu Jul 16 10:46:52 2015 > New Revision: 285627 > URL: https://svnweb.freebsd.org/changeset/base/285627 > > Log: > Fix KSTACK_PAGES issue when the default value was changed in KERNCONF > > If KSTACK_PAGES was changed to anything alse than the default, > the value from param.h was taken instead in some places and > the value from KENRCONF in some others. This resulted in > inconsistency which caused corruption in SMP envorinment. > > Ensure all places where KSTACK_PAGES are used the opt_kstack_pages.h > is included. > This leads to the question: why is KSTACK_PAGES defined in param.h at all, if the value will be incorrect for custom kernel configurations? -Ben