From owner-freebsd-hackers Mon Nov 2 20:36:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA08170 for freebsd-hackers-outgoing; Mon, 2 Nov 1998 20:36:15 -0800 (PST) (envelope-from owner-freebsd-hackers@FreeBSD.ORG) Received: from heathers.stdio.com (heathers.stdio.com [199.89.192.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA08107 for ; Mon, 2 Nov 1998 20:35:53 -0800 (PST) (envelope-from lile@stdio.com) Received: from localhost (lile@localhost) by heathers.stdio.com (8.8.8/8.8.8) with SMTP id XAA21414; Mon, 2 Nov 1998 23:38:48 -0500 (EST) (envelope-from lile@heathers.stdio.com) Date: Mon, 2 Nov 1998 23:38:48 -0500 (EST) From: "Larry S. Lile" To: David Greenman cc: hackers@FreeBSD.ORG Subject: Re: "panic: free: multiple frees" VM bug? (long) In-Reply-To: <199811030349.TAA09485@implode.root.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 2 Nov 1998, David Greenman wrote: > >I am working on a token ring driver and I cannot seem to find > >out why this is happening. I contigmalloc buffers for tranmsitting > >frames and then free them later when they have been transmitted. > >I have to use contigmalloc in order to get buffers below the > >16M mark for dma. > > > >Anyone see what is wrong? Should I not do this? Or have I > >stumbled over a vm bug? > > > >It looks like a vm bug to me, but I have been wrong before. > > contigmalloc() isn't just a special version of malloc() that allocates > contiguous pages. It's actually a special allocator that has nothing to > do with malloc() and it is thus entirely incorrect to call free() with > a pointer to something that was allocated by contigmalloc(). The proper > way to free stuff that was allocated with contigmalloc() is with kmem_free(). > contigmalloc() is poorly named and should never have been brought into > the kernel that way. >From vm_extern.h void kmem_free __P((vm_map_t, vm_offset_t, vm_size_t)); What would my parameters be? More specifically vm_map? Just an example, I know I will have to write a oltr_free to do free/kmem_free based on how the memory was allocated. Thanks Larry Lile lile@stdio.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message