From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from aun.it.uu.se (aun.it.uu.se [130.238.12.36]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTP id 48504DDE27 for ; Sun, 28 Oct 2007 06:37:53 +1100 (EST) Date: Sat, 27 Oct 2007 21:37:45 +0200 (MEST) Message-Id: <200710271937.l9RJbji8022330@harpo.it.uu.se> From: Mikael Pettersson To: adobriyan@gmail.com, mikpe@it.uu.se Subject: Re: 2.6.24-rc1 sysctl table check failed on PowerMac Cc: linuxppc-dev@ozlabs.org, paulus@samba.org, linux-kernel@vger.kernel.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sat, 27 Oct 2007 22:34:53 +0400, Alexey Dobriyan wrote: > On Sat, Oct 27, 2007 at 07:57:38PM +0200, Mikael Pettersson wrote: > > Booting 2.6.24-rc1 on my PowerMac the kernel now spits > > out a sysctl warning early in the boot sequence: > > > > --- dmesg-2.6.23 > > +++ dmesg-2.6.24-rc1 > > ... > > IP route cache hash table entries: 32768 (order: 5, 131072 bytes) > > TCP established hash table entries: 131072 (order: 8, 1048576 bytes) > > TCP bind hash table entries: 65536 (order: 6, 262144 bytes) > > TCP: Hash tables configured (established 131072 bind 65536) > > TCP reno registered > > +sysctl table check failed: /kernel .1 Writable sysctl directory > > [PATCH] powerpc: fix sysctl whining re kernel.powersave-nap > > kernel was marked with 0755. Everywhere else it's 0555. > > Signed-off-by: Alexey Dobriyan > --- > > arch/powerpc/kernel/idle.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/arch/powerpc/kernel/idle.c > +++ b/arch/powerpc/kernel/idle.c > @@ -122,7 +122,7 @@ static ctl_table powersave_nap_sysctl_root[] = { > { > .ctl_name = CTL_KERN, > .procname = "kernel", > - .mode = 0755, > + .mode = 0555, > .child = powersave_nap_ctl_table, > }, > {} > This eliminated the warning. Thanks.