ten thousand small processes

Jeff Roberson jroberson at chesapeake.net
Tue Jun 24 17:45:27 PDT 2003


I understand you have some history with the project.  As such I believe
you deserve a more thorough answer.  More replies inline.

On 23 Jun 2003, D. J. Bernstein wrote:

> alloca() is inadequate. Memory allocation doesn't always follow a stack
> pattern. I certainly can't predict memory use at the top of main().
>
> sbrk() is dangerous. Suppose a system call that I'm using turns into a
> library routine that calls malloc()---this has happened to poll() and to
> socket(), so it could happen again. Suppose the malloc() implementor
> assumes that the memory he gets from sbrk() is contiguous. Kaboom.

poll() does not call malloc in libc or libc_r.  Socket only calls malloc()
in libc_r.  libthr does not call malloc in either case.  I'm not sure
about libkse.  Could you clarify this point?  I agree, I wouldn't use
sbrk() either.  I'd use malloc().  If you have a small number of fixed
allocations declaring them in the bss for maximum compaction is an
alternative as well.  No fragmentation, no allocator overhead, etc.

> (If the sbrk() manual page said that this was the malloc() implementor's
> fault, maybe I'd risk it. But the manual page clearly says I shouldn't.
> ``Duh, why would anyone want to use more than one allocator library?'')

I'm not really sure why they would.  It seems like it would lead to
increaed ineffeciencies and fragmentation.  In the kernel we keep moving
towards fewer allocators not more for this exact reason.

> Even if I get malloc() under control somehow, I'll still have
30-odd
> unexplained VM pages going down the tubes. Is this, in fact, the stack?
> Why doesn't it start at 4K?
>

It does start at 4k of allocated pages.  I think I discussed this in my
other email.  WIth regards to the other pages that have been alllocated to
this process..  I remembered this today while thinking about another
problem.  FreeBSD does prefaults to map pages that are already available
into an address space.  This significantly reduces the number of faults in
many applications due to spacial locality.  This probably acounts for the
memory used that has not actually been referenced.

FreeBSD and ELF just aren't well suited to extremely tiny binaries.  I
hope this answers your questions.


> ---D. J. Bernstein, Associate Professor, Department of Mathematics,
> Statistics, and Computer Science, University of Illinois at Chicago
> _______________________________________________
> freebsd-performance at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-performance
> To unsubscribe, send any mail to "freebsd-performance-unsubscribe at freebsd.org"
>



More information about the freebsd-performance mailing list