On 9 November 2012 21:08, Alfred Perlstein <alf...@freebsd.org> wrote:
> Modified: head/sys/kern/subr_param.c
> +#ifdef VM_MAX_AUTOTUNE_MAXUSERS
> +                if (maxusers > VM_MAX_AUTOTUNE_MAXUSERS)
> +                        maxusers = VM_MAX_AUTOTUNE_MAXUSERS;
> +#endif
> +                /*
> +                 * Scales down the function in which maxusers grows once
> +                 * we hit 384.
> +                 */
> +                if (maxusers > 384)
> +                        maxusers = 384 + ((maxusers - 384) / 8);
> +        }

Hey,

I know you didn't introduce this magic number 384. But can you (or
someone else) explain where it came from?

-- 
Eitan Adler
Source, Ports, Doc committer
Bugmeister, Ports Security teams
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to