mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-14 07:15:58 +08:00
Move rtems/freebsd to freebsd and contrib to freebsd/contrib
This commit is contained in:
636
freebsd/vm/uma.h
Normal file
636
freebsd/vm/uma.h
Normal file
@@ -0,0 +1,636 @@
|
||||
/*-
|
||||
* Copyright (c) 2002, 2003, 2004, 2005 Jeffrey Roberson <jeff@FreeBSD.org>
|
||||
* Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice unmodified, this list of conditions, and the following
|
||||
* disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* uma.h - External definitions for the Universal Memory Allocator
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VM_UMA_H
|
||||
#define VM_UMA_H
|
||||
|
||||
#include <rtems/freebsd/sys/param.h> /* For NULL */
|
||||
#include <rtems/freebsd/sys/malloc.h> /* For M_* */
|
||||
|
||||
/* User visible parameters */
|
||||
#define UMA_SMALLEST_UNIT (PAGE_SIZE / 256) /* Smallest item allocated */
|
||||
|
||||
/* Types and type defs */
|
||||
|
||||
struct uma_zone;
|
||||
/* Opaque type used as a handle to the zone */
|
||||
typedef struct uma_zone * uma_zone_t;
|
||||
|
||||
void zone_drain(uma_zone_t);
|
||||
|
||||
/*
|
||||
* Item constructor
|
||||
*
|
||||
* Arguments:
|
||||
* item A pointer to the memory which has been allocated.
|
||||
* arg The arg field passed to uma_zalloc_arg
|
||||
* size The size of the allocated item
|
||||
* flags See zalloc flags
|
||||
*
|
||||
* Returns:
|
||||
* 0 on success
|
||||
* errno on failure
|
||||
*
|
||||
* Discussion:
|
||||
* The constructor is called just before the memory is returned
|
||||
* to the user. It may block if necessary.
|
||||
*/
|
||||
typedef int (*uma_ctor)(void *mem, int size, void *arg, int flags);
|
||||
|
||||
/*
|
||||
* Item destructor
|
||||
*
|
||||
* Arguments:
|
||||
* item A pointer to the memory which has been allocated.
|
||||
* size The size of the item being destructed.
|
||||
* arg Argument passed through uma_zfree_arg
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* Discussion:
|
||||
* The destructor may perform operations that differ from those performed
|
||||
* by the initializer, but it must leave the object in the same state.
|
||||
* This IS type stable storage. This is called after EVERY zfree call.
|
||||
*/
|
||||
typedef void (*uma_dtor)(void *mem, int size, void *arg);
|
||||
|
||||
/*
|
||||
* Item initializer
|
||||
*
|
||||
* Arguments:
|
||||
* item A pointer to the memory which has been allocated.
|
||||
* size The size of the item being initialized.
|
||||
* flags See zalloc flags
|
||||
*
|
||||
* Returns:
|
||||
* 0 on success
|
||||
* errno on failure
|
||||
*
|
||||
* Discussion:
|
||||
* The initializer is called when the memory is cached in the uma zone.
|
||||
* The initializer and the destructor should leave the object in the same
|
||||
* state.
|
||||
*/
|
||||
typedef int (*uma_init)(void *mem, int size, int flags);
|
||||
|
||||
/*
|
||||
* Item discard function
|
||||
*
|
||||
* Arguments:
|
||||
* item A pointer to memory which has been 'freed' but has not left the
|
||||
* zone's cache.
|
||||
* size The size of the item being discarded.
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* Discussion:
|
||||
* This routine is called when memory leaves a zone and is returned to the
|
||||
* system for other uses. It is the counter-part to the init function.
|
||||
*/
|
||||
typedef void (*uma_fini)(void *mem, int size);
|
||||
|
||||
/*
|
||||
* What's the difference between initializing and constructing?
|
||||
*
|
||||
* The item is initialized when it is cached, and this is the state that the
|
||||
* object should be in when returned to the allocator. The purpose of this is
|
||||
* to remove some code which would otherwise be called on each allocation by
|
||||
* utilizing a known, stable state. This differs from the constructor which
|
||||
* will be called on EVERY allocation.
|
||||
*
|
||||
* For example, in the initializer you may want to initialize embedded locks,
|
||||
* NULL list pointers, set up initial states, magic numbers, etc. This way if
|
||||
* the object is held in the allocator and re-used it won't be necessary to
|
||||
* re-initialize it.
|
||||
*
|
||||
* The constructor may be used to lock a data structure, link it on to lists,
|
||||
* bump reference counts or total counts of outstanding structures, etc.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
/* Function proto types */
|
||||
|
||||
/*
|
||||
* Create a new uma zone
|
||||
*
|
||||
* Arguments:
|
||||
* name The text name of the zone for debugging and stats. This memory
|
||||
* should not be freed until the zone has been deallocated.
|
||||
* size The size of the object that is being created.
|
||||
* ctor The constructor that is called when the object is allocated.
|
||||
* dtor The destructor that is called when the object is freed.
|
||||
* init An initializer that sets up the initial state of the memory.
|
||||
* fini A discard function that undoes initialization done by init.
|
||||
* ctor/dtor/init/fini may all be null, see notes above.
|
||||
* align A bitmask that corresponds to the requested alignment
|
||||
* eg 4 would be 0x3
|
||||
* flags A set of parameters that control the behavior of the zone.
|
||||
*
|
||||
* Returns:
|
||||
* A pointer to a structure which is intended to be opaque to users of
|
||||
* the interface. The value may be null if the wait flag is not set.
|
||||
*/
|
||||
uma_zone_t uma_zcreate(char *name, size_t size, uma_ctor ctor, uma_dtor dtor,
|
||||
uma_init uminit, uma_fini fini, int align,
|
||||
u_int32_t flags);
|
||||
|
||||
/*
|
||||
* Create a secondary uma zone
|
||||
*
|
||||
* Arguments:
|
||||
* name The text name of the zone for debugging and stats. This memory
|
||||
* should not be freed until the zone has been deallocated.
|
||||
* ctor The constructor that is called when the object is allocated.
|
||||
* dtor The destructor that is called when the object is freed.
|
||||
* zinit An initializer that sets up the initial state of the memory
|
||||
* as the object passes from the Keg's slab to the Zone's cache.
|
||||
* zfini A discard function that undoes initialization done by init
|
||||
* as the object passes from the Zone's cache to the Keg's slab.
|
||||
*
|
||||
* ctor/dtor/zinit/zfini may all be null, see notes above.
|
||||
* Note that the zinit and zfini specified here are NOT
|
||||
* exactly the same as the init/fini specified to uma_zcreate()
|
||||
* when creating a master zone. These zinit/zfini are called
|
||||
* on the TRANSITION from keg to zone (and vice-versa). Once
|
||||
* these are set, the primary zone may alter its init/fini
|
||||
* (which are called when the object passes from VM to keg)
|
||||
* using uma_zone_set_init/fini()) as well as its own
|
||||
* zinit/zfini (unset by default for master zone) with
|
||||
* uma_zone_set_zinit/zfini() (note subtle 'z' prefix).
|
||||
*
|
||||
* master A reference to this zone's Master Zone (Primary Zone),
|
||||
* which contains the backing Keg for the Secondary Zone
|
||||
* being added.
|
||||
*
|
||||
* Returns:
|
||||
* A pointer to a structure which is intended to be opaque to users of
|
||||
* the interface. The value may be null if the wait flag is not set.
|
||||
*/
|
||||
uma_zone_t uma_zsecond_create(char *name, uma_ctor ctor, uma_dtor dtor,
|
||||
uma_init zinit, uma_fini zfini, uma_zone_t master);
|
||||
|
||||
/*
|
||||
* Add a second master to a secondary zone. This provides multiple data
|
||||
* backends for objects with the same size. Both masters must have
|
||||
* compatible allocation flags. Presently, UMA_ZONE_MALLOC type zones are
|
||||
* the only supported.
|
||||
*
|
||||
* Returns:
|
||||
* Error on failure, 0 on success.
|
||||
*/
|
||||
int uma_zsecond_add(uma_zone_t zone, uma_zone_t master);
|
||||
|
||||
/*
|
||||
* Definitions for uma_zcreate flags
|
||||
*
|
||||
* These flags share space with UMA_ZFLAGs in uma_int.h. Be careful not to
|
||||
* overlap when adding new features. 0xf0000000 is in use by uma_int.h.
|
||||
*/
|
||||
#define UMA_ZONE_PAGEABLE 0x0001 /* Return items not fully backed by
|
||||
physical memory XXX Not yet */
|
||||
#define UMA_ZONE_ZINIT 0x0002 /* Initialize with zeros */
|
||||
#define UMA_ZONE_STATIC 0x0004 /* Statically sized zone */
|
||||
#define UMA_ZONE_OFFPAGE 0x0008 /* Force the slab structure allocation
|
||||
off of the real memory */
|
||||
#define UMA_ZONE_MALLOC 0x0010 /* For use by malloc(9) only! */
|
||||
#define UMA_ZONE_NOFREE 0x0020 /* Do not free slabs of this type! */
|
||||
#define UMA_ZONE_MTXCLASS 0x0040 /* Create a new lock class */
|
||||
#define UMA_ZONE_VM 0x0080 /*
|
||||
* Used for internal vm datastructures
|
||||
* only.
|
||||
*/
|
||||
#define UMA_ZONE_HASH 0x0100 /*
|
||||
* Use a hash table instead of caching
|
||||
* information in the vm_page.
|
||||
*/
|
||||
#define UMA_ZONE_SECONDARY 0x0200 /* Zone is a Secondary Zone */
|
||||
#define UMA_ZONE_REFCNT 0x0400 /* Allocate refcnts in slabs */
|
||||
#define UMA_ZONE_MAXBUCKET 0x0800 /* Use largest buckets */
|
||||
#define UMA_ZONE_CACHESPREAD 0x1000 /*
|
||||
* Spread memory start locations across
|
||||
* all possible cache lines. May
|
||||
* require many virtually contiguous
|
||||
* backend pages and can fail early.
|
||||
*/
|
||||
#define UMA_ZONE_VTOSLAB 0x2000 /* Zone uses vtoslab for lookup. */
|
||||
|
||||
/*
|
||||
* These flags are shared between the keg and zone. In zones wishing to add
|
||||
* new kegs these flags must be compatible. Some are determined based on
|
||||
* physical parameters of the request and may not be provided by the consumer.
|
||||
*/
|
||||
#define UMA_ZONE_INHERIT \
|
||||
(UMA_ZONE_OFFPAGE | UMA_ZONE_MALLOC | UMA_ZONE_HASH | \
|
||||
UMA_ZONE_REFCNT | UMA_ZONE_VTOSLAB)
|
||||
|
||||
/* Definitions for align */
|
||||
#define UMA_ALIGN_PTR (sizeof(void *) - 1) /* Alignment fit for ptr */
|
||||
#define UMA_ALIGN_LONG (sizeof(long) - 1) /* "" long */
|
||||
#define UMA_ALIGN_INT (sizeof(int) - 1) /* "" int */
|
||||
#define UMA_ALIGN_SHORT (sizeof(short) - 1) /* "" short */
|
||||
#define UMA_ALIGN_CHAR (sizeof(char) - 1) /* "" char */
|
||||
#define UMA_ALIGN_CACHE (0 - 1) /* Cache line size align */
|
||||
|
||||
/*
|
||||
* Destroys an empty uma zone. If the zone is not empty uma complains loudly.
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone we want to destroy.
|
||||
*
|
||||
*/
|
||||
void uma_zdestroy(uma_zone_t zone);
|
||||
|
||||
/*
|
||||
* Allocates an item out of a zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone we are allocating from
|
||||
* arg This data is passed to the ctor function
|
||||
* flags See sys/malloc.h for available flags.
|
||||
*
|
||||
* Returns:
|
||||
* A non-null pointer to an initialized element from the zone is
|
||||
* guaranteed if the wait flag is M_WAITOK. Otherwise a null pointer
|
||||
* may be returned if the zone is empty or the ctor failed.
|
||||
*/
|
||||
|
||||
void *uma_zalloc_arg(uma_zone_t zone, void *arg, int flags);
|
||||
|
||||
/*
|
||||
* Allocates an item out of a zone without supplying an argument
|
||||
*
|
||||
* This is just a wrapper for uma_zalloc_arg for convenience.
|
||||
*
|
||||
*/
|
||||
static __inline void *uma_zalloc(uma_zone_t zone, int flags);
|
||||
|
||||
static __inline void *
|
||||
uma_zalloc(uma_zone_t zone, int flags)
|
||||
{
|
||||
return uma_zalloc_arg(zone, NULL, flags);
|
||||
}
|
||||
|
||||
/*
|
||||
* Frees an item back into the specified zone.
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone the item was originally allocated out of.
|
||||
* item The memory to be freed.
|
||||
* arg Argument passed to the destructor
|
||||
*
|
||||
* Returns:
|
||||
* Nothing.
|
||||
*/
|
||||
|
||||
void uma_zfree_arg(uma_zone_t zone, void *item, void *arg);
|
||||
|
||||
/*
|
||||
* Frees an item back to a zone without supplying an argument
|
||||
*
|
||||
* This is just a wrapper for uma_zfree_arg for convenience.
|
||||
*
|
||||
*/
|
||||
static __inline void uma_zfree(uma_zone_t zone, void *item);
|
||||
|
||||
static __inline void
|
||||
uma_zfree(uma_zone_t zone, void *item)
|
||||
{
|
||||
uma_zfree_arg(zone, item, NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* XXX The rest of the prototypes in this header are h0h0 magic for the VM.
|
||||
* If you think you need to use it for a normal zone you're probably incorrect.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Backend page supplier routines
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone that is requesting pages.
|
||||
* size The number of bytes being requested.
|
||||
* pflag Flags for these memory pages, see below.
|
||||
* wait Indicates our willingness to block.
|
||||
*
|
||||
* Returns:
|
||||
* A pointer to the allocated memory or NULL on failure.
|
||||
*/
|
||||
|
||||
typedef void *(*uma_alloc)(uma_zone_t zone, int size, u_int8_t *pflag, int wait);
|
||||
|
||||
/*
|
||||
* Backend page free routines
|
||||
*
|
||||
* Arguments:
|
||||
* item A pointer to the previously allocated pages.
|
||||
* size The original size of the allocation.
|
||||
* pflag The flags for the slab. See UMA_SLAB_* below.
|
||||
*
|
||||
* Returns:
|
||||
* None
|
||||
*/
|
||||
typedef void (*uma_free)(void *item, int size, u_int8_t pflag);
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Sets up the uma allocator. (Called by vm_mem_init)
|
||||
*
|
||||
* Arguments:
|
||||
* bootmem A pointer to memory used to bootstrap the system.
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* Discussion:
|
||||
* This memory is used for zones which allocate things before the
|
||||
* backend page supplier can give us pages. It should be
|
||||
* UMA_SLAB_SIZE * boot_pages bytes. (see uma_int.h)
|
||||
*
|
||||
*/
|
||||
|
||||
void uma_startup(void *bootmem, int boot_pages);
|
||||
|
||||
/*
|
||||
* Finishes starting up the allocator. This should
|
||||
* be called when kva is ready for normal allocs.
|
||||
*
|
||||
* Arguments:
|
||||
* None
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* Discussion:
|
||||
* uma_startup2 is called by kmeminit() to enable us of uma for malloc.
|
||||
*/
|
||||
|
||||
void uma_startup2(void);
|
||||
|
||||
/*
|
||||
* Reclaims unused memory for all zones
|
||||
*
|
||||
* Arguments:
|
||||
* None
|
||||
* Returns:
|
||||
* None
|
||||
*
|
||||
* This should only be called by the page out daemon.
|
||||
*/
|
||||
|
||||
void uma_reclaim(void);
|
||||
|
||||
/*
|
||||
* Sets the alignment mask to be used for all zones requesting cache
|
||||
* alignment. Should be called by MD boot code prior to starting VM/UMA.
|
||||
*
|
||||
* Arguments:
|
||||
* align The alignment mask
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*/
|
||||
void uma_set_align(int align);
|
||||
|
||||
/*
|
||||
* Switches the backing object of a zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to update.
|
||||
* obj The VM object to use for future allocations.
|
||||
* size The size of the object to allocate.
|
||||
*
|
||||
* Returns:
|
||||
* 0 if kva space can not be allocated
|
||||
* 1 if successful
|
||||
*
|
||||
* Discussion:
|
||||
* A NULL object can be used and uma will allocate one for you. Setting
|
||||
* the size will limit the amount of memory allocated to this zone.
|
||||
*
|
||||
*/
|
||||
struct vm_object;
|
||||
int uma_zone_set_obj(uma_zone_t zone, struct vm_object *obj, int size);
|
||||
|
||||
/*
|
||||
* Sets a high limit on the number of items allowed in a zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to limit
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*/
|
||||
void uma_zone_set_max(uma_zone_t zone, int nitems);
|
||||
|
||||
/*
|
||||
* Obtains the effective limit on the number of items in a zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to obtain the effective limit from
|
||||
*
|
||||
* Return:
|
||||
* 0 No limit
|
||||
* int The effective limit of the zone
|
||||
*/
|
||||
int uma_zone_get_max(uma_zone_t zone);
|
||||
|
||||
/*
|
||||
* Obtains the approximate current number of items allocated from a zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to obtain the current allocation count from
|
||||
*
|
||||
* Return:
|
||||
* int The approximate current number of items allocated from the zone
|
||||
*/
|
||||
int uma_zone_get_cur(uma_zone_t zone);
|
||||
|
||||
/*
|
||||
* The following two routines (uma_zone_set_init/fini)
|
||||
* are used to set the backend init/fini pair which acts on an
|
||||
* object as it becomes allocated and is placed in a slab within
|
||||
* the specified zone's backing keg. These should probably not
|
||||
* be changed once allocations have already begun, but only be set
|
||||
* immediately upon zone creation.
|
||||
*/
|
||||
void uma_zone_set_init(uma_zone_t zone, uma_init uminit);
|
||||
void uma_zone_set_fini(uma_zone_t zone, uma_fini fini);
|
||||
|
||||
/*
|
||||
* The following two routines (uma_zone_set_zinit/zfini) are
|
||||
* used to set the zinit/zfini pair which acts on an object as
|
||||
* it passes from the backing Keg's slab cache to the
|
||||
* specified Zone's bucket cache. These should probably not
|
||||
* be changed once allocations have already begun, but only be set
|
||||
* immediately upon zone creation.
|
||||
*/
|
||||
void uma_zone_set_zinit(uma_zone_t zone, uma_init zinit);
|
||||
void uma_zone_set_zfini(uma_zone_t zone, uma_fini zfini);
|
||||
|
||||
/*
|
||||
* Replaces the standard page_alloc or obj_alloc functions for this zone
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone whose backend allocator is being changed.
|
||||
* allocf A pointer to the allocation function
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* Discussion:
|
||||
* This could be used to implement pageable allocation, or perhaps
|
||||
* even DMA allocators if used in conjunction with the OFFPAGE
|
||||
* zone flag.
|
||||
*/
|
||||
|
||||
void uma_zone_set_allocf(uma_zone_t zone, uma_alloc allocf);
|
||||
|
||||
/*
|
||||
* Used for freeing memory provided by the allocf above
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone that intends to use this free routine.
|
||||
* freef The page freeing routine.
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*/
|
||||
|
||||
void uma_zone_set_freef(uma_zone_t zone, uma_free freef);
|
||||
|
||||
/*
|
||||
* These flags are setable in the allocf and visible in the freef.
|
||||
*/
|
||||
#define UMA_SLAB_BOOT 0x01 /* Slab alloced from boot pages */
|
||||
#define UMA_SLAB_KMEM 0x02 /* Slab alloced from kmem_map */
|
||||
#define UMA_SLAB_KERNEL 0x04 /* Slab alloced from kernel_map */
|
||||
#define UMA_SLAB_PRIV 0x08 /* Slab alloced from priv allocator */
|
||||
#define UMA_SLAB_OFFP 0x10 /* Slab is managed separately */
|
||||
#define UMA_SLAB_MALLOC 0x20 /* Slab is a large malloc slab */
|
||||
/* 0x40 and 0x80 are available */
|
||||
|
||||
/*
|
||||
* Used to pre-fill a zone with some number of items
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to fill
|
||||
* itemcnt The number of items to reserve
|
||||
*
|
||||
* Returns:
|
||||
* Nothing
|
||||
*
|
||||
* NOTE: This is blocking and should only be done at startup
|
||||
*/
|
||||
void uma_prealloc(uma_zone_t zone, int itemcnt);
|
||||
|
||||
/*
|
||||
* Used to lookup the reference counter allocated for an item
|
||||
* from a UMA_ZONE_REFCNT zone. For UMA_ZONE_REFCNT zones,
|
||||
* reference counters are allocated for items and stored in
|
||||
* the underlying slab header.
|
||||
*
|
||||
* Arguments:
|
||||
* zone The UMA_ZONE_REFCNT zone to which the item belongs.
|
||||
* item The address of the item for which we want a refcnt.
|
||||
*
|
||||
* Returns:
|
||||
* A pointer to a u_int32_t reference counter.
|
||||
*/
|
||||
u_int32_t *uma_find_refcnt(uma_zone_t zone, void *item);
|
||||
|
||||
/*
|
||||
* Used to determine if a fixed-size zone is exhausted.
|
||||
*
|
||||
* Arguments:
|
||||
* zone The zone to check
|
||||
*
|
||||
* Returns:
|
||||
* Non-zero if zone is exhausted.
|
||||
*/
|
||||
int uma_zone_exhausted(uma_zone_t zone);
|
||||
int uma_zone_exhausted_nolock(uma_zone_t zone);
|
||||
|
||||
/*
|
||||
* Exported statistics structures to be used by user space monitoring tools.
|
||||
* Statistics stream consists of a uma_stream_header, followed by a series of
|
||||
* alternative uma_type_header and uma_type_stat structures.
|
||||
*/
|
||||
#define UMA_STREAM_VERSION 0x00000001
|
||||
struct uma_stream_header {
|
||||
u_int32_t ush_version; /* Stream format version. */
|
||||
u_int32_t ush_maxcpus; /* Value of MAXCPU for stream. */
|
||||
u_int32_t ush_count; /* Number of records. */
|
||||
u_int32_t _ush_pad; /* Pad/reserved field. */
|
||||
};
|
||||
|
||||
#define UTH_MAX_NAME 32
|
||||
#define UTH_ZONE_SECONDARY 0x00000001
|
||||
struct uma_type_header {
|
||||
/*
|
||||
* Static per-zone data, some extracted from the supporting keg.
|
||||
*/
|
||||
char uth_name[UTH_MAX_NAME];
|
||||
u_int32_t uth_align; /* Keg: alignment. */
|
||||
u_int32_t uth_size; /* Keg: requested size of item. */
|
||||
u_int32_t uth_rsize; /* Keg: real size of item. */
|
||||
u_int32_t uth_maxpages; /* Keg: maximum number of pages. */
|
||||
u_int32_t uth_limit; /* Keg: max items to allocate. */
|
||||
|
||||
/*
|
||||
* Current dynamic zone/keg-derived statistics.
|
||||
*/
|
||||
u_int32_t uth_pages; /* Keg: pages allocated. */
|
||||
u_int32_t uth_keg_free; /* Keg: items free. */
|
||||
u_int32_t uth_zone_free; /* Zone: items free. */
|
||||
u_int32_t uth_bucketsize; /* Zone: desired bucket size. */
|
||||
u_int32_t uth_zone_flags; /* Zone: flags. */
|
||||
u_int64_t uth_allocs; /* Zone: number of allocations. */
|
||||
u_int64_t uth_frees; /* Zone: number of frees. */
|
||||
u_int64_t uth_fails; /* Zone: number of alloc failures. */
|
||||
u_int64_t _uth_reserved1[3]; /* Reserved. */
|
||||
};
|
||||
|
||||
struct uma_percpu_stat {
|
||||
u_int64_t ups_allocs; /* Cache: number of allocations. */
|
||||
u_int64_t ups_frees; /* Cache: number of frees. */
|
||||
u_int64_t ups_cache_free; /* Cache: free items in cache. */
|
||||
u_int64_t _ups_reserved[5]; /* Reserved. */
|
||||
};
|
||||
|
||||
#endif
|
55
freebsd/vm/uma_dbg.h
Normal file
55
freebsd/vm/uma_dbg.h
Normal file
@@ -0,0 +1,55 @@
|
||||
/*-
|
||||
* Copyright (c) 2002, 2003, 2004, 2005 Jeffrey Roberson <jeff@FreeBSD.org>
|
||||
* Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice unmodified, this list of conditions, and the following
|
||||
* disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* This file includes definitions, structures, prototypes, and inlines used
|
||||
* when debugging users of the UMA interface.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VM_UMA_DBG_H
|
||||
#define VM_UMA_DBG_H
|
||||
|
||||
int trash_ctor(void *mem, int size, void *arg, int flags);
|
||||
void trash_dtor(void *mem, int size, void *arg);
|
||||
int trash_init(void *mem, int size, int flags);
|
||||
void trash_fini(void *mem, int size);
|
||||
|
||||
/* For use only by malloc */
|
||||
int mtrash_ctor(void *mem, int size, void *arg, int flags);
|
||||
void mtrash_dtor(void *mem, int size, void *arg);
|
||||
int mtrash_init(void *mem, int size, int flags);
|
||||
void mtrash_fini(void *mem, int size);
|
||||
|
||||
void uma_dbg_free(uma_zone_t zone, uma_slab_t slab, void *item);
|
||||
void uma_dbg_alloc(uma_zone_t zone, uma_slab_t slab, void *item);
|
||||
|
||||
#endif /* VM_UMA_DBG_H */
|
440
freebsd/vm/uma_int.h
Normal file
440
freebsd/vm/uma_int.h
Normal file
@@ -0,0 +1,440 @@
|
||||
/*-
|
||||
* Copyright (c) 2002-2005, 2009 Jeffrey Roberson <jeff@FreeBSD.org>
|
||||
* Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice unmodified, this list of conditions, and the following
|
||||
* disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file includes definitions, structures, prototypes, and inlines that
|
||||
* should not be used outside of the actual implementation of UMA.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Here's a quick description of the relationship between the objects:
|
||||
*
|
||||
* Kegs contain lists of slabs which are stored in either the full bin, empty
|
||||
* bin, or partially allocated bin, to reduce fragmentation. They also contain
|
||||
* the user supplied value for size, which is adjusted for alignment purposes
|
||||
* and rsize is the result of that. The Keg also stores information for
|
||||
* managing a hash of page addresses that maps pages to uma_slab_t structures
|
||||
* for pages that don't have embedded uma_slab_t's.
|
||||
*
|
||||
* The uma_slab_t may be embedded in a UMA_SLAB_SIZE chunk of memory or it may
|
||||
* be allocated off the page from a special slab zone. The free list within a
|
||||
* slab is managed with a linked list of indexes, which are 8 bit values. If
|
||||
* UMA_SLAB_SIZE is defined to be too large I will have to switch to 16bit
|
||||
* values. Currently on alpha you can get 250 or so 32 byte items and on x86
|
||||
* you can get 250 or so 16byte items. For item sizes that would yield more
|
||||
* than 10% memory waste we potentially allocate a separate uma_slab_t if this
|
||||
* will improve the number of items per slab that will fit.
|
||||
*
|
||||
* Other potential space optimizations are storing the 8bit of linkage in space
|
||||
* wasted between items due to alignment problems. This may yield a much better
|
||||
* memory footprint for certain sizes of objects. Another alternative is to
|
||||
* increase the UMA_SLAB_SIZE, or allow for dynamic slab sizes. I prefer
|
||||
* dynamic slab sizes because we could stick with 8 bit indexes and only use
|
||||
* large slab sizes for zones with a lot of waste per slab. This may create
|
||||
* ineffeciencies in the vm subsystem due to fragmentation in the address space.
|
||||
*
|
||||
* The only really gross cases, with regards to memory waste, are for those
|
||||
* items that are just over half the page size. You can get nearly 50% waste,
|
||||
* so you fall back to the memory footprint of the power of two allocator. I
|
||||
* have looked at memory allocation sizes on many of the machines available to
|
||||
* me, and there does not seem to be an abundance of allocations at this range
|
||||
* so at this time it may not make sense to optimize for it. This can, of
|
||||
* course, be solved with dynamic slab sizes.
|
||||
*
|
||||
* Kegs may serve multiple Zones but by far most of the time they only serve
|
||||
* one. When a Zone is created, a Keg is allocated and setup for it. While
|
||||
* the backing Keg stores slabs, the Zone caches Buckets of items allocated
|
||||
* from the slabs. Each Zone is equipped with an init/fini and ctor/dtor
|
||||
* pair, as well as with its own set of small per-CPU caches, layered above
|
||||
* the Zone's general Bucket cache.
|
||||
*
|
||||
* The PCPU caches are protected by critical sections, and may be accessed
|
||||
* safely only from their associated CPU, while the Zones backed by the same
|
||||
* Keg all share a common Keg lock (to coalesce contention on the backing
|
||||
* slabs). The backing Keg typically only serves one Zone but in the case of
|
||||
* multiple Zones, one of the Zones is considered the Master Zone and all
|
||||
* Zone-related stats from the Keg are done in the Master Zone. For an
|
||||
* example of a Multi-Zone setup, refer to the Mbuf allocation code.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This is the representation for normal (Non OFFPAGE slab)
|
||||
*
|
||||
* i == item
|
||||
* s == slab pointer
|
||||
*
|
||||
* <---------------- Page (UMA_SLAB_SIZE) ------------------>
|
||||
* ___________________________________________________________
|
||||
* | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ |
|
||||
* ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| |slab header||
|
||||
* ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| |___________||
|
||||
* |___________________________________________________________|
|
||||
*
|
||||
*
|
||||
* This is an OFFPAGE slab. These can be larger than UMA_SLAB_SIZE.
|
||||
*
|
||||
* ___________________________________________________________
|
||||
* | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
|
||||
* ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| |
|
||||
* ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| |
|
||||
* |___________________________________________________________|
|
||||
* ___________ ^
|
||||
* |slab header| |
|
||||
* |___________|---*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef VM_UMA_INT_H
|
||||
#define VM_UMA_INT_H
|
||||
|
||||
#define UMA_SLAB_SIZE PAGE_SIZE /* How big are our slabs? */
|
||||
#define UMA_SLAB_MASK (PAGE_SIZE - 1) /* Mask to get back to the page */
|
||||
#define UMA_SLAB_SHIFT PAGE_SHIFT /* Number of bits PAGE_MASK */
|
||||
|
||||
#define UMA_BOOT_PAGES 48 /* Pages allocated for startup */
|
||||
|
||||
/* Max waste before going to off page slab management */
|
||||
#define UMA_MAX_WASTE (UMA_SLAB_SIZE / 10)
|
||||
|
||||
/*
|
||||
* I doubt there will be many cases where this is exceeded. This is the initial
|
||||
* size of the hash table for uma_slabs that are managed off page. This hash
|
||||
* does expand by powers of two. Currently it doesn't get smaller.
|
||||
*/
|
||||
#define UMA_HASH_SIZE_INIT 32
|
||||
|
||||
/*
|
||||
* I should investigate other hashing algorithms. This should yield a low
|
||||
* number of collisions if the pages are relatively contiguous.
|
||||
*
|
||||
* This is the same algorithm that most processor caches use.
|
||||
*
|
||||
* I'm shifting and masking instead of % because it should be faster.
|
||||
*/
|
||||
|
||||
#define UMA_HASH(h, s) ((((unsigned long)s) >> UMA_SLAB_SHIFT) & \
|
||||
(h)->uh_hashmask)
|
||||
|
||||
#define UMA_HASH_INSERT(h, s, mem) \
|
||||
SLIST_INSERT_HEAD(&(h)->uh_slab_hash[UMA_HASH((h), \
|
||||
(mem))], (s), us_hlink)
|
||||
#define UMA_HASH_REMOVE(h, s, mem) \
|
||||
SLIST_REMOVE(&(h)->uh_slab_hash[UMA_HASH((h), \
|
||||
(mem))], (s), uma_slab, us_hlink)
|
||||
|
||||
/* Hash table for freed address -> slab translation */
|
||||
|
||||
SLIST_HEAD(slabhead, uma_slab);
|
||||
|
||||
struct uma_hash {
|
||||
struct slabhead *uh_slab_hash; /* Hash table for slabs */
|
||||
int uh_hashsize; /* Current size of the hash table */
|
||||
int uh_hashmask; /* Mask used during hashing */
|
||||
};
|
||||
|
||||
/*
|
||||
* Structures for per cpu queues.
|
||||
*/
|
||||
|
||||
struct uma_bucket {
|
||||
LIST_ENTRY(uma_bucket) ub_link; /* Link into the zone */
|
||||
int16_t ub_cnt; /* Count of free items. */
|
||||
int16_t ub_entries; /* Max items. */
|
||||
void *ub_bucket[]; /* actual allocation storage */
|
||||
};
|
||||
|
||||
typedef struct uma_bucket * uma_bucket_t;
|
||||
|
||||
struct uma_cache {
|
||||
uma_bucket_t uc_freebucket; /* Bucket we're freeing to */
|
||||
uma_bucket_t uc_allocbucket; /* Bucket to allocate from */
|
||||
u_int64_t uc_allocs; /* Count of allocations */
|
||||
u_int64_t uc_frees; /* Count of frees */
|
||||
};
|
||||
|
||||
typedef struct uma_cache * uma_cache_t;
|
||||
|
||||
/*
|
||||
* Keg management structure
|
||||
*
|
||||
* TODO: Optimize for cache line size
|
||||
*
|
||||
*/
|
||||
struct uma_keg {
|
||||
LIST_ENTRY(uma_keg) uk_link; /* List of all kegs */
|
||||
|
||||
struct mtx uk_lock; /* Lock for the keg */
|
||||
struct uma_hash uk_hash;
|
||||
|
||||
char *uk_name; /* Name of creating zone. */
|
||||
LIST_HEAD(,uma_zone) uk_zones; /* Keg's zones */
|
||||
LIST_HEAD(,uma_slab) uk_part_slab; /* partially allocated slabs */
|
||||
LIST_HEAD(,uma_slab) uk_free_slab; /* empty slab list */
|
||||
LIST_HEAD(,uma_slab) uk_full_slab; /* full slabs */
|
||||
|
||||
u_int32_t uk_recurse; /* Allocation recursion count */
|
||||
u_int32_t uk_align; /* Alignment mask */
|
||||
u_int32_t uk_pages; /* Total page count */
|
||||
u_int32_t uk_free; /* Count of items free in slabs */
|
||||
u_int32_t uk_size; /* Requested size of each item */
|
||||
u_int32_t uk_rsize; /* Real size of each item */
|
||||
u_int32_t uk_maxpages; /* Maximum number of pages to alloc */
|
||||
|
||||
uma_init uk_init; /* Keg's init routine */
|
||||
uma_fini uk_fini; /* Keg's fini routine */
|
||||
uma_alloc uk_allocf; /* Allocation function */
|
||||
uma_free uk_freef; /* Free routine */
|
||||
|
||||
struct vm_object *uk_obj; /* Zone specific object */
|
||||
vm_offset_t uk_kva; /* Base kva for zones with objs */
|
||||
uma_zone_t uk_slabzone; /* Slab zone backing us, if OFFPAGE */
|
||||
|
||||
u_int16_t uk_pgoff; /* Offset to uma_slab struct */
|
||||
u_int16_t uk_ppera; /* pages per allocation from backend */
|
||||
u_int16_t uk_ipers; /* Items per slab */
|
||||
u_int32_t uk_flags; /* Internal flags */
|
||||
};
|
||||
typedef struct uma_keg * uma_keg_t;
|
||||
|
||||
/* Page management structure */
|
||||
|
||||
/* Sorry for the union, but space efficiency is important */
|
||||
struct uma_slab_head {
|
||||
uma_keg_t us_keg; /* Keg we live in */
|
||||
union {
|
||||
LIST_ENTRY(uma_slab) _us_link; /* slabs in zone */
|
||||
unsigned long _us_size; /* Size of allocation */
|
||||
} us_type;
|
||||
SLIST_ENTRY(uma_slab) us_hlink; /* Link for hash table */
|
||||
u_int8_t *us_data; /* First item */
|
||||
u_int8_t us_flags; /* Page flags see uma.h */
|
||||
u_int8_t us_freecount; /* How many are free? */
|
||||
u_int8_t us_firstfree; /* First free item index */
|
||||
};
|
||||
|
||||
/* The standard slab structure */
|
||||
struct uma_slab {
|
||||
struct uma_slab_head us_head; /* slab header data */
|
||||
struct {
|
||||
u_int8_t us_item;
|
||||
} us_freelist[1]; /* actual number bigger */
|
||||
};
|
||||
|
||||
/*
|
||||
* The slab structure for UMA_ZONE_REFCNT zones for whose items we
|
||||
* maintain reference counters in the slab for.
|
||||
*/
|
||||
struct uma_slab_refcnt {
|
||||
struct uma_slab_head us_head; /* slab header data */
|
||||
struct {
|
||||
u_int8_t us_item;
|
||||
u_int32_t us_refcnt;
|
||||
} us_freelist[1]; /* actual number bigger */
|
||||
};
|
||||
|
||||
#define us_keg us_head.us_keg
|
||||
#define us_link us_head.us_type._us_link
|
||||
#define us_size us_head.us_type._us_size
|
||||
#define us_hlink us_head.us_hlink
|
||||
#define us_data us_head.us_data
|
||||
#define us_flags us_head.us_flags
|
||||
#define us_freecount us_head.us_freecount
|
||||
#define us_firstfree us_head.us_firstfree
|
||||
|
||||
typedef struct uma_slab * uma_slab_t;
|
||||
typedef struct uma_slab_refcnt * uma_slabrefcnt_t;
|
||||
typedef uma_slab_t (*uma_slaballoc)(uma_zone_t, uma_keg_t, int);
|
||||
|
||||
|
||||
/*
|
||||
* These give us the size of one free item reference within our corresponding
|
||||
* uma_slab structures, so that our calculations during zone setup are correct
|
||||
* regardless of what the compiler decides to do with padding the structure
|
||||
* arrays within uma_slab.
|
||||
*/
|
||||
#define UMA_FRITM_SZ (sizeof(struct uma_slab) - sizeof(struct uma_slab_head))
|
||||
#define UMA_FRITMREF_SZ (sizeof(struct uma_slab_refcnt) - \
|
||||
sizeof(struct uma_slab_head))
|
||||
|
||||
struct uma_klink {
|
||||
LIST_ENTRY(uma_klink) kl_link;
|
||||
uma_keg_t kl_keg;
|
||||
};
|
||||
typedef struct uma_klink *uma_klink_t;
|
||||
|
||||
/*
|
||||
* Zone management structure
|
||||
*
|
||||
* TODO: Optimize for cache line size
|
||||
*
|
||||
*/
|
||||
struct uma_zone {
|
||||
char *uz_name; /* Text name of the zone */
|
||||
struct mtx *uz_lock; /* Lock for the zone (keg's lock) */
|
||||
|
||||
LIST_ENTRY(uma_zone) uz_link; /* List of all zones in keg */
|
||||
LIST_HEAD(,uma_bucket) uz_full_bucket; /* full buckets */
|
||||
LIST_HEAD(,uma_bucket) uz_free_bucket; /* Buckets for frees */
|
||||
|
||||
LIST_HEAD(,uma_klink) uz_kegs; /* List of kegs. */
|
||||
struct uma_klink uz_klink; /* klink for first keg. */
|
||||
|
||||
uma_slaballoc uz_slab; /* Allocate a slab from the backend. */
|
||||
uma_ctor uz_ctor; /* Constructor for each allocation */
|
||||
uma_dtor uz_dtor; /* Destructor */
|
||||
uma_init uz_init; /* Initializer for each item */
|
||||
uma_fini uz_fini; /* Discards memory */
|
||||
|
||||
u_int64_t uz_allocs; /* Total number of allocations */
|
||||
u_int64_t uz_frees; /* Total number of frees */
|
||||
u_int64_t uz_fails; /* Total number of alloc failures */
|
||||
u_int32_t uz_flags; /* Flags inherited from kegs */
|
||||
u_int32_t uz_size; /* Size inherited from kegs */
|
||||
uint16_t uz_fills; /* Outstanding bucket fills */
|
||||
uint16_t uz_count; /* Highest value ub_ptr can have */
|
||||
|
||||
/*
|
||||
* This HAS to be the last item because we adjust the zone size
|
||||
* based on NCPU and then allocate the space for the zones.
|
||||
*/
|
||||
struct uma_cache uz_cpu[1]; /* Per cpu caches */
|
||||
};
|
||||
|
||||
/*
|
||||
* These flags must not overlap with the UMA_ZONE flags specified in uma.h.
|
||||
*/
|
||||
#define UMA_ZFLAG_BUCKET 0x02000000 /* Bucket zone. */
|
||||
#define UMA_ZFLAG_MULTI 0x04000000 /* Multiple kegs in the zone. */
|
||||
#define UMA_ZFLAG_DRAINING 0x08000000 /* Running zone_drain. */
|
||||
#define UMA_ZFLAG_PRIVALLOC 0x10000000 /* Use uz_allocf. */
|
||||
#define UMA_ZFLAG_INTERNAL 0x20000000 /* No offpage no PCPU. */
|
||||
#define UMA_ZFLAG_FULL 0x40000000 /* Reached uz_maxpages */
|
||||
#define UMA_ZFLAG_CACHEONLY 0x80000000 /* Don't ask VM for buckets. */
|
||||
|
||||
#define UMA_ZFLAG_INHERIT (UMA_ZFLAG_INTERNAL | UMA_ZFLAG_CACHEONLY | \
|
||||
UMA_ZFLAG_BUCKET)
|
||||
|
||||
#ifdef _KERNEL
|
||||
/* Internal prototypes */
|
||||
static __inline uma_slab_t hash_sfind(struct uma_hash *hash, u_int8_t *data);
|
||||
void *uma_large_malloc(int size, int wait);
|
||||
void uma_large_free(uma_slab_t slab);
|
||||
|
||||
/* Lock Macros */
|
||||
|
||||
#define KEG_LOCK_INIT(k, lc) \
|
||||
do { \
|
||||
if ((lc)) \
|
||||
mtx_init(&(k)->uk_lock, (k)->uk_name, \
|
||||
(k)->uk_name, MTX_DEF | MTX_DUPOK); \
|
||||
else \
|
||||
mtx_init(&(k)->uk_lock, (k)->uk_name, \
|
||||
"UMA zone", MTX_DEF | MTX_DUPOK); \
|
||||
} while (0)
|
||||
|
||||
#define KEG_LOCK_FINI(k) mtx_destroy(&(k)->uk_lock)
|
||||
#define KEG_LOCK(k) mtx_lock(&(k)->uk_lock)
|
||||
#define KEG_UNLOCK(k) mtx_unlock(&(k)->uk_lock)
|
||||
#define ZONE_LOCK(z) mtx_lock((z)->uz_lock)
|
||||
#define ZONE_UNLOCK(z) mtx_unlock((z)->uz_lock)
|
||||
|
||||
/*
|
||||
* Find a slab within a hash table. This is used for OFFPAGE zones to lookup
|
||||
* the slab structure.
|
||||
*
|
||||
* Arguments:
|
||||
* hash The hash table to search.
|
||||
* data The base page of the item.
|
||||
*
|
||||
* Returns:
|
||||
* A pointer to a slab if successful, else NULL.
|
||||
*/
|
||||
static __inline uma_slab_t
|
||||
hash_sfind(struct uma_hash *hash, u_int8_t *data)
|
||||
{
|
||||
uma_slab_t slab;
|
||||
int hval;
|
||||
|
||||
hval = UMA_HASH(hash, data);
|
||||
|
||||
SLIST_FOREACH(slab, &hash->uh_slab_hash[hval], us_hlink) {
|
||||
if ((u_int8_t *)slab->us_data == data)
|
||||
return (slab);
|
||||
}
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
#ifndef __rtems__
|
||||
static __inline uma_slab_t
|
||||
vtoslab(vm_offset_t va)
|
||||
{
|
||||
vm_page_t p;
|
||||
uma_slab_t slab;
|
||||
|
||||
p = PHYS_TO_VM_PAGE(pmap_kextract(va));
|
||||
slab = (uma_slab_t )p->object;
|
||||
|
||||
if (p->flags & PG_SLAB)
|
||||
return (slab);
|
||||
else
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
static __inline void
|
||||
vsetslab(vm_offset_t va, uma_slab_t slab)
|
||||
{
|
||||
vm_page_t p;
|
||||
|
||||
p = PHYS_TO_VM_PAGE(pmap_kextract(va));
|
||||
p->object = (vm_object_t)slab;
|
||||
p->flags |= PG_SLAB;
|
||||
}
|
||||
|
||||
static __inline void
|
||||
vsetobj(vm_offset_t va, vm_object_t obj)
|
||||
{
|
||||
vm_page_t p;
|
||||
|
||||
p = PHYS_TO_VM_PAGE(pmap_kextract(va));
|
||||
p->object = obj;
|
||||
p->flags &= ~PG_SLAB;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The following two functions may be defined by architecture specific code
|
||||
* if they can provide more effecient allocation functions. This is useful
|
||||
* for using direct mapped addresses.
|
||||
*/
|
||||
void *uma_small_alloc(uma_zone_t zone, int bytes, u_int8_t *pflag, int wait);
|
||||
void uma_small_free(void *mem, int size, u_int8_t flags);
|
||||
#endif /* _KERNEL */
|
||||
|
||||
#endif /* VM_UMA_INT_H */
|
Reference in New Issue
Block a user