1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * CDDL HEADER START 3*0Sstevel@tonic-gate * 4*0Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*0Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*0Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*0Sstevel@tonic-gate * with the License. 8*0Sstevel@tonic-gate * 9*0Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*0Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*0Sstevel@tonic-gate * See the License for the specific language governing permissions 12*0Sstevel@tonic-gate * and limitations under the License. 13*0Sstevel@tonic-gate * 14*0Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*0Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*0Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*0Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*0Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * CDDL HEADER END 21*0Sstevel@tonic-gate */ 22*0Sstevel@tonic-gate /* 23*0Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24*0Sstevel@tonic-gate * Use is subject to license terms. 25*0Sstevel@tonic-gate */ 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate #ifndef _UMEM_IMPL_H 28*0Sstevel@tonic-gate #define _UMEM_IMPL_H 29*0Sstevel@tonic-gate 30*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*0Sstevel@tonic-gate 32*0Sstevel@tonic-gate #include <umem.h> 33*0Sstevel@tonic-gate 34*0Sstevel@tonic-gate #include <sys/sysmacros.h> 35*0Sstevel@tonic-gate #include <sys/time.h> 36*0Sstevel@tonic-gate #include <sys/vmem.h> 37*0Sstevel@tonic-gate #include <thread.h> 38*0Sstevel@tonic-gate 39*0Sstevel@tonic-gate #ifdef __cplusplus 40*0Sstevel@tonic-gate extern "C" { 41*0Sstevel@tonic-gate #endif 42*0Sstevel@tonic-gate 43*0Sstevel@tonic-gate /* 44*0Sstevel@tonic-gate * umem memory allocator: implementation-private data structures 45*0Sstevel@tonic-gate */ 46*0Sstevel@tonic-gate 47*0Sstevel@tonic-gate /* 48*0Sstevel@tonic-gate * Internal flags for umem_cache_create 49*0Sstevel@tonic-gate */ 50*0Sstevel@tonic-gate #define UMC_QCACHE 0x00100000 51*0Sstevel@tonic-gate #define UMC_INTERNAL 0x80000000 52*0Sstevel@tonic-gate 53*0Sstevel@tonic-gate /* 54*0Sstevel@tonic-gate * Cache flags 55*0Sstevel@tonic-gate */ 56*0Sstevel@tonic-gate #define UMF_AUDIT 0x00000001 /* transaction auditing */ 57*0Sstevel@tonic-gate #define UMF_DEADBEEF 0x00000002 /* deadbeef checking */ 58*0Sstevel@tonic-gate #define UMF_REDZONE 0x00000004 /* redzone checking */ 59*0Sstevel@tonic-gate #define UMF_CONTENTS 0x00000008 /* freed-buffer content logging */ 60*0Sstevel@tonic-gate #define UMF_CHECKSIGNAL 0x00000010 /* abort when in signal context */ 61*0Sstevel@tonic-gate #define UMF_NOMAGAZINE 0x00000020 /* disable per-cpu magazines */ 62*0Sstevel@tonic-gate #define UMF_FIREWALL 0x00000040 /* put all bufs before unmapped pages */ 63*0Sstevel@tonic-gate #define UMF_LITE 0x00000100 /* lightweight debugging */ 64*0Sstevel@tonic-gate 65*0Sstevel@tonic-gate #define UMF_HASH 0x00000200 /* cache has hash table */ 66*0Sstevel@tonic-gate #define UMF_RANDOMIZE 0x00000400 /* randomize other umem_flags */ 67*0Sstevel@tonic-gate 68*0Sstevel@tonic-gate #define UMF_BUFTAG (UMF_DEADBEEF | UMF_REDZONE) 69*0Sstevel@tonic-gate #define UMF_TOUCH (UMF_BUFTAG | UMF_LITE | UMF_CONTENTS) 70*0Sstevel@tonic-gate #define UMF_RANDOM (UMF_TOUCH | UMF_AUDIT | UMF_NOMAGAZINE) 71*0Sstevel@tonic-gate #define UMF_DEBUG (UMF_RANDOM | UMF_FIREWALL) 72*0Sstevel@tonic-gate 73*0Sstevel@tonic-gate #define UMEM_STACK_DEPTH umem_stack_depth 74*0Sstevel@tonic-gate 75*0Sstevel@tonic-gate #define UMEM_FREE_PATTERN 0xdeadbeefdeadbeefULL 76*0Sstevel@tonic-gate #define UMEM_UNINITIALIZED_PATTERN 0xbaddcafebaddcafeULL 77*0Sstevel@tonic-gate #define UMEM_REDZONE_PATTERN 0xfeedfacefeedfaceULL 78*0Sstevel@tonic-gate #define UMEM_REDZONE_BYTE 0xbb 79*0Sstevel@tonic-gate 80*0Sstevel@tonic-gate #define UMEM_FATAL_FLAGS (UMEM_NOFAIL) 81*0Sstevel@tonic-gate #define UMEM_SLEEP_FLAGS (0) 82*0Sstevel@tonic-gate 83*0Sstevel@tonic-gate /* 84*0Sstevel@tonic-gate * Redzone size encodings for umem_alloc() / umem_free(). We encode the 85*0Sstevel@tonic-gate * allocation size, rather than storing it directly, so that umem_free() 86*0Sstevel@tonic-gate * can distinguish frees of the wrong size from redzone violations. 87*0Sstevel@tonic-gate */ 88*0Sstevel@tonic-gate #define UMEM_SIZE_ENCODE(x) (251 * (x) + 1) 89*0Sstevel@tonic-gate #define UMEM_SIZE_DECODE(x) ((x) / 251) 90*0Sstevel@tonic-gate #define UMEM_SIZE_VALID(x) ((x) % 251 == 1) 91*0Sstevel@tonic-gate 92*0Sstevel@tonic-gate /* 93*0Sstevel@tonic-gate * The bufctl (buffer control) structure keeps some minimal information 94*0Sstevel@tonic-gate * about each buffer: its address, its slab, and its current linkage, 95*0Sstevel@tonic-gate * which is either on the slab's freelist (if the buffer is free), or 96*0Sstevel@tonic-gate * on the cache's buf-to-bufctl hash table (if the buffer is allocated). 97*0Sstevel@tonic-gate * In the case of non-hashed, or "raw", caches (the common case), only 98*0Sstevel@tonic-gate * the freelist linkage is necessary: the buffer address is at a fixed 99*0Sstevel@tonic-gate * offset from the bufctl address, and the slab is at the end of the page. 100*0Sstevel@tonic-gate * 101*0Sstevel@tonic-gate * NOTE: bc_next must be the first field; raw buffers have linkage only. 102*0Sstevel@tonic-gate */ 103*0Sstevel@tonic-gate typedef struct umem_bufctl { 104*0Sstevel@tonic-gate struct umem_bufctl *bc_next; /* next bufctl struct */ 105*0Sstevel@tonic-gate void *bc_addr; /* address of buffer */ 106*0Sstevel@tonic-gate struct umem_slab *bc_slab; /* controlling slab */ 107*0Sstevel@tonic-gate } umem_bufctl_t; 108*0Sstevel@tonic-gate 109*0Sstevel@tonic-gate /* 110*0Sstevel@tonic-gate * The UMF_AUDIT version of the bufctl structure. The beginning of this 111*0Sstevel@tonic-gate * structure must be identical to the normal bufctl structure so that 112*0Sstevel@tonic-gate * pointers are interchangeable. 113*0Sstevel@tonic-gate */ 114*0Sstevel@tonic-gate 115*0Sstevel@tonic-gate #define UMEM_BUFCTL_AUDIT_SIZE_DEPTH(frames) \ 116*0Sstevel@tonic-gate ((size_t)(&((umem_bufctl_audit_t *)0)->bc_stack[frames])) 117*0Sstevel@tonic-gate 118*0Sstevel@tonic-gate /* 119*0Sstevel@tonic-gate * umem_bufctl_audits must be allocated from a UMC_NOHASH cache, so we 120*0Sstevel@tonic-gate * require that 2 of them, plus 2 buftags, plus a umem_slab_t, all fit on 121*0Sstevel@tonic-gate * a single page. 122*0Sstevel@tonic-gate * 123*0Sstevel@tonic-gate * For ILP32, this is about 1000 frames. 124*0Sstevel@tonic-gate * For LP64, this is about 490 frames. 125*0Sstevel@tonic-gate */ 126*0Sstevel@tonic-gate 127*0Sstevel@tonic-gate #define UMEM_BUFCTL_AUDIT_ALIGN 32 128*0Sstevel@tonic-gate 129*0Sstevel@tonic-gate #define UMEM_BUFCTL_AUDIT_MAX_SIZE \ 130*0Sstevel@tonic-gate (P2ALIGN((PAGESIZE - sizeof (umem_slab_t))/2 - \ 131*0Sstevel@tonic-gate sizeof (umem_buftag_t), UMEM_BUFCTL_AUDIT_ALIGN)) 132*0Sstevel@tonic-gate 133*0Sstevel@tonic-gate #define UMEM_MAX_STACK_DEPTH \ 134*0Sstevel@tonic-gate ((UMEM_BUFCTL_AUDIT_MAX_SIZE - \ 135*0Sstevel@tonic-gate UMEM_BUFCTL_AUDIT_SIZE_DEPTH(0)) / sizeof (uintptr_t)) 136*0Sstevel@tonic-gate 137*0Sstevel@tonic-gate typedef struct umem_bufctl_audit { 138*0Sstevel@tonic-gate struct umem_bufctl *bc_next; /* next bufctl struct */ 139*0Sstevel@tonic-gate void *bc_addr; /* address of buffer */ 140*0Sstevel@tonic-gate struct umem_slab *bc_slab; /* controlling slab */ 141*0Sstevel@tonic-gate umem_cache_t *bc_cache; /* controlling cache */ 142*0Sstevel@tonic-gate hrtime_t bc_timestamp; /* transaction time */ 143*0Sstevel@tonic-gate thread_t bc_thread; /* thread doing transaction */ 144*0Sstevel@tonic-gate struct umem_bufctl *bc_lastlog; /* last log entry */ 145*0Sstevel@tonic-gate void *bc_contents; /* contents at last free */ 146*0Sstevel@tonic-gate int bc_depth; /* stack depth */ 147*0Sstevel@tonic-gate uintptr_t bc_stack[1]; /* pc stack */ 148*0Sstevel@tonic-gate } umem_bufctl_audit_t; 149*0Sstevel@tonic-gate 150*0Sstevel@tonic-gate #define UMEM_LOCAL_BUFCTL_AUDIT(bcpp) \ 151*0Sstevel@tonic-gate *(bcpp) = (umem_bufctl_audit_t *) \ 152*0Sstevel@tonic-gate alloca(UMEM_BUFCTL_AUDIT_SIZE) 153*0Sstevel@tonic-gate 154*0Sstevel@tonic-gate #define UMEM_BUFCTL_AUDIT_SIZE \ 155*0Sstevel@tonic-gate UMEM_BUFCTL_AUDIT_SIZE_DEPTH(UMEM_STACK_DEPTH) 156*0Sstevel@tonic-gate 157*0Sstevel@tonic-gate /* 158*0Sstevel@tonic-gate * A umem_buftag structure is appended to each buffer whenever any of the 159*0Sstevel@tonic-gate * UMF_BUFTAG flags (UMF_DEADBEEF, UMF_REDZONE, UMF_VERIFY) are set. 160*0Sstevel@tonic-gate */ 161*0Sstevel@tonic-gate typedef struct umem_buftag { 162*0Sstevel@tonic-gate uint64_t bt_redzone; /* 64-bit redzone pattern */ 163*0Sstevel@tonic-gate umem_bufctl_t *bt_bufctl; /* bufctl */ 164*0Sstevel@tonic-gate intptr_t bt_bxstat; /* bufctl ^ (alloc/free) */ 165*0Sstevel@tonic-gate } umem_buftag_t; 166*0Sstevel@tonic-gate 167*0Sstevel@tonic-gate #define UMEM_BUFTAG(cp, buf) \ 168*0Sstevel@tonic-gate ((umem_buftag_t *)((char *)(buf) + (cp)->cache_buftag)) 169*0Sstevel@tonic-gate 170*0Sstevel@tonic-gate #define UMEM_BUFCTL(cp, buf) \ 171*0Sstevel@tonic-gate ((umem_bufctl_t *)((char *)(buf) + (cp)->cache_bufctl)) 172*0Sstevel@tonic-gate 173*0Sstevel@tonic-gate #define UMEM_BUF(cp, bcp) \ 174*0Sstevel@tonic-gate ((void *)((char *)(bcp) - (cp)->cache_bufctl)) 175*0Sstevel@tonic-gate 176*0Sstevel@tonic-gate #define UMEM_SLAB(cp, buf) \ 177*0Sstevel@tonic-gate ((umem_slab_t *)P2END((uintptr_t)(buf), (cp)->cache_slabsize) - 1) 178*0Sstevel@tonic-gate 179*0Sstevel@tonic-gate #define UMEM_CPU_CACHE(cp, cpu) \ 180*0Sstevel@tonic-gate (umem_cpu_cache_t *)((char *)cp + cpu->cpu_cache_offset) 181*0Sstevel@tonic-gate 182*0Sstevel@tonic-gate #define UMEM_MAGAZINE_VALID(cp, mp) \ 183*0Sstevel@tonic-gate (((umem_slab_t *)P2END((uintptr_t)(mp), PAGESIZE) - 1)->slab_cache == \ 184*0Sstevel@tonic-gate (cp)->cache_magtype->mt_cache) 185*0Sstevel@tonic-gate 186*0Sstevel@tonic-gate #define UMEM_SLAB_MEMBER(sp, buf) \ 187*0Sstevel@tonic-gate ((size_t)(buf) - (size_t)(sp)->slab_base < \ 188*0Sstevel@tonic-gate (sp)->slab_cache->cache_slabsize) 189*0Sstevel@tonic-gate 190*0Sstevel@tonic-gate #define UMEM_BUFTAG_ALLOC 0xa110c8edUL 191*0Sstevel@tonic-gate #define UMEM_BUFTAG_FREE 0xf4eef4eeUL 192*0Sstevel@tonic-gate 193*0Sstevel@tonic-gate typedef struct umem_slab { 194*0Sstevel@tonic-gate struct umem_cache *slab_cache; /* controlling cache */ 195*0Sstevel@tonic-gate void *slab_base; /* base of allocated memory */ 196*0Sstevel@tonic-gate struct umem_slab *slab_next; /* next slab on freelist */ 197*0Sstevel@tonic-gate struct umem_slab *slab_prev; /* prev slab on freelist */ 198*0Sstevel@tonic-gate struct umem_bufctl *slab_head; /* first free buffer */ 199*0Sstevel@tonic-gate long slab_refcnt; /* outstanding allocations */ 200*0Sstevel@tonic-gate long slab_chunks; /* chunks (bufs) in this slab */ 201*0Sstevel@tonic-gate } umem_slab_t; 202*0Sstevel@tonic-gate 203*0Sstevel@tonic-gate #define UMEM_HASH_INITIAL 64 204*0Sstevel@tonic-gate 205*0Sstevel@tonic-gate #define UMEM_HASH(cp, buf) \ 206*0Sstevel@tonic-gate ((cp)->cache_hash_table + \ 207*0Sstevel@tonic-gate (((uintptr_t)(buf) >> (cp)->cache_hash_shift) & (cp)->cache_hash_mask)) 208*0Sstevel@tonic-gate 209*0Sstevel@tonic-gate typedef struct umem_magazine { 210*0Sstevel@tonic-gate void *mag_next; 211*0Sstevel@tonic-gate void *mag_round[1]; /* one or more rounds */ 212*0Sstevel@tonic-gate } umem_magazine_t; 213*0Sstevel@tonic-gate 214*0Sstevel@tonic-gate /* 215*0Sstevel@tonic-gate * The magazine types for fast per-cpu allocation 216*0Sstevel@tonic-gate */ 217*0Sstevel@tonic-gate typedef struct umem_magtype { 218*0Sstevel@tonic-gate int mt_magsize; /* magazine size (number of rounds) */ 219*0Sstevel@tonic-gate int mt_align; /* magazine alignment */ 220*0Sstevel@tonic-gate size_t mt_minbuf; /* all smaller buffers qualify */ 221*0Sstevel@tonic-gate size_t mt_maxbuf; /* no larger buffers qualify */ 222*0Sstevel@tonic-gate umem_cache_t *mt_cache; /* magazine cache */ 223*0Sstevel@tonic-gate } umem_magtype_t; 224*0Sstevel@tonic-gate 225*0Sstevel@tonic-gate #define UMEM_CPU_CACHE_SIZE 64 /* must be power of 2 */ 226*0Sstevel@tonic-gate #define UMEM_CPU_PAD (UMEM_CPU_CACHE_SIZE - sizeof (mutex_t) - \ 227*0Sstevel@tonic-gate 2 * sizeof (uint_t) - 2 * sizeof (void *) - 4 * sizeof (int)) 228*0Sstevel@tonic-gate #define UMEM_CACHE_SIZE(ncpus) \ 229*0Sstevel@tonic-gate ((size_t)(&((umem_cache_t *)0)->cache_cpu[ncpus])) 230*0Sstevel@tonic-gate 231*0Sstevel@tonic-gate typedef struct umem_cpu_cache { 232*0Sstevel@tonic-gate mutex_t cc_lock; /* protects this cpu's local cache */ 233*0Sstevel@tonic-gate uint_t cc_alloc; /* allocations from this cpu */ 234*0Sstevel@tonic-gate uint_t cc_free; /* frees to this cpu */ 235*0Sstevel@tonic-gate umem_magazine_t *cc_loaded; /* the currently loaded magazine */ 236*0Sstevel@tonic-gate umem_magazine_t *cc_ploaded; /* the previously loaded magazine */ 237*0Sstevel@tonic-gate int cc_rounds; /* number of objects in loaded mag */ 238*0Sstevel@tonic-gate int cc_prounds; /* number of objects in previous mag */ 239*0Sstevel@tonic-gate int cc_magsize; /* number of rounds in a full mag */ 240*0Sstevel@tonic-gate int cc_flags; /* CPU-local copy of cache_flags */ 241*0Sstevel@tonic-gate #ifndef _LP64 242*0Sstevel@tonic-gate char cc_pad[UMEM_CPU_PAD]; /* for nice alignment (32-bit) */ 243*0Sstevel@tonic-gate #endif 244*0Sstevel@tonic-gate } umem_cpu_cache_t; 245*0Sstevel@tonic-gate 246*0Sstevel@tonic-gate /* 247*0Sstevel@tonic-gate * The magazine lists used in the depot. 248*0Sstevel@tonic-gate */ 249*0Sstevel@tonic-gate typedef struct umem_maglist { 250*0Sstevel@tonic-gate umem_magazine_t *ml_list; /* magazine list */ 251*0Sstevel@tonic-gate long ml_total; /* number of magazines */ 252*0Sstevel@tonic-gate long ml_min; /* min since last update */ 253*0Sstevel@tonic-gate long ml_reaplimit; /* max reapable magazines */ 254*0Sstevel@tonic-gate uint64_t ml_alloc; /* allocations from this list */ 255*0Sstevel@tonic-gate } umem_maglist_t; 256*0Sstevel@tonic-gate 257*0Sstevel@tonic-gate #define UMEM_CACHE_NAMELEN 31 258*0Sstevel@tonic-gate 259*0Sstevel@tonic-gate struct umem_cache { 260*0Sstevel@tonic-gate /* 261*0Sstevel@tonic-gate * Statistics 262*0Sstevel@tonic-gate */ 263*0Sstevel@tonic-gate uint64_t cache_slab_create; /* slab creates */ 264*0Sstevel@tonic-gate uint64_t cache_slab_destroy; /* slab destroys */ 265*0Sstevel@tonic-gate uint64_t cache_slab_alloc; /* slab layer allocations */ 266*0Sstevel@tonic-gate uint64_t cache_slab_free; /* slab layer frees */ 267*0Sstevel@tonic-gate uint64_t cache_alloc_fail; /* total failed allocations */ 268*0Sstevel@tonic-gate uint64_t cache_buftotal; /* total buffers */ 269*0Sstevel@tonic-gate uint64_t cache_bufmax; /* max buffers ever */ 270*0Sstevel@tonic-gate uint64_t cache_rescale; /* # of hash table rescales */ 271*0Sstevel@tonic-gate uint64_t cache_lookup_depth; /* hash lookup depth */ 272*0Sstevel@tonic-gate uint64_t cache_depot_contention; /* mutex contention count */ 273*0Sstevel@tonic-gate uint64_t cache_depot_contention_prev; /* previous snapshot */ 274*0Sstevel@tonic-gate 275*0Sstevel@tonic-gate /* 276*0Sstevel@tonic-gate * Cache properties 277*0Sstevel@tonic-gate */ 278*0Sstevel@tonic-gate char cache_name[UMEM_CACHE_NAMELEN + 1]; 279*0Sstevel@tonic-gate size_t cache_bufsize; /* object size */ 280*0Sstevel@tonic-gate size_t cache_align; /* object alignment */ 281*0Sstevel@tonic-gate umem_constructor_t *cache_constructor; 282*0Sstevel@tonic-gate umem_destructor_t *cache_destructor; 283*0Sstevel@tonic-gate umem_reclaim_t *cache_reclaim; 284*0Sstevel@tonic-gate void *cache_private; /* opaque arg to callbacks */ 285*0Sstevel@tonic-gate vmem_t *cache_arena; /* vmem source for slabs */ 286*0Sstevel@tonic-gate int cache_cflags; /* cache creation flags */ 287*0Sstevel@tonic-gate int cache_flags; /* various cache state info */ 288*0Sstevel@tonic-gate int cache_uflags; /* UMU_* flags */ 289*0Sstevel@tonic-gate uint32_t cache_mtbf; /* induced alloc failure rate */ 290*0Sstevel@tonic-gate umem_cache_t *cache_next; /* forward cache linkage */ 291*0Sstevel@tonic-gate umem_cache_t *cache_prev; /* backward cache linkage */ 292*0Sstevel@tonic-gate umem_cache_t *cache_unext; /* next in update list */ 293*0Sstevel@tonic-gate umem_cache_t *cache_uprev; /* prev in update list */ 294*0Sstevel@tonic-gate uint32_t cache_cpu_mask; /* mask for cpu offset */ 295*0Sstevel@tonic-gate 296*0Sstevel@tonic-gate /* 297*0Sstevel@tonic-gate * Slab layer 298*0Sstevel@tonic-gate */ 299*0Sstevel@tonic-gate mutex_t cache_lock; /* protects slab layer */ 300*0Sstevel@tonic-gate size_t cache_chunksize; /* buf + alignment [+ debug] */ 301*0Sstevel@tonic-gate size_t cache_slabsize; /* size of a slab */ 302*0Sstevel@tonic-gate size_t cache_bufctl; /* buf-to-bufctl distance */ 303*0Sstevel@tonic-gate size_t cache_buftag; /* buf-to-buftag distance */ 304*0Sstevel@tonic-gate size_t cache_verify; /* bytes to verify */ 305*0Sstevel@tonic-gate size_t cache_contents; /* bytes of saved content */ 306*0Sstevel@tonic-gate size_t cache_color; /* next slab color */ 307*0Sstevel@tonic-gate size_t cache_mincolor; /* maximum slab color */ 308*0Sstevel@tonic-gate size_t cache_maxcolor; /* maximum slab color */ 309*0Sstevel@tonic-gate size_t cache_hash_shift; /* get to interesting bits */ 310*0Sstevel@tonic-gate size_t cache_hash_mask; /* hash table mask */ 311*0Sstevel@tonic-gate umem_slab_t *cache_freelist; /* slab free list */ 312*0Sstevel@tonic-gate umem_slab_t cache_nullslab; /* end of freelist marker */ 313*0Sstevel@tonic-gate umem_cache_t *cache_bufctl_cache; /* source of bufctls */ 314*0Sstevel@tonic-gate umem_bufctl_t **cache_hash_table; /* hash table base */ 315*0Sstevel@tonic-gate /* 316*0Sstevel@tonic-gate * Depot layer 317*0Sstevel@tonic-gate */ 318*0Sstevel@tonic-gate mutex_t cache_depot_lock; /* protects depot */ 319*0Sstevel@tonic-gate umem_magtype_t *cache_magtype; /* magazine type */ 320*0Sstevel@tonic-gate umem_maglist_t cache_full; /* full magazines */ 321*0Sstevel@tonic-gate umem_maglist_t cache_empty; /* empty magazines */ 322*0Sstevel@tonic-gate 323*0Sstevel@tonic-gate /* 324*0Sstevel@tonic-gate * Per-CPU layer 325*0Sstevel@tonic-gate */ 326*0Sstevel@tonic-gate umem_cpu_cache_t cache_cpu[1]; /* cache_cpu_mask + 1 entries */ 327*0Sstevel@tonic-gate }; 328*0Sstevel@tonic-gate 329*0Sstevel@tonic-gate typedef struct umem_cpu_log_header { 330*0Sstevel@tonic-gate mutex_t clh_lock; 331*0Sstevel@tonic-gate char *clh_current; 332*0Sstevel@tonic-gate size_t clh_avail; 333*0Sstevel@tonic-gate int clh_chunk; 334*0Sstevel@tonic-gate int clh_hits; 335*0Sstevel@tonic-gate char clh_pad[64 - sizeof (mutex_t) - sizeof (char *) - 336*0Sstevel@tonic-gate sizeof (size_t) - 2 * sizeof (int)]; 337*0Sstevel@tonic-gate } umem_cpu_log_header_t; 338*0Sstevel@tonic-gate 339*0Sstevel@tonic-gate typedef struct umem_log_header { 340*0Sstevel@tonic-gate mutex_t lh_lock; 341*0Sstevel@tonic-gate char *lh_base; 342*0Sstevel@tonic-gate int *lh_free; 343*0Sstevel@tonic-gate size_t lh_chunksize; 344*0Sstevel@tonic-gate int lh_nchunks; 345*0Sstevel@tonic-gate int lh_head; 346*0Sstevel@tonic-gate int lh_tail; 347*0Sstevel@tonic-gate int lh_hits; 348*0Sstevel@tonic-gate umem_cpu_log_header_t lh_cpu[1]; /* actually umem_max_ncpus */ 349*0Sstevel@tonic-gate } umem_log_header_t; 350*0Sstevel@tonic-gate 351*0Sstevel@tonic-gate typedef struct umem_cpu { 352*0Sstevel@tonic-gate uint32_t cpu_cache_offset; 353*0Sstevel@tonic-gate uint32_t cpu_number; 354*0Sstevel@tonic-gate } umem_cpu_t; 355*0Sstevel@tonic-gate 356*0Sstevel@tonic-gate #define UMEM_MAXBUF 16384 357*0Sstevel@tonic-gate 358*0Sstevel@tonic-gate #define UMEM_ALIGN 8 /* min guaranteed alignment */ 359*0Sstevel@tonic-gate #define UMEM_ALIGN_SHIFT 3 /* log2(UMEM_ALIGN) */ 360*0Sstevel@tonic-gate #define UMEM_VOID_FRACTION 8 /* never waste more than 1/8 of slab */ 361*0Sstevel@tonic-gate 362*0Sstevel@tonic-gate /* 363*0Sstevel@tonic-gate * For 64 bits, buffers >= 16 bytes must be 16-byte aligned 364*0Sstevel@tonic-gate */ 365*0Sstevel@tonic-gate #ifdef _LP64 366*0Sstevel@tonic-gate #define UMEM_SECOND_ALIGN 16 367*0Sstevel@tonic-gate #else 368*0Sstevel@tonic-gate #define UMEM_SECOND_ALIGN UMEM_ALIGN 369*0Sstevel@tonic-gate #endif 370*0Sstevel@tonic-gate 371*0Sstevel@tonic-gate #define MALLOC_MAGIC 0x3a10c000 /* 8-byte tag */ 372*0Sstevel@tonic-gate #define MEMALIGN_MAGIC 0x3e3a1000 373*0Sstevel@tonic-gate 374*0Sstevel@tonic-gate #ifdef _LP64 375*0Sstevel@tonic-gate #define MALLOC_SECOND_MAGIC 0x16ba7000 /* 8-byte tag, 16-aligned */ 376*0Sstevel@tonic-gate #define MALLOC_OVERSIZE_MAGIC 0x06e47000 /* 16-byte tag, _LP64 */ 377*0Sstevel@tonic-gate #endif 378*0Sstevel@tonic-gate 379*0Sstevel@tonic-gate #define UMEM_MALLOC_ENCODE(type, sz) (uint32_t)((type) - (sz)) 380*0Sstevel@tonic-gate #define UMEM_MALLOC_DECODE(stat, sz) (uint32_t)((stat) + (sz)) 381*0Sstevel@tonic-gate #define UMEM_FREE_PATTERN_32 (uint32_t)(UMEM_FREE_PATTERN) 382*0Sstevel@tonic-gate 383*0Sstevel@tonic-gate #define UMU_MAGAZINE_RESIZE 0x00000001 384*0Sstevel@tonic-gate #define UMU_HASH_RESCALE 0x00000002 385*0Sstevel@tonic-gate #define UMU_REAP 0x00000004 386*0Sstevel@tonic-gate #define UMU_NOTIFY 0x08000000 387*0Sstevel@tonic-gate #define UMU_ACTIVE 0x80000000 388*0Sstevel@tonic-gate 389*0Sstevel@tonic-gate #define UMEM_READY_INIT_FAILED -1 390*0Sstevel@tonic-gate #define UMEM_READY_STARTUP 1 391*0Sstevel@tonic-gate #define UMEM_READY_INITING 2 392*0Sstevel@tonic-gate #define UMEM_READY 3 393*0Sstevel@tonic-gate 394*0Sstevel@tonic-gate #ifdef UMEM_STANDALONE 395*0Sstevel@tonic-gate extern void umem_startup(caddr_t, size_t, size_t, caddr_t, caddr_t); 396*0Sstevel@tonic-gate extern int umem_add(caddr_t, size_t); 397*0Sstevel@tonic-gate #endif 398*0Sstevel@tonic-gate 399*0Sstevel@tonic-gate #ifdef __cplusplus 400*0Sstevel@tonic-gate } 401*0Sstevel@tonic-gate #endif 402*0Sstevel@tonic-gate 403*0Sstevel@tonic-gate #endif /* _UMEM_IMPL_H */ 404