From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752997AbXCUXNE (ORCPT ); Wed, 21 Mar 2007 19:13:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753118AbXCUXND (ORCPT ); Wed, 21 Mar 2007 19:13:03 -0400 Received: from smtp.osdl.org ([65.172.181.24]:58073 "EHLO smtp.osdl.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752997AbXCUXNB (ORCPT ); Wed, 21 Mar 2007 19:13:01 -0400 Date: Wed, 21 Mar 2007 16:11:40 -0700 From: Andrew Morton To: Randy Dunlap Cc: "H. Peter Anvin" , "J.H." , kernel list Subject: Re: [PATCH] sysctl: vfs_cache_divisor Message-Id: <20070321161140.457a3cd7.akpm@linux-foundation.org> In-Reply-To: <20070321160132.983812ac.randy.dunlap@oracle.com> References: <20061214223718.GA3816@elf.ucw.cz> <20061216094421.416a271e.randy.dunlap@oracle.com> <20061216095702.3e6f1d1f.akpm@osdl.org> <458434B0.4090506@oracle.com> <1166297434.26330.34.camel@localhost.localdomain> <20061219063413.GI24090@1wt.eu> <1166511171.26330.120.camel@localhost.localdomain> <20070106103331.48150aed.randy.dunlap@oracle.com> <459FF60D.7080901@zytor.com> <1168112266.2821.2.camel@entropy> <20070106121301.d07de0c9.akpm@osdl.org> <45A0041F.4060903@zytor.com> <20070319122740.286f602e.randy.dunlap@oracle.com> <20070319133613.9f4881db.akpm@linux-foundation.org> <45FEF5BC.90809@oracle.com> <45FF6189.9080508@zytor.com> <20070321160132.983812ac.randy.dunlap@oracle.com> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.6; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 21 Mar 2007 16:01:32 -0700 Randy Dunlap wrote: > On Mon, 19 Mar 2007 21:22:33 -0700 H. Peter Anvin wrote: > > > Randy Dunlap wrote: > > >> > > >> The we duplicate all the relevant /proc knobs: > > >> > > >> cat /proc/sys/vm/dirty_ratio > > >> 30 > > >> cat /proc/sys/vm/hires-dirty_ratio/ > > >> 300000 > > >> > > >> Or we do something else ;) > > > > > > Sounds better. I wasn't very keen on the userspace interface that this > > > exposed. Will look at those. > > > > > > > Okay... may be I could throw a spanner in the machinery, and suggest > > another option: perhaps we should add a way to do sysctl which can > > handle fractional (fixed-point) values... more coherent/detailed message > > tomorrow. > > I prefer the fixed-point values for pressure and dirty* to having > duplicated entries for each of them. I'll proceed with that idea. > Problem is, if a read of /proc/sys/vm/dirty_ratio is changed to return 7.457 then existing userspace might get confused. This might be acceptable if we are careful to ensure that reads of /proc/sys/vm/dirty_ratio will always return an integer if it was previously initialised with an integer.