uma.h revision 251826
1139825Simp/*-
2148078Srwatson * Copyright (c) 2002, 2003, 2004, 2005 Jeffrey Roberson <jeff@FreeBSD.org>
3148078Srwatson * Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
4148078Srwatson * All rights reserved.
592654Sjeff *
692654Sjeff * Redistribution and use in source and binary forms, with or without
792654Sjeff * modification, are permitted provided that the following conditions
892654Sjeff * are met:
992654Sjeff * 1. Redistributions of source code must retain the above copyright
1092654Sjeff *    notice unmodified, this list of conditions, and the following
1192654Sjeff *    disclaimer.
1292654Sjeff * 2. Redistributions in binary form must reproduce the above copyright
1392654Sjeff *    notice, this list of conditions and the following disclaimer in the
1492654Sjeff *    documentation and/or other materials provided with the distribution.
1592654Sjeff *
1692654Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1792654Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1892654Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1992654Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2092654Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2192654Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2292654Sjeff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2392654Sjeff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2492654Sjeff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2592654Sjeff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2692654Sjeff *
2792654Sjeff * $FreeBSD: head/sys/vm/uma.h 251826 2013-06-17 03:43:47Z jeff $
2892654Sjeff *
2992654Sjeff */
3092654Sjeff
3192654Sjeff/*
3292654Sjeff * uma.h - External definitions for the Universal Memory Allocator
3392654Sjeff *
3492654Sjeff*/
3592654Sjeff
3692654Sjeff#ifndef VM_UMA_H
3792654Sjeff#define VM_UMA_H
3892654Sjeff
3992654Sjeff#include <sys/param.h>		/* For NULL */
4092654Sjeff#include <sys/malloc.h>		/* For M_* */
4192654Sjeff
42184546Skeramida/* User visible parameters */
4392654Sjeff#define UMA_SMALLEST_UNIT       (PAGE_SIZE / 256) /* Smallest item allocated */
4492654Sjeff
4592654Sjeff/* Types and type defs */
4692654Sjeff
47129906Sbmilekicstruct uma_zone;
4892654Sjeff/* Opaque type used as a handle to the zone */
4992654Sjefftypedef struct uma_zone * uma_zone_t;
5092654Sjeff
51166213Smohansvoid zone_drain(uma_zone_t);
52166213Smohans
53244024Spjd/*
5492654Sjeff * Item constructor
5592654Sjeff *
5692654Sjeff * Arguments:
5792654Sjeff *	item  A pointer to the memory which has been allocated.
5892654Sjeff *	arg   The arg field passed to uma_zalloc_arg
5992654Sjeff *	size  The size of the allocated item
60132987Sgreen *	flags See zalloc flags
61244024Spjd *
6292654Sjeff * Returns:
63132987Sgreen *	0      on success
64132987Sgreen *      errno  on failure
6592654Sjeff *
6692654Sjeff * Discussion:
6792654Sjeff *	The constructor is called just before the memory is returned
68105689Ssheldonh *	to the user. It may block if necessary.
6992654Sjeff */
70132987Sgreentypedef int (*uma_ctor)(void *mem, int size, void *arg, int flags);
7192654Sjeff
7292654Sjeff/*
7392654Sjeff * Item destructor
7492654Sjeff *
7592654Sjeff * Arguments:
7692654Sjeff *	item  A pointer to the memory which has been allocated.
7792654Sjeff *	size  The size of the item being destructed.
7892654Sjeff *	arg   Argument passed through uma_zfree_arg
79244024Spjd *
8092654Sjeff * Returns:
8192654Sjeff *	Nothing
8292654Sjeff *
8392654Sjeff * Discussion:
8492654Sjeff *	The destructor may perform operations that differ from those performed
8592654Sjeff *	by the initializer, but it must leave the object in the same state.
8692654Sjeff *	This IS type stable storage.  This is called after EVERY zfree call.
8792654Sjeff */
8892654Sjefftypedef void (*uma_dtor)(void *mem, int size, void *arg);
8992654Sjeff
90244024Spjd/*
9192654Sjeff * Item initializer
9292654Sjeff *
9392654Sjeff * Arguments:
9492654Sjeff *	item  A pointer to the memory which has been allocated.
9592654Sjeff *	size  The size of the item being initialized.
96132987Sgreen *	flags See zalloc flags
97244024Spjd *
9892654Sjeff * Returns:
99132987Sgreen *	0      on success
100132987Sgreen *      errno  on failure
10192654Sjeff *
10292654Sjeff * Discussion:
103244024Spjd *	The initializer is called when the memory is cached in the uma zone.
104184546Skeramida *	The initializer and the destructor should leave the object in the same
105184546Skeramida *	state.
10692654Sjeff */
107132987Sgreentypedef int (*uma_init)(void *mem, int size, int flags);
10892654Sjeff
10992654Sjeff/*
11092654Sjeff * Item discard function
11192654Sjeff *
11292654Sjeff * Arguments:
113244024Spjd *	item  A pointer to memory which has been 'freed' but has not left the
11492654Sjeff *	      zone's cache.
11592654Sjeff *	size  The size of the item being discarded.
11692654Sjeff *
11792654Sjeff * Returns:
11892654Sjeff *	Nothing
11992654Sjeff *
12092654Sjeff * Discussion:
12192654Sjeff *	This routine is called when memory leaves a zone and is returned to the
122184546Skeramida *	system for other uses.  It is the counter-part to the init function.
12392654Sjeff */
12492654Sjefftypedef void (*uma_fini)(void *mem, int size);
12592654Sjeff
12692654Sjeff/*
127251826Sjeff * Import new memory into a cache zone.
128251826Sjeff */
129251826Sjefftypedef int (*uma_import)(void *arg, void **store, int count, int flags);
130251826Sjeff
131251826Sjeff/*
132251826Sjeff * Free memory from a cache zone.
133251826Sjeff */
134251826Sjefftypedef void (*uma_release)(void *arg, void **store, int count);
135251826Sjeff
136251826Sjeff/*
13792654Sjeff * What's the difference between initializing and constructing?
13892654Sjeff *
139244024Spjd * The item is initialized when it is cached, and this is the state that the
14092654Sjeff * object should be in when returned to the allocator. The purpose of this is
14192654Sjeff * to remove some code which would otherwise be called on each allocation by
14292654Sjeff * utilizing a known, stable state.  This differs from the constructor which
14392654Sjeff * will be called on EVERY allocation.
14492654Sjeff *
145184546Skeramida * For example, in the initializer you may want to initialize embedded locks,
14692654Sjeff * NULL list pointers, set up initial states, magic numbers, etc.  This way if
147105689Ssheldonh * the object is held in the allocator and re-used it won't be necessary to
14892654Sjeff * re-initialize it.
14992654Sjeff *
15092654Sjeff * The constructor may be used to lock a data structure, link it on to lists,
15192654Sjeff * bump reference counts or total counts of outstanding structures, etc.
15292654Sjeff *
15392654Sjeff */
15492654Sjeff
15592654Sjeff
15692654Sjeff/* Function proto types */
15792654Sjeff
15892654Sjeff/*
15992654Sjeff * Create a new uma zone
16092654Sjeff *
16192654Sjeff * Arguments:
162184546Skeramida *	name  The text name of the zone for debugging and stats. This memory
16392654Sjeff *		should not be freed until the zone has been deallocated.
16492654Sjeff *	size  The size of the object that is being created.
165184546Skeramida *	ctor  The constructor that is called when the object is allocated.
16692654Sjeff *	dtor  The destructor that is called when the object is freed.
16792654Sjeff *	init  An initializer that sets up the initial state of the memory.
16892654Sjeff *	fini  A discard function that undoes initialization done by init.
16992654Sjeff *		ctor/dtor/init/fini may all be null, see notes above.
170184546Skeramida *	align A bitmask that corresponds to the requested alignment
17192654Sjeff *		eg 4 would be 0x3
172184546Skeramida *	flags A set of parameters that control the behavior of the zone.
17392654Sjeff *
17492654Sjeff * Returns:
17592654Sjeff *	A pointer to a structure which is intended to be opaque to users of
17692654Sjeff *	the interface.  The value may be null if the wait flag is not set.
17792654Sjeff */
178242152Smdfuma_zone_t uma_zcreate(const char *name, size_t size, uma_ctor ctor,
179242152Smdf		    uma_dtor dtor, uma_init uminit, uma_fini fini,
180249313Sglebius		    int align, uint32_t flags);
18192654Sjeff
182120223Sjeff/*
183129906Sbmilekic * Create a secondary uma zone
184129906Sbmilekic *
185129906Sbmilekic * Arguments:
186184546Skeramida *	name  The text name of the zone for debugging and stats. This memory
187129906Sbmilekic *		should not be freed until the zone has been deallocated.
188184546Skeramida *	ctor  The constructor that is called when the object is allocated.
189129906Sbmilekic *	dtor  The destructor that is called when the object is freed.
190129906Sbmilekic *	zinit  An initializer that sets up the initial state of the memory
191129906Sbmilekic *		as the object passes from the Keg's slab to the Zone's cache.
192129906Sbmilekic *	zfini  A discard function that undoes initialization done by init
193129906Sbmilekic *		as the object passes from the Zone's cache to the Keg's slab.
194129906Sbmilekic *
195129906Sbmilekic *		ctor/dtor/zinit/zfini may all be null, see notes above.
196129906Sbmilekic *		Note that the zinit and zfini specified here are NOT
197129906Sbmilekic *		exactly the same as the init/fini specified to uma_zcreate()
198129906Sbmilekic *		when creating a master zone.  These zinit/zfini are called
199129906Sbmilekic *		on the TRANSITION from keg to zone (and vice-versa). Once
200129906Sbmilekic *		these are set, the primary zone may alter its init/fini
201129906Sbmilekic *		(which are called when the object passes from VM to keg)
202129906Sbmilekic *		using uma_zone_set_init/fini()) as well as its own
203129906Sbmilekic *		zinit/zfini (unset by default for master zone) with
204129906Sbmilekic *		uma_zone_set_zinit/zfini() (note subtle 'z' prefix).
205129906Sbmilekic *
206129913Sbmilekic *	master  A reference to this zone's Master Zone (Primary Zone),
207129913Sbmilekic *		which contains the backing Keg for the Secondary Zone
208129913Sbmilekic *		being added.
209129906Sbmilekic *
210129906Sbmilekic * Returns:
211129906Sbmilekic *	A pointer to a structure which is intended to be opaque to users of
212129906Sbmilekic *	the interface.  The value may be null if the wait flag is not set.
213129906Sbmilekic */
214129906Sbmilekicuma_zone_t uma_zsecond_create(char *name, uma_ctor ctor, uma_dtor dtor,
215129906Sbmilekic		    uma_init zinit, uma_fini zfini, uma_zone_t master);
216129906Sbmilekic
217129906Sbmilekic/*
218187681Sjeff * Add a second master to a secondary zone.  This provides multiple data
219187681Sjeff * backends for objects with the same size.  Both masters must have
220187681Sjeff * compatible allocation flags.  Presently, UMA_ZONE_MALLOC type zones are
221187681Sjeff * the only supported.
222187681Sjeff *
223187681Sjeff * Returns:
224244024Spjd *	Error on failure, 0 on success.
225187681Sjeff */
226187681Sjeffint uma_zsecond_add(uma_zone_t zone, uma_zone_t master);
227187681Sjeff
228187681Sjeff/*
229251826Sjeff * Create cache-only zones.
230251826Sjeff *
231251826Sjeff * This allows uma's per-cpu cache facilities to handle arbitrary
232251826Sjeff * pointers.  Consumers must specify the import and release functions to
233251826Sjeff * fill and destroy caches.  UMA does not allocate any memory for these
234251826Sjeff * zones.  The 'arg' parameter is passed to import/release and is caller
235251826Sjeff * specific.
236251826Sjeff */
237251826Sjeffuma_zone_t uma_zcache_create(char *name, uma_ctor ctor, uma_dtor dtor,
238251826Sjeff		    uma_init zinit, uma_fini zfini, uma_import zimport,
239251826Sjeff		    uma_release zrelease, void *arg, int flags);
240251826Sjeff
241251826Sjeff/*
242120223Sjeff * Definitions for uma_zcreate flags
243120223Sjeff *
244120223Sjeff * These flags share space with UMA_ZFLAGs in uma_int.h.  Be careful not to
245148072Ssilby * overlap when adding new features.  0xf0000000 is in use by uma_int.h.
246120223Sjeff */
24792654Sjeff#define UMA_ZONE_PAGEABLE	0x0001	/* Return items not fully backed by
24892654Sjeff					   physical memory XXX Not yet */
24992654Sjeff#define UMA_ZONE_ZINIT		0x0002	/* Initialize with zeros */
250184546Skeramida#define UMA_ZONE_STATIC		0x0004	/* Statically sized zone */
25192654Sjeff#define UMA_ZONE_OFFPAGE	0x0008	/* Force the slab structure allocation
25292654Sjeff					   off of the real memory */
25392654Sjeff#define UMA_ZONE_MALLOC		0x0010	/* For use by malloc(9) only! */
25492654Sjeff#define UMA_ZONE_NOFREE		0x0020	/* Do not free slabs of this type! */
25595758Sjeff#define UMA_ZONE_MTXCLASS	0x0040	/* Create a new lock class */
256103531Sjeff#define	UMA_ZONE_VM		0x0080	/*
257103531Sjeff					 * Used for internal vm datastructures
258103531Sjeff					 * only.
259103531Sjeff					 */
260103531Sjeff#define	UMA_ZONE_HASH		0x0100	/*
261103531Sjeff					 * Use a hash table instead of caching
262103531Sjeff					 * information in the vm_page.
263103531Sjeff					 */
264129906Sbmilekic#define	UMA_ZONE_SECONDARY	0x0200	/* Zone is a Secondary Zone */
265129906Sbmilekic#define	UMA_ZONE_REFCNT		0x0400	/* Allocate refcnts in slabs */
266129906Sbmilekic#define	UMA_ZONE_MAXBUCKET	0x0800	/* Use largest buckets */
267187681Sjeff#define	UMA_ZONE_CACHESPREAD	0x1000	/*
268187681Sjeff					 * Spread memory start locations across
269187681Sjeff					 * all possible cache lines.  May
270187681Sjeff					 * require many virtually contiguous
271187681Sjeff					 * backend pages and can fail early.
272187681Sjeff					 */
273187681Sjeff#define	UMA_ZONE_VTOSLAB	0x2000	/* Zone uses vtoslab for lookup. */
274230623Skmacy#define	UMA_ZONE_NODUMP		0x4000	/*
275230623Skmacy					 * Zone's pages will not be included in
276230623Skmacy					 * mini-dumps.
277230623Skmacy					 */
278249264Sglebius#define	UMA_ZONE_PCPU		0x8000	/*
279249264Sglebius					 * Allocates mp_ncpus slabs sized to
280249264Sglebius					 * sizeof(struct pcpu).
281249264Sglebius					 */
28292654Sjeff
283187681Sjeff/*
284187681Sjeff * These flags are shared between the keg and zone.  In zones wishing to add
285187681Sjeff * new kegs these flags must be compatible.  Some are determined based on
286187681Sjeff * physical parameters of the request and may not be provided by the consumer.
287187681Sjeff */
288187681Sjeff#define	UMA_ZONE_INHERIT						\
289226313Sglebius    (UMA_ZONE_OFFPAGE | UMA_ZONE_MALLOC | UMA_ZONE_NOFREE |		\
290249264Sglebius    UMA_ZONE_HASH | UMA_ZONE_REFCNT | UMA_ZONE_VTOSLAB | UMA_ZONE_PCPU)
291187681Sjeff
29292654Sjeff/* Definitions for align */
29392654Sjeff#define UMA_ALIGN_PTR	(sizeof(void *) - 1)	/* Alignment fit for ptr */
29492654Sjeff#define UMA_ALIGN_LONG	(sizeof(long) - 1)	/* "" long */
29592654Sjeff#define UMA_ALIGN_INT	(sizeof(int) - 1)	/* "" int */
29692654Sjeff#define UMA_ALIGN_SHORT	(sizeof(short) - 1)	/* "" short */
29792654Sjeff#define UMA_ALIGN_CHAR	(sizeof(char) - 1)	/* "" char */
298166654Srwatson#define UMA_ALIGN_CACHE	(0 - 1)			/* Cache line size align */
29992654Sjeff
30092654Sjeff/*
30194161Sjeff * Destroys an empty uma zone.  If the zone is not empty uma complains loudly.
30292654Sjeff *
30392654Sjeff * Arguments:
30492654Sjeff *	zone  The zone we want to destroy.
30592654Sjeff *
30692654Sjeff */
30794161Sjeffvoid uma_zdestroy(uma_zone_t zone);
30892654Sjeff
30992654Sjeff/*
31092654Sjeff * Allocates an item out of a zone
31192654Sjeff *
31292654Sjeff * Arguments:
31392654Sjeff *	zone  The zone we are allocating from
31492654Sjeff *	arg   This data is passed to the ctor function
31595766Sjeff *	flags See sys/malloc.h for available flags.
31692654Sjeff *
31792654Sjeff * Returns:
318184546Skeramida *	A non-null pointer to an initialized element from the zone is
319184546Skeramida *	guaranteed if the wait flag is M_WAITOK.  Otherwise a null pointer
320184546Skeramida *	may be returned if the zone is empty or the ctor failed.
32192654Sjeff */
32292654Sjeff
32395766Sjeffvoid *uma_zalloc_arg(uma_zone_t zone, void *arg, int flags);
32492654Sjeff
32592654Sjeff/*
32692654Sjeff * Allocates an item out of a zone without supplying an argument
32792654Sjeff *
32892654Sjeff * This is just a wrapper for uma_zalloc_arg for convenience.
32992654Sjeff *
33092654Sjeff */
33195766Sjeffstatic __inline void *uma_zalloc(uma_zone_t zone, int flags);
33292654Sjeff
33392654Sjeffstatic __inline void *
33495766Sjeffuma_zalloc(uma_zone_t zone, int flags)
33592654Sjeff{
33695766Sjeff	return uma_zalloc_arg(zone, NULL, flags);
33792654Sjeff}
33892654Sjeff
33992654Sjeff/*
34092654Sjeff * Frees an item back into the specified zone.
34192654Sjeff *
34292654Sjeff * Arguments:
34392654Sjeff *	zone  The zone the item was originally allocated out of.
34492654Sjeff *	item  The memory to be freed.
34592654Sjeff *	arg   Argument passed to the destructor
34692654Sjeff *
34792654Sjeff * Returns:
34892654Sjeff *	Nothing.
34992654Sjeff */
35092654Sjeff
35192654Sjeffvoid uma_zfree_arg(uma_zone_t zone, void *item, void *arg);
35292654Sjeff
35392654Sjeff/*
35492654Sjeff * Frees an item back to a zone without supplying an argument
35592654Sjeff *
35692654Sjeff * This is just a wrapper for uma_zfree_arg for convenience.
35792654Sjeff *
35892654Sjeff */
35992654Sjeffstatic __inline void uma_zfree(uma_zone_t zone, void *item);
36092654Sjeff
36192654Sjeffstatic __inline void
36292654Sjeffuma_zfree(uma_zone_t zone, void *item)
36392654Sjeff{
364100326Smarkm	uma_zfree_arg(zone, item, NULL);
36592654Sjeff}
36692654Sjeff
36792654Sjeff/*
36892654Sjeff * XXX The rest of the prototypes in this header are h0h0 magic for the VM.
36992654Sjeff * If you think you need to use it for a normal zone you're probably incorrect.
37092654Sjeff */
37192654Sjeff
37292654Sjeff/*
37392654Sjeff * Backend page supplier routines
37492654Sjeff *
37592654Sjeff * Arguments:
376184546Skeramida *	zone  The zone that is requesting pages.
377184546Skeramida *	size  The number of bytes being requested.
37892654Sjeff *	pflag Flags for these memory pages, see below.
37992654Sjeff *	wait  Indicates our willingness to block.
38092654Sjeff *
38192654Sjeff * Returns:
382184546Skeramida *	A pointer to the allocated memory or NULL on failure.
38392654Sjeff */
38492654Sjeff
385249313Sglebiustypedef void *(*uma_alloc)(uma_zone_t zone, int size, uint8_t *pflag, int wait);
38692654Sjeff
38792654Sjeff/*
38892654Sjeff * Backend page free routines
38992654Sjeff *
39092654Sjeff * Arguments:
391184546Skeramida *	item  A pointer to the previously allocated pages.
392184546Skeramida *	size  The original size of the allocation.
393184546Skeramida *	pflag The flags for the slab.  See UMA_SLAB_* below.
39492654Sjeff *
39592654Sjeff * Returns:
39692654Sjeff *	None
39792654Sjeff */
398249313Sglebiustypedef void (*uma_free)(void *item, int size, uint8_t pflag);
39992654Sjeff
40092654Sjeff
40192654Sjeff
40292654Sjeff/*
40392654Sjeff * Sets up the uma allocator. (Called by vm_mem_init)
40492654Sjeff *
40592654Sjeff * Arguments:
40692654Sjeff *	bootmem  A pointer to memory used to bootstrap the system.
40792654Sjeff *
40892654Sjeff * Returns:
40992654Sjeff *	Nothing
41092654Sjeff *
41192654Sjeff * Discussion:
41292654Sjeff *	This memory is used for zones which allocate things before the
41392654Sjeff *	backend page supplier can give us pages.  It should be
414151104Sdes *	UMA_SLAB_SIZE * boot_pages bytes. (see uma_int.h)
41592654Sjeff *
41692654Sjeff */
41792654Sjeff
418151104Sdesvoid uma_startup(void *bootmem, int boot_pages);
41992654Sjeff
42092654Sjeff/*
42192654Sjeff * Finishes starting up the allocator.  This should
42292654Sjeff * be called when kva is ready for normal allocs.
42392654Sjeff *
42492654Sjeff * Arguments:
425103531Sjeff *	None
42692654Sjeff *
42792654Sjeff * Returns:
42892654Sjeff *	Nothing
42992654Sjeff *
43092654Sjeff * Discussion:
431103531Sjeff *	uma_startup2 is called by kmeminit() to enable us of uma for malloc.
43292654Sjeff */
433244024Spjd
434103531Sjeffvoid uma_startup2(void);
43592654Sjeff
43692654Sjeff/*
43792654Sjeff * Reclaims unused memory for all zones
43892654Sjeff *
43992654Sjeff * Arguments:
44092654Sjeff *	None
44192654Sjeff * Returns:
44292654Sjeff *	None
44392654Sjeff *
44492654Sjeff * This should only be called by the page out daemon.
44592654Sjeff */
44692654Sjeff
44792654Sjeffvoid uma_reclaim(void);
44892654Sjeff
44992654Sjeff/*
450166654Srwatson * Sets the alignment mask to be used for all zones requesting cache
451166654Srwatson * alignment.  Should be called by MD boot code prior to starting VM/UMA.
452166654Srwatson *
453166654Srwatson * Arguments:
454166654Srwatson *	align The alignment mask
455166654Srwatson *
456166654Srwatson * Returns:
457166654Srwatson *	Nothing
458166654Srwatson */
459166654Srwatsonvoid uma_set_align(int align);
460166654Srwatson
461166654Srwatson/*
462247360Sattilio * Reserves the maximum KVA space required by the zone and configures the zone
463247360Sattilio * to use a VM_ALLOC_NOOBJ-based backend allocator.
46492654Sjeff *
46592654Sjeff * Arguments:
466184546Skeramida *	zone  The zone to update.
467247360Sattilio *	nitems  The upper limit on the number of items that can be allocated.
46892654Sjeff *
46992654Sjeff * Returns:
470247360Sattilio *	0  if KVA space can not be allocated
47192654Sjeff *	1  if successful
47292654Sjeff *
47392654Sjeff * Discussion:
474247360Sattilio *	When the machine supports a direct map and the zone's items are smaller
475247360Sattilio *	than a page, the zone will use the direct map instead of allocating KVA
476247360Sattilio *	space.
47792654Sjeff */
478247360Sattilioint uma_zone_reserve_kva(uma_zone_t zone, int nitems);
47992654Sjeff
48092758Sjeff/*
48192758Sjeff * Sets a high limit on the number of items allowed in a zone
48292758Sjeff *
48392758Sjeff * Arguments:
48492758Sjeff *	zone  The zone to limit
485213911Slstewart *	nitems  The requested upper limit on the number of items allowed
48692758Sjeff *
48792758Sjeff * Returns:
488213911Slstewart *	int  The effective value of nitems after rounding up based on page size
48992758Sjeff */
490213911Slstewartint uma_zone_set_max(uma_zone_t zone, int nitems);
49192654Sjeff
49292654Sjeff/*
493211396Sandre * Obtains the effective limit on the number of items in a zone
494211396Sandre *
495211396Sandre * Arguments:
496211396Sandre *	zone  The zone to obtain the effective limit from
497211396Sandre *
498211396Sandre * Return:
499211396Sandre *	0  No limit
500211396Sandre *	int  The effective limit of the zone
501211396Sandre */
502211396Sandreint uma_zone_get_max(uma_zone_t zone);
503211396Sandre
504211396Sandre/*
505243998Spjd * Sets a warning to be printed when limit is reached
506243998Spjd *
507243998Spjd * Arguments:
508243998Spjd *	zone  The zone we will warn about
509243998Spjd *	warning  Warning content
510243998Spjd *
511243998Spjd * Returns:
512243998Spjd *	Nothing
513243998Spjd */
514243998Spjdvoid uma_zone_set_warning(uma_zone_t zone, const char *warning);
515243998Spjd
516243998Spjd/*
517213910Slstewart * Obtains the approximate current number of items allocated from a zone
518213910Slstewart *
519213910Slstewart * Arguments:
520213910Slstewart *	zone  The zone to obtain the current allocation count from
521213910Slstewart *
522213910Slstewart * Return:
523213910Slstewart *	int  The approximate current number of items allocated from the zone
524213910Slstewart */
525213910Slstewartint uma_zone_get_cur(uma_zone_t zone);
526213910Slstewart
527213910Slstewart/*
528129906Sbmilekic * The following two routines (uma_zone_set_init/fini)
529129906Sbmilekic * are used to set the backend init/fini pair which acts on an
530129906Sbmilekic * object as it becomes allocated and is placed in a slab within
531129906Sbmilekic * the specified zone's backing keg.  These should probably not
532184546Skeramida * be changed once allocations have already begun, but only be set
533129906Sbmilekic * immediately upon zone creation.
534129906Sbmilekic */
535129906Sbmilekicvoid uma_zone_set_init(uma_zone_t zone, uma_init uminit);
536129906Sbmilekicvoid uma_zone_set_fini(uma_zone_t zone, uma_fini fini);
537129906Sbmilekic
538129906Sbmilekic/*
539129906Sbmilekic * The following two routines (uma_zone_set_zinit/zfini) are
540129906Sbmilekic * used to set the zinit/zfini pair which acts on an object as
541129906Sbmilekic * it passes from the backing Keg's slab cache to the
542129906Sbmilekic * specified Zone's bucket cache.  These should probably not
543184546Skeramida * be changed once allocations have already begun, but only be set
544184546Skeramida * immediately upon zone creation.
545129906Sbmilekic */
546129906Sbmilekicvoid uma_zone_set_zinit(uma_zone_t zone, uma_init zinit);
547129906Sbmilekicvoid uma_zone_set_zfini(uma_zone_t zone, uma_fini zfini);
548129906Sbmilekic
549129906Sbmilekic/*
550247360Sattilio * Replaces the standard backend allocator for this zone.
55192654Sjeff *
55292654Sjeff * Arguments:
553184546Skeramida *	zone   The zone whose backend allocator is being changed.
55492654Sjeff *	allocf A pointer to the allocation function
55592654Sjeff *
55692654Sjeff * Returns:
55792654Sjeff *	Nothing
55892654Sjeff *
55992654Sjeff * Discussion:
56092654Sjeff *	This could be used to implement pageable allocation, or perhaps
56192654Sjeff *	even DMA allocators if used in conjunction with the OFFPAGE
56292654Sjeff *	zone flag.
56392654Sjeff */
56492654Sjeff
56592654Sjeffvoid uma_zone_set_allocf(uma_zone_t zone, uma_alloc allocf);
56692654Sjeff
56792654Sjeff/*
56892654Sjeff * Used for freeing memory provided by the allocf above
56992654Sjeff *
57092654Sjeff * Arguments:
57192654Sjeff *	zone  The zone that intends to use this free routine.
57292654Sjeff *	freef The page freeing routine.
57392654Sjeff *
57492654Sjeff * Returns:
57592654Sjeff *	Nothing
57692654Sjeff */
57792654Sjeff
57892654Sjeffvoid uma_zone_set_freef(uma_zone_t zone, uma_free freef);
57992654Sjeff
58092654Sjeff/*
581184546Skeramida * These flags are setable in the allocf and visible in the freef.
58292654Sjeff */
58392654Sjeff#define UMA_SLAB_BOOT	0x01		/* Slab alloced from boot pages */
58492654Sjeff#define UMA_SLAB_KMEM	0x02		/* Slab alloced from kmem_map */
585177921Salc#define UMA_SLAB_KERNEL	0x04		/* Slab alloced from kernel_map */
58692654Sjeff#define UMA_SLAB_PRIV	0x08		/* Slab alloced from priv allocator */
58794157Sjeff#define UMA_SLAB_OFFP	0x10		/* Slab is managed separately  */
58892654Sjeff#define UMA_SLAB_MALLOC	0x20		/* Slab is a large malloc slab */
58992654Sjeff/* 0x40 and 0x80 are available */
59092654Sjeff
59192654Sjeff/*
59292654Sjeff * Used to pre-fill a zone with some number of items
59392654Sjeff *
59492654Sjeff * Arguments:
59592654Sjeff *	zone    The zone to fill
59692654Sjeff *	itemcnt The number of items to reserve
59792654Sjeff *
59892654Sjeff * Returns:
59992654Sjeff *	Nothing
60092654Sjeff *
60192654Sjeff * NOTE: This is blocking and should only be done at startup
60292654Sjeff */
60392654Sjeffvoid uma_prealloc(uma_zone_t zone, int itemcnt);
60492654Sjeff
605129906Sbmilekic/*
606129906Sbmilekic * Used to lookup the reference counter allocated for an item
607129906Sbmilekic * from a UMA_ZONE_REFCNT zone.  For UMA_ZONE_REFCNT zones,
608129906Sbmilekic * reference counters are allocated for items and stored in
609129906Sbmilekic * the underlying slab header.
610129906Sbmilekic *
611129906Sbmilekic * Arguments:
612244024Spjd *	zone  The UMA_ZONE_REFCNT zone to which the item belongs.
613129906Sbmilekic *	item  The address of the item for which we want a refcnt.
614129906Sbmilekic *
615129906Sbmilekic * Returns:
616249313Sglebius *	A pointer to a uint32_t reference counter.
617129906Sbmilekic */
618249313Sglebiusuint32_t *uma_find_refcnt(uma_zone_t zone, void *item);
61992654Sjeff
620147996Srwatson/*
621165809Sjhb * Used to determine if a fixed-size zone is exhausted.
622165809Sjhb *
623165809Sjhb * Arguments:
624165809Sjhb *	zone    The zone to check
625165809Sjhb *
626165809Sjhb * Returns:
627244024Spjd *	Non-zero if zone is exhausted.
628165809Sjhb */
629165809Sjhbint uma_zone_exhausted(uma_zone_t zone);
630166213Smohansint uma_zone_exhausted_nolock(uma_zone_t zone);
631165809Sjhb
632165809Sjhb/*
633147996Srwatson * Exported statistics structures to be used by user space monitoring tools.
634184546Skeramida * Statistics stream consists of a uma_stream_header, followed by a series of
635184546Skeramida * alternative uma_type_header and uma_type_stat structures.
636147996Srwatson */
637147996Srwatson#define	UMA_STREAM_VERSION	0x00000001
638147996Srwatsonstruct uma_stream_header {
639249313Sglebius	uint32_t	ush_version;	/* Stream format version. */
640249313Sglebius	uint32_t	ush_maxcpus;	/* Value of MAXCPU for stream. */
641249313Sglebius	uint32_t	ush_count;	/* Number of records. */
642249313Sglebius	uint32_t	_ush_pad;	/* Pad/reserved field. */
643147996Srwatson};
644147996Srwatson
645148371Srwatson#define	UTH_MAX_NAME	32
646148371Srwatson#define	UTH_ZONE_SECONDARY	0x00000001
647147996Srwatsonstruct uma_type_header {
648147996Srwatson	/*
649147996Srwatson	 * Static per-zone data, some extracted from the supporting keg.
650147996Srwatson	 */
651148371Srwatson	char		uth_name[UTH_MAX_NAME];
652249313Sglebius	uint32_t	uth_align;	/* Keg: alignment. */
653249313Sglebius	uint32_t	uth_size;	/* Keg: requested size of item. */
654249313Sglebius	uint32_t	uth_rsize;	/* Keg: real size of item. */
655249313Sglebius	uint32_t	uth_maxpages;	/* Keg: maximum number of pages. */
656249313Sglebius	uint32_t	uth_limit;	/* Keg: max items to allocate. */
657147996Srwatson
658147996Srwatson	/*
659147996Srwatson	 * Current dynamic zone/keg-derived statistics.
660147996Srwatson	 */
661249313Sglebius	uint32_t	uth_pages;	/* Keg: pages allocated. */
662249313Sglebius	uint32_t	uth_keg_free;	/* Keg: items free. */
663249313Sglebius	uint32_t	uth_zone_free;	/* Zone: items free. */
664249313Sglebius	uint32_t	uth_bucketsize;	/* Zone: desired bucket size. */
665249313Sglebius	uint32_t	uth_zone_flags;	/* Zone: flags. */
666249313Sglebius	uint64_t	uth_allocs;	/* Zone: number of allocations. */
667249313Sglebius	uint64_t	uth_frees;	/* Zone: number of frees. */
668249313Sglebius	uint64_t	uth_fails;	/* Zone: number of alloc failures. */
669249313Sglebius	uint64_t	uth_sleeps;	/* Zone: number of alloc sleeps. */
670249313Sglebius	uint64_t	_uth_reserved1[2];	/* Reserved. */
671147996Srwatson};
672147996Srwatson
673147996Srwatsonstruct uma_percpu_stat {
674249313Sglebius	uint64_t	ups_allocs;	/* Cache: number of allocations. */
675249313Sglebius	uint64_t	ups_frees;	/* Cache: number of frees. */
676249313Sglebius	uint64_t	ups_cache_free;	/* Cache: free items in cache. */
677249313Sglebius	uint64_t	_ups_reserved[5];	/* Reserved. */
678147996Srwatson};
679147996Srwatson
68092654Sjeff#endif
681