Date: Sun, 28 Apr 2002 03:14:40 +1000 (EST) From: Bruce Evans <bde@zeta.org.au> To: Shizuka Kudo <shizukakudo_99@yahoo.com> Cc: freebsd-current@FreeBSD.ORG Subject: Re: Recent commit to sys/kern/kern_environment.c broke reading tunables Message-ID: <20020428030240.E735-100000@gamplex.bde.org> In-Reply-To: <20020427034333.59636.qmail@web11408.mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 26 Apr 2002, Shizuka Kudo wrote:
> It seems the latest commit of
> sys/kern/kern_environment to current broke the reading
> of system tunables set by loader.conf. This is true at
> least for hw.cbb.start_mem of my cardbus bridge. With
> this latest commit, the hw.cbb.start_mem sysctl still
> shows the default value after boot up.
>
> Reverting back to version 1.22 solve my problem. Is
> this unique to me?
The tunable for this sysctl spelled inconsistently as
"hw.cbb.start_memory", so rev.1.23 "fixed" finding it if it is
misspelled in the environment as "hw.cbb.start_mem". From
dev/pccbb/pccbb.c:
/* There's no way to say TUNEABLE_LONG to get the right types */
u_long pccbb_start_mem = PCCBB_START_MEM;
TUNABLE_INT("hw.cbb.start_memory", (int *)&pccbb_start_mem);
SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_mem, CTLFLAG_RD,
&pccbb_start_mem, PCCBB_START_MEM,
"Starting address for memory allocations");
Does changing the spelling in the environment to match the tunable
fix the problem?
Bruce
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020428030240.E735-100000>
