160727d8bSWarner Losh /*-
24d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3fe267a55SPedro F. Giffuni *
408ecce74SRobert Watson * Copyright (c) 2002, 2003, 2004, 2005 Jeffrey Roberson <jeff@FreeBSD.org>
508ecce74SRobert Watson * Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
608ecce74SRobert Watson * All rights reserved.
78355f576SJeff Roberson *
88355f576SJeff Roberson * Redistribution and use in source and binary forms, with or without
98355f576SJeff Roberson * modification, are permitted provided that the following conditions
108355f576SJeff Roberson * are met:
118355f576SJeff Roberson * 1. Redistributions of source code must retain the above copyright
128355f576SJeff Roberson * notice unmodified, this list of conditions, and the following
138355f576SJeff Roberson * disclaimer.
148355f576SJeff Roberson * 2. Redistributions in binary form must reproduce the above copyright
158355f576SJeff Roberson * notice, this list of conditions and the following disclaimer in the
168355f576SJeff Roberson * documentation and/or other materials provided with the distribution.
178355f576SJeff Roberson *
188355f576SJeff Roberson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
198355f576SJeff Roberson * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
208355f576SJeff Roberson * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
218355f576SJeff Roberson * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
228355f576SJeff Roberson * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
238355f576SJeff Roberson * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
248355f576SJeff Roberson * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
258355f576SJeff Roberson * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
268355f576SJeff Roberson * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
278355f576SJeff Roberson * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
288355f576SJeff Roberson *
298355f576SJeff Roberson */
308355f576SJeff Roberson
318355f576SJeff Roberson /*
328355f576SJeff Roberson * uma.h - External definitions for the Universal Memory Allocator
338355f576SJeff Roberson *
348355f576SJeff Roberson */
358355f576SJeff Roberson
36f947570eSGleb Smirnoff #ifndef _VM_UMA_H_
37f947570eSGleb Smirnoff #define _VM_UMA_H_
388355f576SJeff Roberson
398355f576SJeff Roberson #include <sys/param.h> /* For NULL */
408355f576SJeff Roberson #include <sys/malloc.h> /* For M_* */
41d4665eaaSJeff Roberson #include <sys/_smr.h>
428355f576SJeff Roberson
432db63c5eSGiorgos Keramidas /* User visible parameters */
449b8db4d0SRyan Libby #define UMA_SMALLEST_UNIT 8 /* Smallest item allocated */
458355f576SJeff Roberson
468355f576SJeff Roberson /* Types and type defs */
478355f576SJeff Roberson
488355f576SJeff Roberson struct uma_zone;
498355f576SJeff Roberson /* Opaque type used as a handle to the zone */
508355f576SJeff Roberson typedef struct uma_zone * uma_zone_t;
518355f576SJeff Roberson
528355f576SJeff Roberson /*
538355f576SJeff Roberson * Item constructor
548355f576SJeff Roberson *
558355f576SJeff Roberson * Arguments:
568355f576SJeff Roberson * item A pointer to the memory which has been allocated.
578355f576SJeff Roberson * arg The arg field passed to uma_zalloc_arg
588355f576SJeff Roberson * size The size of the allocated item
59b23f72e9SBrian Feldman * flags See zalloc flags
608355f576SJeff Roberson *
618355f576SJeff Roberson * Returns:
62b23f72e9SBrian Feldman * 0 on success
63b23f72e9SBrian Feldman * errno on failure
648355f576SJeff Roberson *
658355f576SJeff Roberson * Discussion:
668355f576SJeff Roberson * The constructor is called just before the memory is returned
6729b4d526SSheldon Hearn * to the user. It may block if necessary.
688355f576SJeff Roberson */
69b23f72e9SBrian Feldman typedef int (*uma_ctor)(void *mem, int size, void *arg, int flags);
708355f576SJeff Roberson
718355f576SJeff Roberson /*
728355f576SJeff Roberson * Item destructor
738355f576SJeff Roberson *
748355f576SJeff Roberson * Arguments:
758355f576SJeff Roberson * item A pointer to the memory which has been allocated.
768355f576SJeff Roberson * size The size of the item being destructed.
778355f576SJeff Roberson * arg Argument passed through uma_zfree_arg
788355f576SJeff Roberson *
798355f576SJeff Roberson * Returns:
808355f576SJeff Roberson * Nothing
818355f576SJeff Roberson *
828355f576SJeff Roberson * Discussion:
838355f576SJeff Roberson * The destructor may perform operations that differ from those performed
848355f576SJeff Roberson * by the initializer, but it must leave the object in the same state.
858355f576SJeff Roberson * This IS type stable storage. This is called after EVERY zfree call.
868355f576SJeff Roberson */
878355f576SJeff Roberson typedef void (*uma_dtor)(void *mem, int size, void *arg);
888355f576SJeff Roberson
898355f576SJeff Roberson /*
908355f576SJeff Roberson * Item initializer
918355f576SJeff Roberson *
928355f576SJeff Roberson * Arguments:
938355f576SJeff Roberson * item A pointer to the memory which has been allocated.
948355f576SJeff Roberson * size The size of the item being initialized.
95b23f72e9SBrian Feldman * flags See zalloc flags
968355f576SJeff Roberson *
978355f576SJeff Roberson * Returns:
98b23f72e9SBrian Feldman * 0 on success
99b23f72e9SBrian Feldman * errno on failure
1008355f576SJeff Roberson *
1018355f576SJeff Roberson * Discussion:
1028355f576SJeff Roberson * The initializer is called when the memory is cached in the uma zone.
1032db63c5eSGiorgos Keramidas * The initializer and the destructor should leave the object in the same
1042db63c5eSGiorgos Keramidas * state.
1058355f576SJeff Roberson */
106b23f72e9SBrian Feldman typedef int (*uma_init)(void *mem, int size, int flags);
1078355f576SJeff Roberson
1088355f576SJeff Roberson /*
1098355f576SJeff Roberson * Item discard function
1108355f576SJeff Roberson *
1118355f576SJeff Roberson * Arguments:
1128355f576SJeff Roberson * item A pointer to memory which has been 'freed' but has not left the
1138355f576SJeff Roberson * zone's cache.
1148355f576SJeff Roberson * size The size of the item being discarded.
1158355f576SJeff Roberson *
1168355f576SJeff Roberson * Returns:
1178355f576SJeff Roberson * Nothing
1188355f576SJeff Roberson *
1198355f576SJeff Roberson * Discussion:
1208355f576SJeff Roberson * This routine is called when memory leaves a zone and is returned to the
1212db63c5eSGiorgos Keramidas * system for other uses. It is the counter-part to the init function.
1228355f576SJeff Roberson */
1238355f576SJeff Roberson typedef void (*uma_fini)(void *mem, int size);
1248355f576SJeff Roberson
1258355f576SJeff Roberson /*
1260095a784SJeff Roberson * Import new memory into a cache zone.
1270095a784SJeff Roberson */
128ab3185d1SJeff Roberson typedef int (*uma_import)(void *arg, void **store, int count, int domain,
129ab3185d1SJeff Roberson int flags);
1300095a784SJeff Roberson
1310095a784SJeff Roberson /*
1320095a784SJeff Roberson * Free memory from a cache zone.
1330095a784SJeff Roberson */
1340095a784SJeff Roberson typedef void (*uma_release)(void *arg, void **store, int count);
1350095a784SJeff Roberson
1360095a784SJeff Roberson /*
1378355f576SJeff Roberson * What's the difference between initializing and constructing?
1388355f576SJeff Roberson *
1398355f576SJeff Roberson * The item is initialized when it is cached, and this is the state that the
1408355f576SJeff Roberson * object should be in when returned to the allocator. The purpose of this is
1418355f576SJeff Roberson * to remove some code which would otherwise be called on each allocation by
1428355f576SJeff Roberson * utilizing a known, stable state. This differs from the constructor which
1438355f576SJeff Roberson * will be called on EVERY allocation.
1448355f576SJeff Roberson *
1452db63c5eSGiorgos Keramidas * For example, in the initializer you may want to initialize embedded locks,
1468355f576SJeff Roberson * NULL list pointers, set up initial states, magic numbers, etc. This way if
14729b4d526SSheldon Hearn * the object is held in the allocator and re-used it won't be necessary to
1488355f576SJeff Roberson * re-initialize it.
1498355f576SJeff Roberson *
1508355f576SJeff Roberson * The constructor may be used to lock a data structure, link it on to lists,
1518355f576SJeff Roberson * bump reference counts or total counts of outstanding structures, etc.
1528355f576SJeff Roberson *
1538355f576SJeff Roberson */
1548355f576SJeff Roberson
1558355f576SJeff Roberson /* Function proto types */
1568355f576SJeff Roberson
1578355f576SJeff Roberson /*
1588355f576SJeff Roberson * Create a new uma zone
1598355f576SJeff Roberson *
1608355f576SJeff Roberson * Arguments:
1612db63c5eSGiorgos Keramidas * name The text name of the zone for debugging and stats. This memory
1628355f576SJeff Roberson * should not be freed until the zone has been deallocated.
1638355f576SJeff Roberson * size The size of the object that is being created.
1642db63c5eSGiorgos Keramidas * ctor The constructor that is called when the object is allocated.
1658355f576SJeff Roberson * dtor The destructor that is called when the object is freed.
1668355f576SJeff Roberson * init An initializer that sets up the initial state of the memory.
1678355f576SJeff Roberson * fini A discard function that undoes initialization done by init.
1688355f576SJeff Roberson * ctor/dtor/init/fini may all be null, see notes above.
1692db63c5eSGiorgos Keramidas * align A bitmask that corresponds to the requested alignment
1708355f576SJeff Roberson * eg 4 would be 0x3
1712db63c5eSGiorgos Keramidas * flags A set of parameters that control the behavior of the zone.
1728355f576SJeff Roberson *
1738355f576SJeff Roberson * Returns:
1748355f576SJeff Roberson * A pointer to a structure which is intended to be opaque to users of
1758355f576SJeff Roberson * the interface. The value may be null if the wait flag is not set.
1768355f576SJeff Roberson */
177bb196eb4SMatthew D Fleming uma_zone_t uma_zcreate(const char *name, size_t size, uma_ctor ctor,
178bb196eb4SMatthew D Fleming uma_dtor dtor, uma_init uminit, uma_fini fini,
17985dcf349SGleb Smirnoff int align, uint32_t flags);
1808355f576SJeff Roberson
181b60f5b79SJeff Roberson /*
182099a0e58SBosko Milekic * Create a secondary uma zone
183099a0e58SBosko Milekic *
184099a0e58SBosko Milekic * Arguments:
1852db63c5eSGiorgos Keramidas * name The text name of the zone for debugging and stats. This memory
186099a0e58SBosko Milekic * should not be freed until the zone has been deallocated.
1872db63c5eSGiorgos Keramidas * ctor The constructor that is called when the object is allocated.
188099a0e58SBosko Milekic * dtor The destructor that is called when the object is freed.
189099a0e58SBosko Milekic * zinit An initializer that sets up the initial state of the memory
190099a0e58SBosko Milekic * as the object passes from the Keg's slab to the Zone's cache.
191099a0e58SBosko Milekic * zfini A discard function that undoes initialization done by init
192099a0e58SBosko Milekic * as the object passes from the Zone's cache to the Keg's slab.
193099a0e58SBosko Milekic *
194099a0e58SBosko Milekic * ctor/dtor/zinit/zfini may all be null, see notes above.
195099a0e58SBosko Milekic * Note that the zinit and zfini specified here are NOT
196099a0e58SBosko Milekic * exactly the same as the init/fini specified to uma_zcreate()
197c8b0a88bSJeff Roberson * when creating a primary zone. These zinit/zfini are called
198099a0e58SBosko Milekic * on the TRANSITION from keg to zone (and vice-versa). Once
199099a0e58SBosko Milekic * these are set, the primary zone may alter its init/fini
200099a0e58SBosko Milekic * (which are called when the object passes from VM to keg)
201099a0e58SBosko Milekic * using uma_zone_set_init/fini()) as well as its own
202c8b0a88bSJeff Roberson * zinit/zfini (unset by default for primary zone) with
203099a0e58SBosko Milekic * uma_zone_set_zinit/zfini() (note subtle 'z' prefix).
204099a0e58SBosko Milekic *
205c8b0a88bSJeff Roberson * primary A reference to this zone's Primary Zone which contains the
206c8b0a88bSJeff Roberson * backing Keg for the Secondary Zone being added.
207099a0e58SBosko Milekic *
208099a0e58SBosko Milekic * Returns:
209099a0e58SBosko Milekic * A pointer to a structure which is intended to be opaque to users of
210099a0e58SBosko Milekic * the interface. The value may be null if the wait flag is not set.
211099a0e58SBosko Milekic */
2120464f16eSMark Johnston uma_zone_t uma_zsecond_create(const char *name, uma_ctor ctor, uma_dtor dtor,
213c8b0a88bSJeff Roberson uma_init zinit, uma_fini zfini, uma_zone_t primary);
214099a0e58SBosko Milekic
215099a0e58SBosko Milekic /*
2160095a784SJeff Roberson * Create cache-only zones.
2170095a784SJeff Roberson *
2180095a784SJeff Roberson * This allows uma's per-cpu cache facilities to handle arbitrary
2190095a784SJeff Roberson * pointers. Consumers must specify the import and release functions to
2200095a784SJeff Roberson * fill and destroy caches. UMA does not allocate any memory for these
2210095a784SJeff Roberson * zones. The 'arg' parameter is passed to import/release and is caller
2220095a784SJeff Roberson * specific.
2230095a784SJeff Roberson */
2240464f16eSMark Johnston uma_zone_t uma_zcache_create(const char *name, int size, uma_ctor ctor,
2250464f16eSMark Johnston uma_dtor dtor, uma_init zinit, uma_fini zfini, uma_import zimport,
2260095a784SJeff Roberson uma_release zrelease, void *arg, int flags);
2270095a784SJeff Roberson
2280095a784SJeff Roberson /*
229b60f5b79SJeff Roberson * Definitions for uma_zcreate flags
230b60f5b79SJeff Roberson *
231b60f5b79SJeff Roberson * These flags share space with UMA_ZFLAGs in uma_int.h. Be careful not to
23254c5ae80SRyan Libby * overlap when adding new features.
233b60f5b79SJeff Roberson */
234389a3fa6SMark Johnston #define UMA_ZONE_UNMANAGED 0x0001 /*
235389a3fa6SMark Johnston * Don't regulate the cache size, even
236389a3fa6SMark Johnston * under memory pressure.
237389a3fa6SMark Johnston */
2388355f576SJeff Roberson #define UMA_ZONE_ZINIT 0x0002 /* Initialize with zeros */
239ec0d8280SRyan Libby #define UMA_ZONE_CONTIG 0x0004 /*
240ec0d8280SRyan Libby * Physical memory underlying an object
241ec0d8280SRyan Libby * must be contiguous.
242ec0d8280SRyan Libby */
24354c5ae80SRyan Libby #define UMA_ZONE_NOTOUCH 0x0008 /* UMA may not access the memory */
2448355f576SJeff Roberson #define UMA_ZONE_MALLOC 0x0010 /* For use by malloc(9) only! */
2458355f576SJeff Roberson #define UMA_ZONE_NOFREE 0x0020 /* Do not free slabs of this type! */
24628bc4419SJeff Roberson #define UMA_ZONE_MTXCLASS 0x0040 /* Create a new lock class */
24799571dc3SJeff Roberson #define UMA_ZONE_VM 0x0080 /*
24899571dc3SJeff Roberson * Used for internal vm datastructures
24999571dc3SJeff Roberson * only.
25099571dc3SJeff Roberson */
25154c5ae80SRyan Libby #define UMA_ZONE_NOTPAGE 0x0100 /* allocf memory not vm pages */
252099a0e58SBosko Milekic #define UMA_ZONE_SECONDARY 0x0200 /* Zone is a Secondary Zone */
2537e28037aSMark Johnston #define UMA_ZONE_NOBUCKET 0x0400 /* Do not use buckets. */
2547e28037aSMark Johnston #define UMA_ZONE_MAXBUCKET 0x0800 /* Use largest buckets. */
255*cf907074SAndrew Gallatin #define UMA_ZONE_NOTRIM 0x1000 /* Don't trim this zone */
25654c5ae80SRyan Libby #define UMA_ZONE_CACHESPREAD 0x2000 /*
257e20a199fSJeff Roberson * Spread memory start locations across
258e20a199fSJeff Roberson * all possible cache lines. May
259e20a199fSJeff Roberson * require many virtually contiguous
260e20a199fSJeff Roberson * backend pages and can fail early.
261e20a199fSJeff Roberson */
262263811f7SKip Macy #define UMA_ZONE_NODUMP 0x4000 /*
263263811f7SKip Macy * Zone's pages will not be included in
264263811f7SKip Macy * mini-dumps.
265263811f7SKip Macy */
266ad97af7eSGleb Smirnoff #define UMA_ZONE_PCPU 0x8000 /*
267d4665eaaSJeff Roberson * Allocates mp_maxid + 1 slabs of
268d4665eaaSJeff Roberson * PAGE_SIZE
269ad97af7eSGleb Smirnoff */
27054c5ae80SRyan Libby #define UMA_ZONE_FIRSTTOUCH 0x10000 /* First touch NUMA policy */
27154c5ae80SRyan Libby #define UMA_ZONE_ROUNDROBIN 0x20000 /* Round-robin NUMA policy. */
272d4665eaaSJeff Roberson #define UMA_ZONE_SMR 0x40000 /*
273d4665eaaSJeff Roberson * Safe memory reclamation defers
274d4665eaaSJeff Roberson * frees until all read sections
275d4665eaaSJeff Roberson * have exited. This flag creates
276d4665eaaSJeff Roberson * a unique SMR context for this
277d4665eaaSJeff Roberson * zone. To share contexts see
278d4665eaaSJeff Roberson * uma_zone_set_smr() below.
279d4665eaaSJeff Roberson *
280d4665eaaSJeff Roberson * See sys/smr.h for more details.
281d4665eaaSJeff Roberson */
28209c8cb71SMark Johnston #define UMA_ZONE_NOKASAN 0x80000 /*
28309c8cb71SMark Johnston * Disable KASAN verification. This is
28409c8cb71SMark Johnston * implied by NOFREE. Cache zones are
28509c8cb71SMark Johnston * not verified by default.
28609c8cb71SMark Johnston */
28754c5ae80SRyan Libby /* In use by UMA_ZFLAGs: 0xffe00000 */
288e20a199fSJeff Roberson
289e20a199fSJeff Roberson /*
290d4665eaaSJeff Roberson * These flags are shared between the keg and zone. Some are determined
291d4665eaaSJeff Roberson * based on physical parameters of the request and may not be provided by
292d4665eaaSJeff Roberson * the consumer.
293e20a199fSJeff Roberson */
294e20a199fSJeff Roberson #define UMA_ZONE_INHERIT \
29554c5ae80SRyan Libby (UMA_ZONE_NOTOUCH | UMA_ZONE_MALLOC | UMA_ZONE_NOFREE | \
296bae55c4aSRyan Libby UMA_ZONE_VM | UMA_ZONE_NOTPAGE | UMA_ZONE_PCPU | \
29709c8cb71SMark Johnston UMA_ZONE_FIRSTTOUCH | UMA_ZONE_ROUNDROBIN | UMA_ZONE_NOKASAN)
2988355f576SJeff Roberson
2998355f576SJeff Roberson /* Definitions for align */
3008355f576SJeff Roberson #define UMA_ALIGN_PTR (sizeof(void *) - 1) /* Alignment fit for ptr */
3018355f576SJeff Roberson #define UMA_ALIGN_LONG (sizeof(long) - 1) /* "" long */
3028355f576SJeff Roberson #define UMA_ALIGN_INT (sizeof(int) - 1) /* "" int */
3038355f576SJeff Roberson #define UMA_ALIGN_SHORT (sizeof(short) - 1) /* "" short */
3048355f576SJeff Roberson #define UMA_ALIGN_CHAR (sizeof(char) - 1) /* "" char */
305e557eafeSOlivier Certner #define UMA_ALIGN_CACHE (uma_get_cache_align_mask()) /* Cache line size align */
306733e0abdSOlivier Certner /* Align both to cache line size and an explicit alignment (through mask). */
307733e0abdSOlivier Certner #define UMA_ALIGN_CACHE_AND_MASK(mask) (uma_get_cache_align_mask() | (mask))
30814c510c0SJohn Baldwin #define UMA_ALIGNOF(type) (_Alignof(type) - 1) /* Alignment fit for 'type' */
3098355f576SJeff Roberson
310b48d4efeSMark Johnston #define UMA_ANYDOMAIN -1 /* Special value for domain search. */
311b48d4efeSMark Johnston
3128355f576SJeff Roberson /*
3139c2cd7e5SJeff Roberson * Destroys an empty uma zone. If the zone is not empty uma complains loudly.
3148355f576SJeff Roberson *
3158355f576SJeff Roberson * Arguments:
3168355f576SJeff Roberson * zone The zone we want to destroy.
3178355f576SJeff Roberson *
3188355f576SJeff Roberson */
3199c2cd7e5SJeff Roberson void uma_zdestroy(uma_zone_t zone);
3208355f576SJeff Roberson
3218355f576SJeff Roberson /*
3228355f576SJeff Roberson * Allocates an item out of a zone
3238355f576SJeff Roberson *
3248355f576SJeff Roberson * Arguments:
3258355f576SJeff Roberson * zone The zone we are allocating from
3268355f576SJeff Roberson * arg This data is passed to the ctor function
3272cc35ff9SJeff Roberson * flags See sys/malloc.h for available flags.
3288355f576SJeff Roberson *
3298355f576SJeff Roberson * Returns:
3302db63c5eSGiorgos Keramidas * A non-null pointer to an initialized element from the zone is
3312db63c5eSGiorgos Keramidas * guaranteed if the wait flag is M_WAITOK. Otherwise a null pointer
3322db63c5eSGiorgos Keramidas * may be returned if the zone is empty or the ctor failed.
3338355f576SJeff Roberson */
3348355f576SJeff Roberson
3352cc35ff9SJeff Roberson void *uma_zalloc_arg(uma_zone_t zone, void *arg, int flags);
336d4665eaaSJeff Roberson
337d4665eaaSJeff Roberson /* Allocate per-cpu data. Access the correct data with zpcpu_get(). */
3384e180881SMateusz Guzik void *uma_zalloc_pcpu_arg(uma_zone_t zone, void *arg, int flags);
3398355f576SJeff Roberson
340d4665eaaSJeff Roberson /* Use with SMR zones. */
341d4665eaaSJeff Roberson void *uma_zalloc_smr(uma_zone_t zone, int flags);
342d4665eaaSJeff Roberson
3438355f576SJeff Roberson /*
344ab3185d1SJeff Roberson * Allocate an item from a specific NUMA domain. This uses a slow path in
345ab3185d1SJeff Roberson * the allocator but is guaranteed to allocate memory from the requested
346ab3185d1SJeff Roberson * domain if M_WAITOK is set.
347ab3185d1SJeff Roberson *
348ab3185d1SJeff Roberson * Arguments:
349ab3185d1SJeff Roberson * zone The zone we are allocating from
350ab3185d1SJeff Roberson * arg This data is passed to the ctor function
351ab3185d1SJeff Roberson * domain The domain to allocate from.
352ab3185d1SJeff Roberson * flags See sys/malloc.h for available flags.
353ab3185d1SJeff Roberson */
354ab3185d1SJeff Roberson void *uma_zalloc_domain(uma_zone_t zone, void *arg, int domain, int flags);
355ab3185d1SJeff Roberson
356ab3185d1SJeff Roberson /*
3578355f576SJeff Roberson * Allocates an item out of a zone without supplying an argument
3588355f576SJeff Roberson *
3598355f576SJeff Roberson * This is just a wrapper for uma_zalloc_arg for convenience.
3608355f576SJeff Roberson *
3618355f576SJeff Roberson */
3622cc35ff9SJeff Roberson static __inline void *uma_zalloc(uma_zone_t zone, int flags);
3634e180881SMateusz Guzik static __inline void *uma_zalloc_pcpu(uma_zone_t zone, int flags);
3648355f576SJeff Roberson
3658355f576SJeff Roberson static __inline void *
uma_zalloc(uma_zone_t zone,int flags)3662cc35ff9SJeff Roberson uma_zalloc(uma_zone_t zone, int flags)
3678355f576SJeff Roberson {
3682cc35ff9SJeff Roberson return uma_zalloc_arg(zone, NULL, flags);
3698355f576SJeff Roberson }
3708355f576SJeff Roberson
3714e180881SMateusz Guzik static __inline void *
uma_zalloc_pcpu(uma_zone_t zone,int flags)3724e180881SMateusz Guzik uma_zalloc_pcpu(uma_zone_t zone, int flags)
3734e180881SMateusz Guzik {
3744e180881SMateusz Guzik return uma_zalloc_pcpu_arg(zone, NULL, flags);
3754e180881SMateusz Guzik }
3764e180881SMateusz Guzik
3778355f576SJeff Roberson /*
3788355f576SJeff Roberson * Frees an item back into the specified zone.
3798355f576SJeff Roberson *
3808355f576SJeff Roberson * Arguments:
3818355f576SJeff Roberson * zone The zone the item was originally allocated out of.
3828355f576SJeff Roberson * item The memory to be freed.
3838355f576SJeff Roberson * arg Argument passed to the destructor
3848355f576SJeff Roberson *
3858355f576SJeff Roberson * Returns:
3868355f576SJeff Roberson * Nothing.
3878355f576SJeff Roberson */
3888355f576SJeff Roberson
3898355f576SJeff Roberson void uma_zfree_arg(uma_zone_t zone, void *item, void *arg);
390d4665eaaSJeff Roberson
391d4665eaaSJeff Roberson /* Use with PCPU zones. */
3924e180881SMateusz Guzik void uma_zfree_pcpu_arg(uma_zone_t zone, void *item, void *arg);
3938355f576SJeff Roberson
394d4665eaaSJeff Roberson /* Use with SMR zones. */
395d4665eaaSJeff Roberson void uma_zfree_smr(uma_zone_t zone, void *item);
396d4665eaaSJeff Roberson
3978355f576SJeff Roberson /*
3988355f576SJeff Roberson * Frees an item back to a zone without supplying an argument
3998355f576SJeff Roberson *
4008355f576SJeff Roberson * This is just a wrapper for uma_zfree_arg for convenience.
4018355f576SJeff Roberson *
4028355f576SJeff Roberson */
4038355f576SJeff Roberson static __inline void uma_zfree(uma_zone_t zone, void *item);
4044e180881SMateusz Guzik static __inline void uma_zfree_pcpu(uma_zone_t zone, void *item);
4058355f576SJeff Roberson
4068355f576SJeff Roberson static __inline void
uma_zfree(uma_zone_t zone,void * item)4078355f576SJeff Roberson uma_zfree(uma_zone_t zone, void *item)
4088355f576SJeff Roberson {
409f6e34b82SMark Murray uma_zfree_arg(zone, item, NULL);
4108355f576SJeff Roberson }
4118355f576SJeff Roberson
4124e180881SMateusz Guzik static __inline void
uma_zfree_pcpu(uma_zone_t zone,void * item)4134e180881SMateusz Guzik uma_zfree_pcpu(uma_zone_t zone, void *item)
4144e180881SMateusz Guzik {
4154e180881SMateusz Guzik uma_zfree_pcpu_arg(zone, item, NULL);
4164e180881SMateusz Guzik }
4174e180881SMateusz Guzik
4188355f576SJeff Roberson /*
4198d6fbbb8SJeff Roberson * Wait until the specified zone can allocate an item.
4208d6fbbb8SJeff Roberson */
4218d6fbbb8SJeff Roberson void uma_zwait(uma_zone_t zone);
4228d6fbbb8SJeff Roberson
4238d6fbbb8SJeff Roberson /*
4248355f576SJeff Roberson * Backend page supplier routines
4258355f576SJeff Roberson *
4268355f576SJeff Roberson * Arguments:
4272db63c5eSGiorgos Keramidas * zone The zone that is requesting pages.
4282db63c5eSGiorgos Keramidas * size The number of bytes being requested.
4298355f576SJeff Roberson * pflag Flags for these memory pages, see below.
430ab3185d1SJeff Roberson * domain The NUMA domain that we prefer for this allocation.
4318355f576SJeff Roberson * wait Indicates our willingness to block.
4328355f576SJeff Roberson *
4338355f576SJeff Roberson * Returns:
4342db63c5eSGiorgos Keramidas * A pointer to the allocated memory or NULL on failure.
4358355f576SJeff Roberson */
4368355f576SJeff Roberson
437ab3185d1SJeff Roberson typedef void *(*uma_alloc)(uma_zone_t zone, vm_size_t size, int domain,
438ab3185d1SJeff Roberson uint8_t *pflag, int wait);
4398355f576SJeff Roberson
4408355f576SJeff Roberson /*
4418355f576SJeff Roberson * Backend page free routines
4428355f576SJeff Roberson *
4438355f576SJeff Roberson * Arguments:
4442db63c5eSGiorgos Keramidas * item A pointer to the previously allocated pages.
4452db63c5eSGiorgos Keramidas * size The original size of the allocation.
4462db63c5eSGiorgos Keramidas * pflag The flags for the slab. See UMA_SLAB_* below.
4478355f576SJeff Roberson *
4488355f576SJeff Roberson * Returns:
4498355f576SJeff Roberson * None
4508355f576SJeff Roberson */
451f2c2231eSRyan Stone typedef void (*uma_free)(void *item, vm_size_t size, uint8_t pflag);
4528355f576SJeff Roberson
4538355f576SJeff Roberson /*
454aabe13f1SMark Johnston * Reclaims unused memory. If no NUMA domain is specified, memory from all
455aabe13f1SMark Johnston * domains is reclaimed.
4568355f576SJeff Roberson *
4578355f576SJeff Roberson * Arguments:
45808cfa56eSMark Johnston * req Reclamation request type.
459aabe13f1SMark Johnston * domain The target NUMA domain.
4608355f576SJeff Roberson * Returns:
4618355f576SJeff Roberson * None
4628355f576SJeff Roberson */
46308cfa56eSMark Johnston #define UMA_RECLAIM_DRAIN 1 /* release bucket cache */
46408cfa56eSMark Johnston #define UMA_RECLAIM_DRAIN_CPU 2 /* release bucket and per-CPU caches */
46508cfa56eSMark Johnston #define UMA_RECLAIM_TRIM 3 /* trim bucket cache to WSS */
46608cfa56eSMark Johnston void uma_reclaim(int req);
467aabe13f1SMark Johnston void uma_reclaim_domain(int req, int domain);
46808cfa56eSMark Johnston void uma_zone_reclaim(uma_zone_t, int req);
469aabe13f1SMark Johnston void uma_zone_reclaim_domain(uma_zone_t, int req, int domain);
4708355f576SJeff Roberson
4718355f576SJeff Roberson /*
4721e319f6dSRobert Watson * Sets the alignment mask to be used for all zones requesting cache
4731e319f6dSRobert Watson * alignment. Should be called by MD boot code prior to starting VM/UMA.
4741e319f6dSRobert Watson *
4751e319f6dSRobert Watson * Arguments:
476dc8f7692SOlivier Certner * mask The alignment mask
4771e319f6dSRobert Watson *
4781e319f6dSRobert Watson * Returns:
4791e319f6dSRobert Watson * Nothing
4801e319f6dSRobert Watson */
4813d8f548bSOlivier Certner void uma_set_cache_align_mask(unsigned int mask);
482dc8f7692SOlivier Certner
483dc8f7692SOlivier Certner #include <vm/uma_align_mask.h>
4841e319f6dSRobert Watson
4851e319f6dSRobert Watson /*
4866fd34d6fSJeff Roberson * Set a reserved number of items to hold for M_USE_RESERVE allocations. All
4876fd34d6fSJeff Roberson * other requests must allocate new backing pages.
4886fd34d6fSJeff Roberson */
4896fd34d6fSJeff Roberson void uma_zone_reserve(uma_zone_t zone, int nitems);
4906fd34d6fSJeff Roberson
4916fd34d6fSJeff Roberson /*
492a4915c21SAttilio Rao * Reserves the maximum KVA space required by the zone and configures the zone
493a9d6f1feSMark Johnston * to use a backend that allocates physical memory and maps it using the
494a9d6f1feSMark Johnston * reserved KVA.
4958355f576SJeff Roberson *
4968355f576SJeff Roberson * Arguments:
4972db63c5eSGiorgos Keramidas * zone The zone to update.
498a4915c21SAttilio Rao * nitems The upper limit on the number of items that can be allocated.
4998355f576SJeff Roberson *
5008355f576SJeff Roberson * Returns:
501a4915c21SAttilio Rao * 0 if KVA space can not be allocated
5028355f576SJeff Roberson * 1 if successful
5038355f576SJeff Roberson *
5048355f576SJeff Roberson * Discussion:
505a4915c21SAttilio Rao * When the machine supports a direct map and the zone's items are smaller
506a4915c21SAttilio Rao * than a page, the zone will use the direct map instead of allocating KVA
507a4915c21SAttilio Rao * space.
5088355f576SJeff Roberson */
509a4915c21SAttilio Rao int uma_zone_reserve_kva(uma_zone_t zone, int nitems);
5108355f576SJeff Roberson
511736ee590SJeff Roberson /*
512e574d407SMark Johnston * Sets an upper limit on the number of items allocated from a zone
513736ee590SJeff Roberson *
514736ee590SJeff Roberson * Arguments:
515736ee590SJeff Roberson * zone The zone to limit
5161c6cae97SLawrence Stewart * nitems The requested upper limit on the number of items allowed
517736ee590SJeff Roberson *
518736ee590SJeff Roberson * Returns:
519003cf08bSMark Johnston * int The effective value of nitems
520736ee590SJeff Roberson */
5211c6cae97SLawrence Stewart int uma_zone_set_max(uma_zone_t zone, int nitems);
5228355f576SJeff Roberson
5238355f576SJeff Roberson /*
524e574d407SMark Johnston * Sets an upper limit on the number of items allowed in zone's caches
525bb15d1c7SGleb Smirnoff *
526bb15d1c7SGleb Smirnoff * Arguments:
527bb15d1c7SGleb Smirnoff * zone The zone to limit
528bb15d1c7SGleb Smirnoff * nitems The requested upper limit on the number of items allowed
529bb15d1c7SGleb Smirnoff */
530003cf08bSMark Johnston void uma_zone_set_maxcache(uma_zone_t zone, int nitems);
531bb15d1c7SGleb Smirnoff
532bb15d1c7SGleb Smirnoff /*
533e49471b0SAndre Oppermann * Obtains the effective limit on the number of items in a zone
534e49471b0SAndre Oppermann *
535e49471b0SAndre Oppermann * Arguments:
536e49471b0SAndre Oppermann * zone The zone to obtain the effective limit from
537e49471b0SAndre Oppermann *
538e49471b0SAndre Oppermann * Return:
539e49471b0SAndre Oppermann * 0 No limit
540e49471b0SAndre Oppermann * int The effective limit of the zone
541e49471b0SAndre Oppermann */
542e49471b0SAndre Oppermann int uma_zone_get_max(uma_zone_t zone);
543e49471b0SAndre Oppermann
544e49471b0SAndre Oppermann /*
5452f891cd5SPawel Jakub Dawidek * Sets a warning to be printed when limit is reached
5462f891cd5SPawel Jakub Dawidek *
5472f891cd5SPawel Jakub Dawidek * Arguments:
5482f891cd5SPawel Jakub Dawidek * zone The zone we will warn about
5492f891cd5SPawel Jakub Dawidek * warning Warning content
5502f891cd5SPawel Jakub Dawidek *
5512f891cd5SPawel Jakub Dawidek * Returns:
5522f891cd5SPawel Jakub Dawidek * Nothing
5532f891cd5SPawel Jakub Dawidek */
5542f891cd5SPawel Jakub Dawidek void uma_zone_set_warning(uma_zone_t zone, const char *warning);
5552f891cd5SPawel Jakub Dawidek
5562f891cd5SPawel Jakub Dawidek /*
55754503a13SJonathan T. Looney * Sets a function to run when limit is reached
55854503a13SJonathan T. Looney *
55954503a13SJonathan T. Looney * Arguments:
56054503a13SJonathan T. Looney * zone The zone to which this applies
56154503a13SJonathan T. Looney * fx The function ro run
56254503a13SJonathan T. Looney *
56354503a13SJonathan T. Looney * Returns:
56454503a13SJonathan T. Looney * Nothing
56554503a13SJonathan T. Looney */
566e60b2fcbSGleb Smirnoff typedef void (*uma_maxaction_t)(uma_zone_t, int);
56754503a13SJonathan T. Looney void uma_zone_set_maxaction(uma_zone_t zone, uma_maxaction_t);
56854503a13SJonathan T. Looney
56954503a13SJonathan T. Looney /*
570c4ae7908SLawrence Stewart * Obtains the approximate current number of items allocated from a zone
571c4ae7908SLawrence Stewart *
572c4ae7908SLawrence Stewart * Arguments:
573c4ae7908SLawrence Stewart * zone The zone to obtain the current allocation count from
574c4ae7908SLawrence Stewart *
575c4ae7908SLawrence Stewart * Return:
576c4ae7908SLawrence Stewart * int The approximate current number of items allocated from the zone
577c4ae7908SLawrence Stewart */
578c4ae7908SLawrence Stewart int uma_zone_get_cur(uma_zone_t zone);
579c4ae7908SLawrence Stewart
580c4ae7908SLawrence Stewart /*
581099a0e58SBosko Milekic * The following two routines (uma_zone_set_init/fini)
582099a0e58SBosko Milekic * are used to set the backend init/fini pair which acts on an
583099a0e58SBosko Milekic * object as it becomes allocated and is placed in a slab within
584099a0e58SBosko Milekic * the specified zone's backing keg. These should probably not
5852db63c5eSGiorgos Keramidas * be changed once allocations have already begun, but only be set
586099a0e58SBosko Milekic * immediately upon zone creation.
587099a0e58SBosko Milekic */
588099a0e58SBosko Milekic void uma_zone_set_init(uma_zone_t zone, uma_init uminit);
589099a0e58SBosko Milekic void uma_zone_set_fini(uma_zone_t zone, uma_fini fini);
590099a0e58SBosko Milekic
591099a0e58SBosko Milekic /*
592099a0e58SBosko Milekic * The following two routines (uma_zone_set_zinit/zfini) are
593099a0e58SBosko Milekic * used to set the zinit/zfini pair which acts on an object as
594099a0e58SBosko Milekic * it passes from the backing Keg's slab cache to the
595099a0e58SBosko Milekic * specified Zone's bucket cache. These should probably not
5962db63c5eSGiorgos Keramidas * be changed once allocations have already begun, but only be set
5972db63c5eSGiorgos Keramidas * immediately upon zone creation.
598099a0e58SBosko Milekic */
599099a0e58SBosko Milekic void uma_zone_set_zinit(uma_zone_t zone, uma_init zinit);
600099a0e58SBosko Milekic void uma_zone_set_zfini(uma_zone_t zone, uma_fini zfini);
601099a0e58SBosko Milekic
602099a0e58SBosko Milekic /*
603a4915c21SAttilio Rao * Replaces the standard backend allocator for this zone.
6048355f576SJeff Roberson *
6058355f576SJeff Roberson * Arguments:
6062db63c5eSGiorgos Keramidas * zone The zone whose backend allocator is being changed.
6078355f576SJeff Roberson * allocf A pointer to the allocation function
6088355f576SJeff Roberson *
6098355f576SJeff Roberson * Returns:
6108355f576SJeff Roberson * Nothing
6118355f576SJeff Roberson *
6128355f576SJeff Roberson * Discussion:
6138355f576SJeff Roberson * This could be used to implement pageable allocation, or perhaps
6148355f576SJeff Roberson * even DMA allocators if used in conjunction with the OFFPAGE
6158355f576SJeff Roberson * zone flag.
6168355f576SJeff Roberson */
6178355f576SJeff Roberson
6188355f576SJeff Roberson void uma_zone_set_allocf(uma_zone_t zone, uma_alloc allocf);
6198355f576SJeff Roberson
6208355f576SJeff Roberson /*
6218355f576SJeff Roberson * Used for freeing memory provided by the allocf above
6228355f576SJeff Roberson *
6238355f576SJeff Roberson * Arguments:
6248355f576SJeff Roberson * zone The zone that intends to use this free routine.
6258355f576SJeff Roberson * freef The page freeing routine.
6268355f576SJeff Roberson *
6278355f576SJeff Roberson * Returns:
6288355f576SJeff Roberson * Nothing
6298355f576SJeff Roberson */
6308355f576SJeff Roberson
6318355f576SJeff Roberson void uma_zone_set_freef(uma_zone_t zone, uma_free freef);
6328355f576SJeff Roberson
6338355f576SJeff Roberson /*
634d4665eaaSJeff Roberson * Associate a zone with a smr context that is allocated after creation
635d4665eaaSJeff Roberson * so that multiple zones may share the same context.
636d4665eaaSJeff Roberson */
637d4665eaaSJeff Roberson void uma_zone_set_smr(uma_zone_t zone, smr_t smr);
638d4665eaaSJeff Roberson
639d4665eaaSJeff Roberson /*
640d4665eaaSJeff Roberson * Fetch the smr context that was set or made in uma_zcreate().
641d4665eaaSJeff Roberson */
642d4665eaaSJeff Roberson smr_t uma_zone_get_smr(uma_zone_t zone);
643d4665eaaSJeff Roberson
644d4665eaaSJeff Roberson /*
645fc9f1d2cSGordon Bergling * These flags are settable in the allocf and visible in the freef.
6468355f576SJeff Roberson */
6478355f576SJeff Roberson #define UMA_SLAB_BOOT 0x01 /* Slab alloced from boot pages */
64849bfa624SAlan Cox #define UMA_SLAB_KERNEL 0x04 /* Slab alloced from kmem */
6498355f576SJeff Roberson #define UMA_SLAB_PRIV 0x08 /* Slab alloced from priv allocator */
650ec0d8280SRyan Libby /* 0x02, 0x10, 0x40, and 0x80 are available */
6518355f576SJeff Roberson
6528355f576SJeff Roberson /*
6538355f576SJeff Roberson * Used to pre-fill a zone with some number of items
6548355f576SJeff Roberson *
6558355f576SJeff Roberson * Arguments:
6568355f576SJeff Roberson * zone The zone to fill
6578355f576SJeff Roberson * itemcnt The number of items to reserve
6588355f576SJeff Roberson *
6598355f576SJeff Roberson * Returns:
6608355f576SJeff Roberson * Nothing
6618355f576SJeff Roberson *
6628355f576SJeff Roberson * NOTE: This is blocking and should only be done at startup
6638355f576SJeff Roberson */
6648355f576SJeff Roberson void uma_prealloc(uma_zone_t zone, int itemcnt);
6658355f576SJeff Roberson
666099a0e58SBosko Milekic /*
667663b416fSJohn Baldwin * Used to determine if a fixed-size zone is exhausted.
668663b416fSJohn Baldwin *
669663b416fSJohn Baldwin * Arguments:
670663b416fSJohn Baldwin * zone The zone to check
671663b416fSJohn Baldwin *
672663b416fSJohn Baldwin * Returns:
673663b416fSJohn Baldwin * Non-zero if zone is exhausted.
674663b416fSJohn Baldwin */
675663b416fSJohn Baldwin int uma_zone_exhausted(uma_zone_t zone);
676663b416fSJohn Baldwin
677663b416fSJohn Baldwin /*
678ed581bf6SJeff Roberson * Returns the bytes of memory consumed by the zone.
679ed581bf6SJeff Roberson */
680ed581bf6SJeff Roberson size_t uma_zone_memory(uma_zone_t zone);
681ed581bf6SJeff Roberson
682ed581bf6SJeff Roberson /*
68349fef6a2SGleb Smirnoff * Common UMA_ZONE_PCPU zones.
68449fef6a2SGleb Smirnoff */
6852dee296aSMateusz Guzik extern uma_zone_t pcpu_zone_4;
6862dee296aSMateusz Guzik extern uma_zone_t pcpu_zone_8;
6873a440a42SMateusz Guzik extern uma_zone_t pcpu_zone_16;
6883a440a42SMateusz Guzik extern uma_zone_t pcpu_zone_32;
6893a440a42SMateusz Guzik extern uma_zone_t pcpu_zone_64;
69049fef6a2SGleb Smirnoff
69149fef6a2SGleb Smirnoff /*
6927a52a97eSRobert Watson * Exported statistics structures to be used by user space monitoring tools.
6932db63c5eSGiorgos Keramidas * Statistics stream consists of a uma_stream_header, followed by a series of
6942db63c5eSGiorgos Keramidas * alternative uma_type_header and uma_type_stat structures.
6957a52a97eSRobert Watson */
6967a52a97eSRobert Watson #define UMA_STREAM_VERSION 0x00000001
6977a52a97eSRobert Watson struct uma_stream_header {
69885dcf349SGleb Smirnoff uint32_t ush_version; /* Stream format version. */
69985dcf349SGleb Smirnoff uint32_t ush_maxcpus; /* Value of MAXCPU for stream. */
70085dcf349SGleb Smirnoff uint32_t ush_count; /* Number of records. */
70185dcf349SGleb Smirnoff uint32_t _ush_pad; /* Pad/reserved field. */
7027a52a97eSRobert Watson };
7037a52a97eSRobert Watson
704cbbb4a00SRobert Watson #define UTH_MAX_NAME 32
705cbbb4a00SRobert Watson #define UTH_ZONE_SECONDARY 0x00000001
7067a52a97eSRobert Watson struct uma_type_header {
7077a52a97eSRobert Watson /*
7087a52a97eSRobert Watson * Static per-zone data, some extracted from the supporting keg.
7097a52a97eSRobert Watson */
710cbbb4a00SRobert Watson char uth_name[UTH_MAX_NAME];
71185dcf349SGleb Smirnoff uint32_t uth_align; /* Keg: alignment. */
71285dcf349SGleb Smirnoff uint32_t uth_size; /* Keg: requested size of item. */
71385dcf349SGleb Smirnoff uint32_t uth_rsize; /* Keg: real size of item. */
71485dcf349SGleb Smirnoff uint32_t uth_maxpages; /* Keg: maximum number of pages. */
71585dcf349SGleb Smirnoff uint32_t uth_limit; /* Keg: max items to allocate. */
7167a52a97eSRobert Watson
7177a52a97eSRobert Watson /*
7187a52a97eSRobert Watson * Current dynamic zone/keg-derived statistics.
7197a52a97eSRobert Watson */
72085dcf349SGleb Smirnoff uint32_t uth_pages; /* Keg: pages allocated. */
72185dcf349SGleb Smirnoff uint32_t uth_keg_free; /* Keg: items free. */
72285dcf349SGleb Smirnoff uint32_t uth_zone_free; /* Zone: items free. */
72385dcf349SGleb Smirnoff uint32_t uth_bucketsize; /* Zone: desired bucket size. */
72485dcf349SGleb Smirnoff uint32_t uth_zone_flags; /* Zone: flags. */
72585dcf349SGleb Smirnoff uint64_t uth_allocs; /* Zone: number of allocations. */
72685dcf349SGleb Smirnoff uint64_t uth_frees; /* Zone: number of frees. */
72785dcf349SGleb Smirnoff uint64_t uth_fails; /* Zone: number of alloc failures. */
72885dcf349SGleb Smirnoff uint64_t uth_sleeps; /* Zone: number of alloc sleeps. */
729c1685086SJeff Roberson uint64_t uth_xdomain; /* Zone: Number of cross domain frees. */
730c1685086SJeff Roberson uint64_t _uth_reserved1[1]; /* Reserved. */
7317a52a97eSRobert Watson };
7327a52a97eSRobert Watson
7337a52a97eSRobert Watson struct uma_percpu_stat {
73485dcf349SGleb Smirnoff uint64_t ups_allocs; /* Cache: number of allocations. */
73585dcf349SGleb Smirnoff uint64_t ups_frees; /* Cache: number of frees. */
73685dcf349SGleb Smirnoff uint64_t ups_cache_free; /* Cache: free items in cache. */
73785dcf349SGleb Smirnoff uint64_t _ups_reserved[5]; /* Reserved. */
7387a52a97eSRobert Watson };
7397a52a97eSRobert Watson
74044ec2b63SKonstantin Belousov void uma_reclaim_wakeup(void);
74144ec2b63SKonstantin Belousov void uma_reclaim_worker(void *);
74244ec2b63SKonstantin Belousov
743ad5b0f5bSJeff Roberson unsigned long uma_limit(void);
744ad5b0f5bSJeff Roberson
745ad5b0f5bSJeff Roberson /* Return the amount of memory managed by UMA. */
746ad5b0f5bSJeff Roberson unsigned long uma_size(void);
747ad5b0f5bSJeff Roberson
748ad5b0f5bSJeff Roberson /* Return the amount of memory remaining. May be negative. */
749ad5b0f5bSJeff Roberson long uma_avail(void);
750ad5b0f5bSJeff Roberson
751f947570eSGleb Smirnoff #endif /* _VM_UMA_H_ */
752