On Mon, 31 May 2004 21:54, Con Kolivas wrote: > On Mon, 31 May 2004 21:50, Aristeu Sergio Rozanski Filho wrote: > > Hi Con, > > > > + .ctl_name = VM_AUTO_SWAPPINESS, > > + .procname = "autoswappiness", > > + .data = &auto_swappiness, > > + .maxlen = sizeof(auto_swappiness), > > + .mode = 0644, > > + .proc_handler = &proc_dointvec_minmax, > > + .strategy = &sysctl_intvec, > > + .extra1 = &zero, > > + .extra2 = &one_hundred, > > + }, > > shouldn't be proc_dointvec here? seems minmax isn't needed. > > Err yeah sure, thanks. How's this version look? Con