Re: memory alloc/free issue

Matthew Dillon <[email protected]> Tue, 9 Dec 2014 12:45:57 -0800 (PST)
Newsgroups gmane.os.dragonfly-bsd.kernel
Message-ID <[email protected]>
    Memory must be allocated and freed from the same pool.  It is not
    legal to allocate memory from one pool and free it to another.

    These memory pools are struct malloc_type and typically denoted with
    M_SOMENAME in device and network drivers.

						-Matt