Subject: Re: Corret way to allocate memory in kernel ?
To: Jason Thorpe <thorpej@nas.nasa.gov>
From: Perry E. Metzger <perry@piermont.com>
List: tech-kern
Date: 08/15/1996 11:13:41
Anyone care to write up a section 9 page on these?

Jason Thorpe writes:
> On Thu, 15 Aug 1996 00:26:59 +1000 (EST) 
>  Darren Reed <darrenr@cyber.com.au> wrote:
> 
>  > Can someone please explain what the difference is between kmem_alloc()
>  > and malloc() within the kernel, and which should be used when ?
> 
> Really, you should be using malloc() if you want to do general purpose 
> memory allocation.
> 
> kmem_alloc() is handy for special applications, like when you want to 
> allocate memory and map it in the mbuf map, for example.  kmem_alloc() 
> isn't used in very many places.