160727d8bSWarner Losh /*- 2fe267a55SPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3fe267a55SPedro F. Giffuni * 4584061b4SJeff Roberson * Copyright (c) 2002-2019 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 * $FreeBSD$ 308355f576SJeff Roberson * 318355f576SJeff Roberson */ 328355f576SJeff Roberson 3339669415SGleb Smirnoff #include <sys/counter.h> 34e04223bfSMark Johnston #include <sys/_bitset.h> 357571e249SMark Johnston #include <sys/_domainset.h> 36b28cc462SGleb Smirnoff #include <sys/_task.h> 37b28cc462SGleb Smirnoff 388355f576SJeff Roberson /* 398355f576SJeff Roberson * This file includes definitions, structures, prototypes, and inlines that 408355f576SJeff Roberson * should not be used outside of the actual implementation of UMA. 418355f576SJeff Roberson */ 428355f576SJeff Roberson 438355f576SJeff Roberson /* 44ab3185d1SJeff Roberson * The brief summary; Zones describe unique allocation types. Zones are 45ab3185d1SJeff Roberson * organized into per-CPU caches which are filled by buckets. Buckets are 46ab3185d1SJeff Roberson * organized according to memory domains. Buckets are filled from kegs which 47ab3185d1SJeff Roberson * are also organized according to memory domains. Kegs describe a unique 48ab3185d1SJeff Roberson * allocation type, backend memory provider, and layout. Kegs are associated 49ab3185d1SJeff Roberson * with one or more zones and zones reference one or more kegs. Kegs provide 50ab3185d1SJeff Roberson * slabs which are virtually contiguous collections of pages. Each slab is 51ab3185d1SJeff Roberson * broken down int one or more items that will satisfy an individual allocation. 52ab3185d1SJeff Roberson * 53ab3185d1SJeff Roberson * Allocation is satisfied in the following order: 54ab3185d1SJeff Roberson * 1) Per-CPU cache 55ab3185d1SJeff Roberson * 2) Per-domain cache of buckets 56ab3185d1SJeff Roberson * 3) Slab from any of N kegs 57ab3185d1SJeff Roberson * 4) Backend page provider 58ab3185d1SJeff Roberson * 59ab3185d1SJeff Roberson * More detail on individual objects is contained below: 608355f576SJeff Roberson * 61099a0e58SBosko Milekic * Kegs contain lists of slabs which are stored in either the full bin, empty 628355f576SJeff Roberson * bin, or partially allocated bin, to reduce fragmentation. They also contain 638355f576SJeff Roberson * the user supplied value for size, which is adjusted for alignment purposes 64099a0e58SBosko Milekic * and rsize is the result of that. The Keg also stores information for 658355f576SJeff Roberson * managing a hash of page addresses that maps pages to uma_slab_t structures 668355f576SJeff Roberson * for pages that don't have embedded uma_slab_t's. 678355f576SJeff Roberson * 68ab3185d1SJeff Roberson * Keg slab lists are organized by memory domain to support NUMA allocation 69ab3185d1SJeff Roberson * policies. By default allocations are spread across domains to reduce the 70ab3185d1SJeff Roberson * potential for hotspots. Special keg creation flags may be specified to 71ab3185d1SJeff Roberson * prefer location allocation. However there is no strict enforcement as frees 72ab3185d1SJeff Roberson * may happen on any CPU and these are returned to the CPU-local cache 73ab3185d1SJeff Roberson * regardless of the originating domain. 74ab3185d1SJeff Roberson * 758355f576SJeff Roberson * The uma_slab_t may be embedded in a UMA_SLAB_SIZE chunk of memory or it may 768355f576SJeff Roberson * be allocated off the page from a special slab zone. The free list within a 77ef72505eSJeff Roberson * slab is managed with a bitmask. For item sizes that would yield more than 78ef72505eSJeff Roberson * 10% memory waste we potentially allocate a separate uma_slab_t if this will 79ef72505eSJeff Roberson * improve the number of items per slab that will fit. 808355f576SJeff Roberson * 818355f576SJeff Roberson * The only really gross cases, with regards to memory waste, are for those 828355f576SJeff Roberson * items that are just over half the page size. You can get nearly 50% waste, 838355f576SJeff Roberson * so you fall back to the memory footprint of the power of two allocator. I 848355f576SJeff Roberson * have looked at memory allocation sizes on many of the machines available to 858355f576SJeff Roberson * me, and there does not seem to be an abundance of allocations at this range 868355f576SJeff Roberson * so at this time it may not make sense to optimize for it. This can, of 878355f576SJeff Roberson * course, be solved with dynamic slab sizes. 888355f576SJeff Roberson * 89099a0e58SBosko Milekic * Kegs may serve multiple Zones but by far most of the time they only serve 90099a0e58SBosko Milekic * one. When a Zone is created, a Keg is allocated and setup for it. While 91099a0e58SBosko Milekic * the backing Keg stores slabs, the Zone caches Buckets of items allocated 92099a0e58SBosko Milekic * from the slabs. Each Zone is equipped with an init/fini and ctor/dtor 93099a0e58SBosko Milekic * pair, as well as with its own set of small per-CPU caches, layered above 94099a0e58SBosko Milekic * the Zone's general Bucket cache. 95099a0e58SBosko Milekic * 966ab3b958SRobert Watson * The PCPU caches are protected by critical sections, and may be accessed 976ab3b958SRobert Watson * safely only from their associated CPU, while the Zones backed by the same 986ab3b958SRobert Watson * Keg all share a common Keg lock (to coalesce contention on the backing 996ab3b958SRobert Watson * slabs). The backing Keg typically only serves one Zone but in the case of 100c8b0a88bSJeff Roberson * multiple Zones, one of the Zones is considered the Primary Zone and all 101c8b0a88bSJeff Roberson * Zone-related stats from the Keg are done in the Primary Zone. For an 1026ab3b958SRobert Watson * example of a Multi-Zone setup, refer to the Mbuf allocation code. 1038355f576SJeff Roberson */ 1048355f576SJeff Roberson 1058355f576SJeff Roberson /* 1068355f576SJeff Roberson * This is the representation for normal (Non OFFPAGE slab) 1078355f576SJeff Roberson * 1088355f576SJeff Roberson * i == item 1098355f576SJeff Roberson * s == slab pointer 1108355f576SJeff Roberson * 1118355f576SJeff Roberson * <---------------- Page (UMA_SLAB_SIZE) ------------------> 1128355f576SJeff Roberson * ___________________________________________________________ 1138355f576SJeff Roberson * | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ | 1148355f576SJeff Roberson * ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| |slab header|| 1158355f576SJeff Roberson * ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| |___________|| 1168355f576SJeff Roberson * |___________________________________________________________| 1178355f576SJeff Roberson * 1188355f576SJeff Roberson * 1198355f576SJeff Roberson * This is an OFFPAGE slab. These can be larger than UMA_SLAB_SIZE. 1208355f576SJeff Roberson * 1218355f576SJeff Roberson * ___________________________________________________________ 1228355f576SJeff Roberson * | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | 1238355f576SJeff Roberson * ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| | 1248355f576SJeff Roberson * ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| | 1258355f576SJeff Roberson * |___________________________________________________________| 1268355f576SJeff Roberson * ___________ ^ 1278355f576SJeff Roberson * |slab header| | 1288355f576SJeff Roberson * |___________|---* 1298355f576SJeff Roberson * 1308355f576SJeff Roberson */ 1318355f576SJeff Roberson 1328355f576SJeff Roberson #ifndef VM_UMA_INT_H 1338355f576SJeff Roberson #define VM_UMA_INT_H 1348355f576SJeff Roberson 1358355f576SJeff Roberson #define UMA_SLAB_SIZE PAGE_SIZE /* How big are our slabs? */ 1368355f576SJeff Roberson #define UMA_SLAB_MASK (PAGE_SIZE - 1) /* Mask to get back to the page */ 1378355f576SJeff Roberson #define UMA_SLAB_SHIFT PAGE_SHIFT /* Number of bits PAGE_MASK */ 1388355f576SJeff Roberson 139ad97af7eSGleb Smirnoff /* Max waste percentage before going to off page slab management */ 140ad97af7eSGleb Smirnoff #define UMA_MAX_WASTE 10 1418355f576SJeff Roberson 1424a8b575cSRyan Libby /* Max size of a CACHESPREAD slab. */ 1434a8b575cSRyan Libby #define UMA_CACHESPREAD_MAX_SIZE (128 * 1024) 1444a8b575cSRyan Libby 14554c5ae80SRyan Libby /* 14654c5ae80SRyan Libby * These flags must not overlap with the UMA_ZONE flags specified in uma.h. 14754c5ae80SRyan Libby */ 14854c5ae80SRyan Libby #define UMA_ZFLAG_OFFPAGE 0x00200000 /* 14954c5ae80SRyan Libby * Force the slab structure 15054c5ae80SRyan Libby * allocation off of the real 15154c5ae80SRyan Libby * memory. 15254c5ae80SRyan Libby */ 15354c5ae80SRyan Libby #define UMA_ZFLAG_HASH 0x00400000 /* 15454c5ae80SRyan Libby * Use a hash table instead of 15554c5ae80SRyan Libby * caching information in the 15654c5ae80SRyan Libby * vm_page. 15754c5ae80SRyan Libby */ 15854c5ae80SRyan Libby #define UMA_ZFLAG_VTOSLAB 0x00800000 /* 15954c5ae80SRyan Libby * Zone uses vtoslab for 16054c5ae80SRyan Libby * lookup. 16154c5ae80SRyan Libby */ 16254c5ae80SRyan Libby #define UMA_ZFLAG_CTORDTOR 0x01000000 /* Zone has ctor/dtor set. */ 16354c5ae80SRyan Libby #define UMA_ZFLAG_LIMIT 0x02000000 /* Zone has limit set. */ 16454c5ae80SRyan Libby #define UMA_ZFLAG_CACHE 0x04000000 /* uma_zcache_create()d it */ 16554c5ae80SRyan Libby #define UMA_ZFLAG_BUCKET 0x10000000 /* Bucket zone. */ 16654c5ae80SRyan Libby #define UMA_ZFLAG_INTERNAL 0x20000000 /* No offpage no PCPU. */ 16754c5ae80SRyan Libby #define UMA_ZFLAG_TRASH 0x40000000 /* Add trash ctor/dtor. */ 16854c5ae80SRyan Libby 16954c5ae80SRyan Libby #define UMA_ZFLAG_INHERIT \ 17054c5ae80SRyan Libby (UMA_ZFLAG_OFFPAGE | UMA_ZFLAG_HASH | UMA_ZFLAG_VTOSLAB | \ 171bae55c4aSRyan Libby UMA_ZFLAG_BUCKET | UMA_ZFLAG_INTERNAL) 17254c5ae80SRyan Libby 17354c5ae80SRyan Libby #define PRINT_UMA_ZFLAGS "\20" \ 17454c5ae80SRyan Libby "\37TRASH" \ 17554c5ae80SRyan Libby "\36INTERNAL" \ 17654c5ae80SRyan Libby "\35BUCKET" \ 17754c5ae80SRyan Libby "\33CACHE" \ 17854c5ae80SRyan Libby "\32LIMIT" \ 17954c5ae80SRyan Libby "\31CTORDTOR" \ 18054c5ae80SRyan Libby "\30VTOSLAB" \ 18154c5ae80SRyan Libby "\27HASH" \ 18254c5ae80SRyan Libby "\26OFFPAGE" \ 183d4665eaaSJeff Roberson "\23SMR" \ 18454c5ae80SRyan Libby "\22ROUNDROBIN" \ 18554c5ae80SRyan Libby "\21FIRSTTOUCH" \ 18654c5ae80SRyan Libby "\20PCPU" \ 18754c5ae80SRyan Libby "\17NODUMP" \ 18854c5ae80SRyan Libby "\16CACHESPREAD" \ 18954c5ae80SRyan Libby "\14MAXBUCKET" \ 19054c5ae80SRyan Libby "\13NOBUCKET" \ 19154c5ae80SRyan Libby "\12SECONDARY" \ 19254c5ae80SRyan Libby "\11NOTPAGE" \ 19354c5ae80SRyan Libby "\10VM" \ 19454c5ae80SRyan Libby "\7MTXCLASS" \ 19554c5ae80SRyan Libby "\6NOFREE" \ 19654c5ae80SRyan Libby "\5MALLOC" \ 19754c5ae80SRyan Libby "\4NOTOUCH" \ 198ec0d8280SRyan Libby "\3CONTIG" \ 19954c5ae80SRyan Libby "\2ZINIT" 2008355f576SJeff Roberson 2018355f576SJeff Roberson /* 2021e0701e1SJeff Roberson * Hash table for freed address -> slab translation. 2031e0701e1SJeff Roberson * 2041e0701e1SJeff Roberson * Only zones with memory not touchable by the allocator use the 2051e0701e1SJeff Roberson * hash table. Otherwise slabs are found with vtoslab(). 2068355f576SJeff Roberson */ 2071e0701e1SJeff Roberson #define UMA_HASH_SIZE_INIT 32 2088355f576SJeff Roberson 209ef72505eSJeff Roberson #define UMA_HASH(h, s) ((((uintptr_t)s) >> UMA_SLAB_SHIFT) & (h)->uh_hashmask) 2108355f576SJeff Roberson 2118355f576SJeff Roberson #define UMA_HASH_INSERT(h, s, mem) \ 2121e0701e1SJeff Roberson LIST_INSERT_HEAD(&(h)->uh_slab_hash[UMA_HASH((h), \ 2139b8db4d0SRyan Libby (mem))], slab_tohashslab(s), uhs_hlink) 2148355f576SJeff Roberson 2151e0701e1SJeff Roberson #define UMA_HASH_REMOVE(h, s) \ 2169b8db4d0SRyan Libby LIST_REMOVE(slab_tohashslab(s), uhs_hlink) 2178355f576SJeff Roberson 2181e0701e1SJeff Roberson LIST_HEAD(slabhashhead, uma_hash_slab); 2198355f576SJeff Roberson 2208355f576SJeff Roberson struct uma_hash { 2211e0701e1SJeff Roberson struct slabhashhead *uh_slab_hash; /* Hash table for slabs */ 2226929b7d1SPedro F. Giffuni u_int uh_hashsize; /* Current size of the hash table */ 2236929b7d1SPedro F. Giffuni u_int uh_hashmask; /* Mask used during hashing */ 2248355f576SJeff Roberson }; 2258355f576SJeff Roberson 2268355f576SJeff Roberson /* 22779c9f942SJeff Roberson * Align field or structure to cache 'sector' in intel terminology. This 22879c9f942SJeff Roberson * is more efficient with adjacent line prefetch. 2295e4bb93cSKip Macy */ 23012f69195SJustin Hibbits #if defined(__amd64__) || defined(__powerpc64__) 23179c9f942SJeff Roberson #define UMA_SUPER_ALIGN (CACHE_LINE_SIZE * 2) 2321a23373cSKip Macy #else 23379c9f942SJeff Roberson #define UMA_SUPER_ALIGN CACHE_LINE_SIZE 2341a23373cSKip Macy #endif 2355e4bb93cSKip Macy 23679c9f942SJeff Roberson #define UMA_ALIGN __aligned(UMA_SUPER_ALIGN) 23779c9f942SJeff Roberson 2385e4bb93cSKip Macy /* 239376b1ba3SJeff Roberson * The uma_bucket structure is used to queue and manage buckets divorced 240376b1ba3SJeff Roberson * from per-cpu caches. They are loaded into uma_cache_bucket structures 241376b1ba3SJeff Roberson * for use. 2428355f576SJeff Roberson */ 2438355f576SJeff Roberson struct uma_bucket { 244dc3915c8SJeff Roberson STAILQ_ENTRY(uma_bucket) ub_link; /* Link into the zone */ 245306abf0fSGleb Smirnoff int16_t ub_cnt; /* Count of items in bucket. */ 246cae33c14SJeff Roberson int16_t ub_entries; /* Max items. */ 247d4665eaaSJeff Roberson smr_seq_t ub_seq; /* SMR sequence number. */ 248cae33c14SJeff Roberson void *ub_bucket[]; /* actual allocation storage */ 2491a23373cSKip Macy }; 2508355f576SJeff Roberson 2518355f576SJeff Roberson typedef struct uma_bucket * uma_bucket_t; 2528355f576SJeff Roberson 253376b1ba3SJeff Roberson /* 254376b1ba3SJeff Roberson * The uma_cache_bucket structure is statically allocated on each per-cpu 255376b1ba3SJeff Roberson * cache. Its use reduces branches and cache misses in the fast path. 256376b1ba3SJeff Roberson */ 257376b1ba3SJeff Roberson struct uma_cache_bucket { 258376b1ba3SJeff Roberson uma_bucket_t ucb_bucket; 259376b1ba3SJeff Roberson int16_t ucb_cnt; 260376b1ba3SJeff Roberson int16_t ucb_entries; 261376b1ba3SJeff Roberson uint32_t ucb_spare; 262376b1ba3SJeff Roberson }; 263376b1ba3SJeff Roberson 264376b1ba3SJeff Roberson typedef struct uma_cache_bucket * uma_cache_bucket_t; 265376b1ba3SJeff Roberson 266376b1ba3SJeff Roberson /* 267376b1ba3SJeff Roberson * The uma_cache structure is allocated for each cpu for every zone 268376b1ba3SJeff Roberson * type. This optimizes synchronization out of the allocator fast path. 269376b1ba3SJeff Roberson */ 2708355f576SJeff Roberson struct uma_cache { 271376b1ba3SJeff Roberson struct uma_cache_bucket uc_freebucket; /* Bucket we're freeing to */ 272376b1ba3SJeff Roberson struct uma_cache_bucket uc_allocbucket; /* Bucket to allocate from */ 273376b1ba3SJeff Roberson struct uma_cache_bucket uc_crossbucket; /* cross domain bucket */ 27485dcf349SGleb Smirnoff uint64_t uc_allocs; /* Count of allocations */ 27585dcf349SGleb Smirnoff uint64_t uc_frees; /* Count of frees */ 2765e4bb93cSKip Macy } UMA_ALIGN; 2778355f576SJeff Roberson 2788355f576SJeff Roberson typedef struct uma_cache * uma_cache_t; 2798355f576SJeff Roberson 2801e0701e1SJeff Roberson LIST_HEAD(slabhead, uma_slab); 2811e0701e1SJeff Roberson 2828355f576SJeff Roberson /* 283cc7ce83aSJeff Roberson * The cache structure pads perfectly into 64 bytes so we use spare 284cc7ce83aSJeff Roberson * bits from the embedded cache buckets to store information from the zone 285cc7ce83aSJeff Roberson * and keep all fast-path allocations accessing a single per-cpu line. 286cc7ce83aSJeff Roberson */ 287cc7ce83aSJeff Roberson static inline void 288cc7ce83aSJeff Roberson cache_set_uz_flags(uma_cache_t cache, uint32_t flags) 289cc7ce83aSJeff Roberson { 290cc7ce83aSJeff Roberson 291cc7ce83aSJeff Roberson cache->uc_freebucket.ucb_spare = flags; 292cc7ce83aSJeff Roberson } 293cc7ce83aSJeff Roberson 294cc7ce83aSJeff Roberson static inline void 295cc7ce83aSJeff Roberson cache_set_uz_size(uma_cache_t cache, uint32_t size) 296cc7ce83aSJeff Roberson { 297cc7ce83aSJeff Roberson 298cc7ce83aSJeff Roberson cache->uc_allocbucket.ucb_spare = size; 299cc7ce83aSJeff Roberson } 300cc7ce83aSJeff Roberson 301cc7ce83aSJeff Roberson static inline uint32_t 302cc7ce83aSJeff Roberson cache_uz_flags(uma_cache_t cache) 303cc7ce83aSJeff Roberson { 304cc7ce83aSJeff Roberson 305cc7ce83aSJeff Roberson return (cache->uc_freebucket.ucb_spare); 306cc7ce83aSJeff Roberson } 307cc7ce83aSJeff Roberson 308cc7ce83aSJeff Roberson static inline uint32_t 309cc7ce83aSJeff Roberson cache_uz_size(uma_cache_t cache) 310cc7ce83aSJeff Roberson { 311cc7ce83aSJeff Roberson 312cc7ce83aSJeff Roberson return (cache->uc_allocbucket.ucb_spare); 313cc7ce83aSJeff Roberson } 314cc7ce83aSJeff Roberson 315cc7ce83aSJeff Roberson /* 316376b1ba3SJeff Roberson * Per-domain slab lists. Embedded in the kegs. 317ab3185d1SJeff Roberson */ 318ab3185d1SJeff Roberson struct uma_domain { 3198b987a77SJeff Roberson struct mtx_padalign ud_lock; /* Lock for the domain lists. */ 3201e0701e1SJeff Roberson struct slabhead ud_part_slab; /* partially allocated slabs */ 3211e0701e1SJeff Roberson struct slabhead ud_free_slab; /* completely unallocated slabs */ 3221e0701e1SJeff Roberson struct slabhead ud_full_slab; /* fully allocated slabs */ 3238b987a77SJeff Roberson uint32_t ud_pages; /* Total page count */ 3244ab3aee8SMark Johnston uint32_t ud_free_items; /* Count of items free in all slabs */ 3254ab3aee8SMark Johnston uint32_t ud_free_slabs; /* Count of free slabs */ 326727c6918SJeff Roberson } __aligned(CACHE_LINE_SIZE); 327ab3185d1SJeff Roberson 328ab3185d1SJeff Roberson typedef struct uma_domain * uma_domain_t; 329ab3185d1SJeff Roberson 330ab3185d1SJeff Roberson /* 331099a0e58SBosko Milekic * Keg management structure 332099a0e58SBosko Milekic * 333099a0e58SBosko Milekic * TODO: Optimize for cache line size 334099a0e58SBosko Milekic * 335099a0e58SBosko Milekic */ 336099a0e58SBosko Milekic struct uma_keg { 337099a0e58SBosko Milekic struct uma_hash uk_hash; 338099a0e58SBosko Milekic LIST_HEAD(,uma_zone) uk_zones; /* Keg's zones */ 339099a0e58SBosko Milekic 340194a979eSMark Johnston struct domainset_ref uk_dr; /* Domain selection policy. */ 34185dcf349SGleb Smirnoff uint32_t uk_align; /* Alignment mask */ 3426fd34d6fSJeff Roberson uint32_t uk_reserve; /* Number of reserved items. */ 34385dcf349SGleb Smirnoff uint32_t uk_size; /* Requested size of each item */ 34485dcf349SGleb Smirnoff uint32_t uk_rsize; /* Real size of each item */ 345099a0e58SBosko Milekic 346099a0e58SBosko Milekic uma_init uk_init; /* Keg's init routine */ 347099a0e58SBosko Milekic uma_fini uk_fini; /* Keg's fini routine */ 348099a0e58SBosko Milekic uma_alloc uk_allocf; /* Allocation function */ 349099a0e58SBosko Milekic uma_free uk_freef; /* Free routine */ 350099a0e58SBosko Milekic 351a4915c21SAttilio Rao u_long uk_offset; /* Next free offset from base KVA */ 352a4915c21SAttilio Rao vm_offset_t uk_kva; /* Zone base KVA */ 353099a0e58SBosko Milekic 3542d54d4bbSMark Johnston uint32_t uk_pgoff; /* Offset to uma_slab struct */ 35585dcf349SGleb Smirnoff uint16_t uk_ppera; /* pages per allocation from backend */ 35685dcf349SGleb Smirnoff uint16_t uk_ipers; /* Items per slab */ 35785dcf349SGleb Smirnoff uint32_t uk_flags; /* Internal flags */ 358ad97af7eSGleb Smirnoff 359ad97af7eSGleb Smirnoff /* Least used fields go to the last cache line. */ 360ad97af7eSGleb Smirnoff const char *uk_name; /* Name of creating zone. */ 361ad97af7eSGleb Smirnoff LIST_ENTRY(uma_keg) uk_link; /* List of all kegs */ 362ab3185d1SJeff Roberson 363ab3185d1SJeff Roberson /* Must be last, variable sized. */ 364ab3185d1SJeff Roberson struct uma_domain uk_domain[]; /* Keg's slab lists. */ 365099a0e58SBosko Milekic }; 366099a0e58SBosko Milekic typedef struct uma_keg * uma_keg_t; 367099a0e58SBosko Milekic 368ef72505eSJeff Roberson /* 369ef72505eSJeff Roberson * Free bits per-slab. 370ef72505eSJeff Roberson */ 3719b78b1f4SJeff Roberson #define SLAB_MAX_SETSIZE (PAGE_SIZE / UMA_SMALLEST_UNIT) 3729b78b1f4SJeff Roberson #define SLAB_MIN_SETSIZE _BITSET_BITS 3739b78b1f4SJeff Roberson BITSET_DEFINE(noslabbits, 0); 374099a0e58SBosko Milekic 375ef72505eSJeff Roberson /* 376ef72505eSJeff Roberson * The slab structure manages a single contiguous allocation from backing 377ef72505eSJeff Roberson * store and subdivides it into individually allocatable items. 378ef72505eSJeff Roberson */ 379ef72505eSJeff Roberson struct uma_slab { 3806d6a03d7SJeff Roberson LIST_ENTRY(uma_slab) us_link; /* slabs in zone */ 38185dcf349SGleb Smirnoff uint16_t us_freecount; /* How many are free? */ 38285dcf349SGleb Smirnoff uint8_t us_flags; /* Page flags see uma.h */ 383ab3185d1SJeff Roberson uint8_t us_domain; /* Backing NUMA domain. */ 384815db204SRyan Libby struct noslabbits us_free; /* Free bitmask, flexible. */ 385099a0e58SBosko Milekic }; 38654007ce8SMark Johnston _Static_assert(sizeof(struct uma_slab) == __offsetof(struct uma_slab, us_free), 387815db204SRyan Libby "us_free field must be last"); 38854007ce8SMark Johnston _Static_assert(MAXMEMDOM < 255, 38954007ce8SMark Johnston "us_domain field is not wide enough"); 390ab3185d1SJeff Roberson 391099a0e58SBosko Milekic typedef struct uma_slab * uma_slab_t; 392e20a199fSJeff Roberson 393815db204SRyan Libby /* 3941e0701e1SJeff Roberson * Slab structure with a full sized bitset and hash link for both 3951e0701e1SJeff Roberson * HASH and OFFPAGE zones. 3961e0701e1SJeff Roberson */ 3971e0701e1SJeff Roberson struct uma_hash_slab { 3981e0701e1SJeff Roberson LIST_ENTRY(uma_hash_slab) uhs_hlink; /* Link for hash table */ 3991e0701e1SJeff Roberson uint8_t *uhs_data; /* First item */ 4009b8db4d0SRyan Libby struct uma_slab uhs_slab; /* Must be last. */ 4011e0701e1SJeff Roberson }; 4021e0701e1SJeff Roberson 4031e0701e1SJeff Roberson typedef struct uma_hash_slab * uma_hash_slab_t; 4041e0701e1SJeff Roberson 4059b8db4d0SRyan Libby static inline uma_hash_slab_t 4069b8db4d0SRyan Libby slab_tohashslab(uma_slab_t slab) 4079b8db4d0SRyan Libby { 4089b8db4d0SRyan Libby 4099b8db4d0SRyan Libby return (__containerof(slab, struct uma_hash_slab, uhs_slab)); 4109b8db4d0SRyan Libby } 4119b8db4d0SRyan Libby 4121e0701e1SJeff Roberson static inline void * 4131e0701e1SJeff Roberson slab_data(uma_slab_t slab, uma_keg_t keg) 4141e0701e1SJeff Roberson { 4151e0701e1SJeff Roberson 41654c5ae80SRyan Libby if ((keg->uk_flags & UMA_ZFLAG_OFFPAGE) == 0) 4171e0701e1SJeff Roberson return ((void *)((uintptr_t)slab - keg->uk_pgoff)); 4181e0701e1SJeff Roberson else 4199b8db4d0SRyan Libby return (slab_tohashslab(slab)->uhs_data); 4201e0701e1SJeff Roberson } 4211e0701e1SJeff Roberson 4221e0701e1SJeff Roberson static inline void * 4231e0701e1SJeff Roberson slab_item(uma_slab_t slab, uma_keg_t keg, int index) 4241e0701e1SJeff Roberson { 4251e0701e1SJeff Roberson uintptr_t data; 4261e0701e1SJeff Roberson 4271e0701e1SJeff Roberson data = (uintptr_t)slab_data(slab, keg); 4281e0701e1SJeff Roberson return ((void *)(data + keg->uk_rsize * index)); 4291e0701e1SJeff Roberson } 4301e0701e1SJeff Roberson 4311e0701e1SJeff Roberson static inline int 4321e0701e1SJeff Roberson slab_item_index(uma_slab_t slab, uma_keg_t keg, void *item) 4331e0701e1SJeff Roberson { 4341e0701e1SJeff Roberson uintptr_t data; 4351e0701e1SJeff Roberson 4361e0701e1SJeff Roberson data = (uintptr_t)slab_data(slab, keg); 4371e0701e1SJeff Roberson return (((uintptr_t)item - data) / keg->uk_rsize); 4381e0701e1SJeff Roberson } 4391e0701e1SJeff Roberson 440dc3915c8SJeff Roberson STAILQ_HEAD(uma_bucketlist, uma_bucket); 44108cfa56eSMark Johnston 442ab3185d1SJeff Roberson struct uma_zone_domain { 44308cfa56eSMark Johnston struct uma_bucketlist uzd_buckets; /* full buckets */ 44491d947bfSJeff Roberson uma_bucket_t uzd_cross; /* Fills from cross buckets. */ 4450f9b7bf3SMark Johnston long uzd_nitems; /* total item count */ 4460f9b7bf3SMark Johnston long uzd_imax; /* maximum item count this period */ 4470f9b7bf3SMark Johnston long uzd_imin; /* minimum item count this period */ 4480f9b7bf3SMark Johnston long uzd_wss; /* working set size estimate */ 449c6fd3e23SJeff Roberson smr_seq_t uzd_seq; /* Lowest queued seq. */ 450c6fd3e23SJeff Roberson struct mtx uzd_lock; /* Lock for the domain */ 451727c6918SJeff Roberson } __aligned(CACHE_LINE_SIZE); 452ab3185d1SJeff Roberson 453ab3185d1SJeff Roberson typedef struct uma_zone_domain * uma_zone_domain_t; 454ab3185d1SJeff Roberson 455244f4554SBosko Milekic /* 4564bd61e19SJeff Roberson * Zone structure - per memory type. 4578355f576SJeff Roberson */ 4588355f576SJeff Roberson struct uma_zone { 45963b5557bSJeff Roberson /* Offset 0, used in alloc/free fast/medium fast path and const. */ 46063b5557bSJeff Roberson uint32_t uz_flags; /* Flags inherited from kegs */ 46163b5557bSJeff Roberson uint32_t uz_size; /* Size inherited from kegs */ 4628355f576SJeff Roberson uma_ctor uz_ctor; /* Constructor for each allocation */ 4638355f576SJeff Roberson uma_dtor uz_dtor; /* Destructor */ 464d4665eaaSJeff Roberson smr_t uz_smr; /* Safe memory reclaim context. */ 465bb15d1c7SGleb Smirnoff uint64_t uz_max_items; /* Maximum number of items to alloc */ 466c6fd3e23SJeff Roberson uint64_t uz_bucket_max; /* Maximum bucket cache size */ 46720a4e154SJeff Roberson uint16_t uz_bucket_size; /* Number of items in full bucket */ 46820a4e154SJeff Roberson uint16_t uz_bucket_size_max; /* Maximum number of bucket items */ 469c6fd3e23SJeff Roberson uint32_t uz_sleepers; /* Threads sleeping on limit */ 470c6fd3e23SJeff Roberson counter_u64_t uz_xdomain; /* Total number of cross-domain frees */ 47163b5557bSJeff Roberson 47263b5557bSJeff Roberson /* Offset 64, used in bucket replenish. */ 473c6fd3e23SJeff Roberson uma_keg_t uz_keg; /* This zone's keg if !CACHE */ 4740095a784SJeff Roberson uma_import uz_import; /* Import new memory to cache. */ 4750095a784SJeff Roberson uma_release uz_release; /* Release memory from cache. */ 4760095a784SJeff Roberson void *uz_arg; /* Import/release argument. */ 477bb15d1c7SGleb Smirnoff uma_init uz_init; /* Initializer for each item */ 478bb15d1c7SGleb Smirnoff uma_fini uz_fini; /* Finalizer for each item. */ 479c6fd3e23SJeff Roberson volatile uint64_t uz_items; /* Total items count & sleepers */ 480c6fd3e23SJeff Roberson uint64_t uz_sleeps; /* Total number of alloc sleeps */ 481099a0e58SBosko Milekic 482c6fd3e23SJeff Roberson /* Offset 128 Rare stats, misc read-only. */ 483bb15d1c7SGleb Smirnoff LIST_ENTRY(uma_zone) uz_link; /* List of all zones in keg */ 4842efcc8cbSGleb Smirnoff counter_u64_t uz_allocs; /* Total number of allocations */ 4852efcc8cbSGleb Smirnoff counter_u64_t uz_frees; /* Total number of frees */ 4862efcc8cbSGleb Smirnoff counter_u64_t uz_fails; /* Total number of alloc failures */ 487c6fd3e23SJeff Roberson const char *uz_name; /* Text name of the zone */ 48820a4e154SJeff Roberson char *uz_ctlname; /* sysctl safe name string. */ 48920a4e154SJeff Roberson int uz_namecnt; /* duplicate name count. */ 490c6fd3e23SJeff Roberson uint16_t uz_bucket_size_min; /* Min number of items in bucket */ 491*aabe13f1SMark Johnston uint16_t uz_reclaimers; /* pending reclaim operations. */ 492c6fd3e23SJeff Roberson 493c6fd3e23SJeff Roberson /* Offset 192, rare read-only. */ 494c6fd3e23SJeff Roberson struct sysctl_oid *uz_oid; /* sysctl oid pointer. */ 495c6fd3e23SJeff Roberson const char *uz_warning; /* Warning to print on failure */ 496c6fd3e23SJeff Roberson struct timeval uz_ratecheck; /* Warnings rate-limiting */ 497c6fd3e23SJeff Roberson struct task uz_maxaction; /* Task to run when at limit */ 498c6fd3e23SJeff Roberson 499c6fd3e23SJeff Roberson /* Offset 256. */ 500c6fd3e23SJeff Roberson struct mtx uz_cross_lock; /* Cross domain free lock */ 50154503a13SJonathan T. Looney 5028355f576SJeff Roberson /* 5038355f576SJeff Roberson * This HAS to be the last item because we adjust the zone size 5048355f576SJeff Roberson * based on NCPU and then allocate the space for the zones. 5058355f576SJeff Roberson */ 506ab3185d1SJeff Roberson struct uma_cache uz_cpu[]; /* Per cpu caches */ 507ab3185d1SJeff Roberson 508c6fd3e23SJeff Roberson /* domains follow here. */ 5098355f576SJeff Roberson }; 5108355f576SJeff Roberson 511b60f5b79SJeff Roberson /* 5124bd61e19SJeff Roberson * Macros for interpreting the uz_items field. 20 bits of sleeper count 5134bd61e19SJeff Roberson * and 44 bit of item count. 5144bd61e19SJeff Roberson */ 5154bd61e19SJeff Roberson #define UZ_ITEMS_SLEEPER_SHIFT 44LL 5164bd61e19SJeff Roberson #define UZ_ITEMS_SLEEPERS_MAX ((1 << (64 - UZ_ITEMS_SLEEPER_SHIFT)) - 1) 5174bd61e19SJeff Roberson #define UZ_ITEMS_COUNT_MASK ((1LL << UZ_ITEMS_SLEEPER_SHIFT) - 1) 5184bd61e19SJeff Roberson #define UZ_ITEMS_COUNT(x) ((x) & UZ_ITEMS_COUNT_MASK) 5194bd61e19SJeff Roberson #define UZ_ITEMS_SLEEPERS(x) ((x) >> UZ_ITEMS_SLEEPER_SHIFT) 5204bd61e19SJeff Roberson #define UZ_ITEMS_SLEEPER (1LL << UZ_ITEMS_SLEEPER_SHIFT) 5214bd61e19SJeff Roberson 522727c6918SJeff Roberson #define ZONE_ASSERT_COLD(z) \ 52331c251a0SJeff Roberson KASSERT(uma_zone_get_allocs((z)) == 0, \ 524727c6918SJeff Roberson ("zone %s initialization after use.", (z)->uz_name)) 525727c6918SJeff Roberson 526a2e19465SEric van Gyzen /* Domains are contiguous after the last CPU */ 527a2e19465SEric van Gyzen #define ZDOM_GET(z, n) \ 528a2e19465SEric van Gyzen (&((uma_zone_domain_t)&(z)->uz_cpu[mp_maxid + 1])[n]) 529a2e19465SEric van Gyzen 5305e4bb93cSKip Macy #undef UMA_ALIGN 5315e4bb93cSKip Macy 532af17e9a9SRobert Watson #ifdef _KERNEL 5338355f576SJeff Roberson /* Internal prototypes */ 53485dcf349SGleb Smirnoff static __inline uma_slab_t hash_sfind(struct uma_hash *hash, uint8_t *data); 5358355f576SJeff Roberson 5368355f576SJeff Roberson /* Lock Macros */ 5378355f576SJeff Roberson 5388b987a77SJeff Roberson #define KEG_LOCKPTR(k, d) (struct mtx *)&(k)->uk_domain[(d)].ud_lock 5398b987a77SJeff Roberson #define KEG_LOCK_INIT(k, d, lc) \ 54028bc4419SJeff Roberson do { \ 54128bc4419SJeff Roberson if ((lc)) \ 5428b987a77SJeff Roberson mtx_init(KEG_LOCKPTR(k, d), (k)->uk_name, \ 543e20a199fSJeff Roberson (k)->uk_name, MTX_DEF | MTX_DUPOK); \ 54428bc4419SJeff Roberson else \ 5458b987a77SJeff Roberson mtx_init(KEG_LOCKPTR(k, d), (k)->uk_name, \ 54628bc4419SJeff Roberson "UMA zone", MTX_DEF | MTX_DUPOK); \ 54728bc4419SJeff Roberson } while (0) 54828bc4419SJeff Roberson 5498b987a77SJeff Roberson #define KEG_LOCK_FINI(k, d) mtx_destroy(KEG_LOCKPTR(k, d)) 5508b987a77SJeff Roberson #define KEG_LOCK(k, d) \ 5518b987a77SJeff Roberson ({ mtx_lock(KEG_LOCKPTR(k, d)); KEG_LOCKPTR(k, d); }) 5528b987a77SJeff Roberson #define KEG_UNLOCK(k, d) mtx_unlock(KEG_LOCKPTR(k, d)) 5538b987a77SJeff Roberson #define KEG_LOCK_ASSERT(k, d) mtx_assert(KEG_LOCKPTR(k, d), MA_OWNED) 554bb15d1c7SGleb Smirnoff 555bb15d1c7SGleb Smirnoff #define KEG_GET(zone, keg) do { \ 556bb15d1c7SGleb Smirnoff (keg) = (zone)->uz_keg; \ 557c6fd3e23SJeff Roberson KASSERT((void *)(keg) != NULL, \ 558bb15d1c7SGleb Smirnoff ("%s: Invalid zone %p type", __func__, (zone))); \ 559bb15d1c7SGleb Smirnoff } while (0) 560af526374SJeff Roberson 56154007ce8SMark Johnston #define KEG_ASSERT_COLD(k) \ 56254007ce8SMark Johnston KASSERT(uma_keg_get_allocs((k)) == 0, \ 56354007ce8SMark Johnston ("keg %s initialization after use.", (k)->uk_name)) 56454007ce8SMark Johnston 565c6fd3e23SJeff Roberson #define ZDOM_LOCK_INIT(z, zdom, lc) \ 566af526374SJeff Roberson do { \ 567af526374SJeff Roberson if ((lc)) \ 568c6fd3e23SJeff Roberson mtx_init(&(zdom)->uzd_lock, (z)->uz_name, \ 569af526374SJeff Roberson (z)->uz_name, MTX_DEF | MTX_DUPOK); \ 570af526374SJeff Roberson else \ 571c6fd3e23SJeff Roberson mtx_init(&(zdom)->uzd_lock, (z)->uz_name, \ 572af526374SJeff Roberson "UMA zone", MTX_DEF | MTX_DUPOK); \ 573af526374SJeff Roberson } while (0) 574c6fd3e23SJeff Roberson #define ZDOM_LOCK_FINI(z) mtx_destroy(&(z)->uzd_lock) 575c6fd3e23SJeff Roberson #define ZDOM_LOCK_ASSERT(z) mtx_assert(&(z)->uzd_lock, MA_OWNED) 576af526374SJeff Roberson 577c6fd3e23SJeff Roberson #define ZDOM_LOCK(z) mtx_lock(&(z)->uzd_lock) 578c6fd3e23SJeff Roberson #define ZDOM_OWNED(z) (mtx_owner(&(z)->uzd_lock) != NULL) 579c6fd3e23SJeff Roberson #define ZDOM_UNLOCK(z) mtx_unlock(&(z)->uzd_lock) 580c6fd3e23SJeff Roberson 581c6fd3e23SJeff Roberson #define ZONE_LOCK(z) ZDOM_LOCK(ZDOM_GET((z), 0)) 582c6fd3e23SJeff Roberson #define ZONE_UNLOCK(z) ZDOM_UNLOCK(ZDOM_GET((z), 0)) 583*aabe13f1SMark Johnston #define ZONE_LOCKPTR(z) (&ZDOM_GET((z), 0)->uzd_lock) 5848355f576SJeff Roberson 58591d947bfSJeff Roberson #define ZONE_CROSS_LOCK_INIT(z) \ 58691d947bfSJeff Roberson mtx_init(&(z)->uz_cross_lock, "UMA Cross", NULL, MTX_DEF) 58791d947bfSJeff Roberson #define ZONE_CROSS_LOCK(z) mtx_lock(&(z)->uz_cross_lock) 58891d947bfSJeff Roberson #define ZONE_CROSS_UNLOCK(z) mtx_unlock(&(z)->uz_cross_lock) 58991d947bfSJeff Roberson #define ZONE_CROSS_LOCK_FINI(z) mtx_destroy(&(z)->uz_cross_lock) 59091d947bfSJeff Roberson 5918355f576SJeff Roberson /* 5928355f576SJeff Roberson * Find a slab within a hash table. This is used for OFFPAGE zones to lookup 5938355f576SJeff Roberson * the slab structure. 5948355f576SJeff Roberson * 5958355f576SJeff Roberson * Arguments: 5968355f576SJeff Roberson * hash The hash table to search. 5978355f576SJeff Roberson * data The base page of the item. 5988355f576SJeff Roberson * 5998355f576SJeff Roberson * Returns: 6008355f576SJeff Roberson * A pointer to a slab if successful, else NULL. 6018355f576SJeff Roberson */ 6028355f576SJeff Roberson static __inline uma_slab_t 60385dcf349SGleb Smirnoff hash_sfind(struct uma_hash *hash, uint8_t *data) 6048355f576SJeff Roberson { 6051e0701e1SJeff Roberson uma_hash_slab_t slab; 6066929b7d1SPedro F. Giffuni u_int hval; 6078355f576SJeff Roberson 6088355f576SJeff Roberson hval = UMA_HASH(hash, data); 6098355f576SJeff Roberson 6101e0701e1SJeff Roberson LIST_FOREACH(slab, &hash->uh_slab_hash[hval], uhs_hlink) { 6111e0701e1SJeff Roberson if ((uint8_t *)slab->uhs_data == data) 6121e0701e1SJeff Roberson return (&slab->uhs_slab); 6138355f576SJeff Roberson } 6148355f576SJeff Roberson return (NULL); 6158355f576SJeff Roberson } 6168355f576SJeff Roberson 61799571dc3SJeff Roberson static __inline uma_slab_t 61899571dc3SJeff Roberson vtoslab(vm_offset_t va) 61999571dc3SJeff Roberson { 62099571dc3SJeff Roberson vm_page_t p; 62199571dc3SJeff Roberson 62299571dc3SJeff Roberson p = PHYS_TO_VM_PAGE(pmap_kextract(va)); 623584061b4SJeff Roberson return (p->plinks.uma.slab); 62499571dc3SJeff Roberson } 62599571dc3SJeff Roberson 62699571dc3SJeff Roberson static __inline void 627584061b4SJeff Roberson vtozoneslab(vm_offset_t va, uma_zone_t *zone, uma_slab_t *slab) 62899571dc3SJeff Roberson { 62999571dc3SJeff Roberson vm_page_t p; 63099571dc3SJeff Roberson 6316fc96493SOlivier Houchard p = PHYS_TO_VM_PAGE(pmap_kextract(va)); 632584061b4SJeff Roberson *slab = p->plinks.uma.slab; 633584061b4SJeff Roberson *zone = p->plinks.uma.zone; 634584061b4SJeff Roberson } 635584061b4SJeff Roberson 636584061b4SJeff Roberson static __inline void 637584061b4SJeff Roberson vsetzoneslab(vm_offset_t va, uma_zone_t zone, uma_slab_t slab) 638584061b4SJeff Roberson { 639584061b4SJeff Roberson vm_page_t p; 640584061b4SJeff Roberson 641584061b4SJeff Roberson p = PHYS_TO_VM_PAGE(pmap_kextract(va)); 642584061b4SJeff Roberson p->plinks.uma.slab = slab; 643584061b4SJeff Roberson p->plinks.uma.zone = zone; 64499571dc3SJeff Roberson } 64599571dc3SJeff Roberson 6466d6a03d7SJeff Roberson extern unsigned long uma_kmem_limit; 6476d6a03d7SJeff Roberson extern unsigned long uma_kmem_total; 6486d6a03d7SJeff Roberson 6496d6a03d7SJeff Roberson /* Adjust bytes under management by UMA. */ 6506d6a03d7SJeff Roberson static inline void 6516d6a03d7SJeff Roberson uma_total_dec(unsigned long size) 6526d6a03d7SJeff Roberson { 6536d6a03d7SJeff Roberson 6546d6a03d7SJeff Roberson atomic_subtract_long(&uma_kmem_total, size); 6556d6a03d7SJeff Roberson } 6566d6a03d7SJeff Roberson 6576d6a03d7SJeff Roberson static inline void 6586d6a03d7SJeff Roberson uma_total_inc(unsigned long size) 6596d6a03d7SJeff Roberson { 6606d6a03d7SJeff Roberson 6616d6a03d7SJeff Roberson if (atomic_fetchadd_long(&uma_kmem_total, size) > uma_kmem_limit) 6626d6a03d7SJeff Roberson uma_reclaim_wakeup(); 6636d6a03d7SJeff Roberson } 6646d6a03d7SJeff Roberson 66548eea375SJeff Roberson /* 66648eea375SJeff Roberson * The following two functions may be defined by architecture specific code 667763df3ecSPedro F. Giffuni * if they can provide more efficient allocation functions. This is useful 66848eea375SJeff Roberson * for using direct mapped addresses. 66948eea375SJeff Roberson */ 670ab3185d1SJeff Roberson void *uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, 671ab3185d1SJeff Roberson uint8_t *pflag, int wait); 672f2c2231eSRyan Stone void uma_small_free(void *mem, vm_size_t size, uint8_t flags); 6732e47807cSJeff Roberson 6742e47807cSJeff Roberson /* Set a global soft limit on UMA managed memory. */ 6752e47807cSJeff Roberson void uma_set_limit(unsigned long limit); 676c6fd3e23SJeff Roberson 677af17e9a9SRobert Watson #endif /* _KERNEL */ 67848eea375SJeff Roberson 6798355f576SJeff Roberson #endif /* VM_UMA_INT_H */ 680