2 * Copyright (c) 2005 Jeffrey M. Hsu. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of The DragonFly Project nor the names of its
16 * contributors may be used to endorse or promote products derived
17 * from this software without specific, prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #include <sys/param.h>
34 #include <sys/kernel.h>
35 #include <sys/systm.h>
36 #include <sys/callout.h>
37 #include <sys/globaldata.h>
38 #include <sys/malloc.h>
39 #include <sys/queue.h>
40 #include <sys/objcache.h>
41 #include <sys/spinlock.h>
42 #include <sys/thread.h>
43 #include <sys/thread2.h>
44 #include <sys/spinlock2.h>
46 static MALLOC_DEFINE(M_OBJCACHE
, "objcache", "Object Cache");
47 static MALLOC_DEFINE(M_OBJMAG
, "objcache magazine", "Object Cache Magazine");
49 #define INITIAL_MAG_CAPACITY 64
54 SLIST_ENTRY(magazine
) nextmagazine
;
58 SLIST_HEAD(magazinelist
, magazine
);
60 #define MAGAZINE_HDRSIZE __offsetof(struct magazine, objects[0])
61 #define MAGAZINE_CAPACITY_MAX 128
62 #define MAGAZINE_CAPACITY_MIN 4
65 * per-cluster cache of magazines
67 * All fields in this structure are protected by the spinlock.
69 struct magazinedepot
{
71 * The per-cpu object caches only exchanges completely full or
72 * completely empty magazines with the depot layer, so only have
73 * to cache these two types of magazines.
75 struct magazinelist fullmagazines
;
76 struct magazinelist emptymagazines
;
79 /* protect this structure */
82 /* magazines not yet allocated towards limit */
83 int unallocated_objects
;
84 int cluster_limit
; /* ref for adjustments */
86 /* infrequently used fields */
87 int waiting
; /* waiting for another cpu to
88 * return a full magazine to
90 int contested
; /* depot contention count */
94 * per-cpu object cache
95 * All fields in this structure are protected by crit_enter().
97 struct percpu_objcache
{
98 struct magazine
*loaded_magazine
; /* active magazine */
99 struct magazine
*previous_magazine
; /* backup magazine */
102 int gets_cumulative
; /* total calls to get */
103 int gets_null
; /* objcache_get returned NULL */
104 int puts_cumulative
; /* total calls to put */
105 int puts_othercluster
; /* returned to other cluster */
107 /* infrequently used fields */
108 int waiting
; /* waiting for a thread on this cpu to
109 * return an obj to the per-cpu cache */
112 /* only until we have NUMA cluster topology information XXX */
113 #define MAXCLUSTERS 1
114 #define myclusterid 0
115 #define CLUSTER_OF(obj) 0
118 * Two-level object cache consisting of NUMA cluster-level depots of
119 * fully loaded or completely empty magazines and cpu-level caches of
120 * individual objects.
125 /* object constructor and destructor from blank storage */
126 objcache_ctor_fn
*ctor
;
127 objcache_dtor_fn
*dtor
;
130 /* interface to underlying allocator */
131 objcache_alloc_fn
*alloc
;
132 objcache_free_fn
*free
;
133 void *allocator_args
;
135 LIST_ENTRY(objcache
) oc_next
;
136 int exhausted
; /* oops */
138 /* NUMA-cluster level caches */
139 struct magazinedepot depot
[MAXCLUSTERS
];
141 struct percpu_objcache cache_percpu
[]; /* per-cpu caches */
144 static struct spinlock objcachelist_spin
;
145 static LIST_HEAD(objcachelist
, objcache
) allobjcaches
;
146 static int magazine_capmin
;
147 static int magazine_capmax
;
149 static struct magazine
*
150 mag_alloc(int capacity
)
152 struct magazine
*mag
;
155 size
= __offsetof(struct magazine
, objects
[capacity
]);
156 KASSERT(size
> 0 && (size
& __VM_CACHELINE_MASK
) == 0,
157 ("magazine size is not multiple cache line size"));
159 mag
= kmalloc_cachealign(size
, M_OBJMAG
, M_INTWAIT
| M_ZERO
);
160 mag
->capacity
= capacity
;
166 mag_capacity_align(int mag_capacity
)
170 mag_size
= __VM_CACHELINE_ALIGN(
171 __offsetof(struct magazine
, objects
[mag_capacity
]));
172 mag_capacity
= (mag_size
- MAGAZINE_HDRSIZE
) / sizeof(void *);
178 * Utility routine for objects that don't require any de-construction.
182 null_dtor(void *obj
, void *privdata
)
188 null_ctor(void *obj
, void *privdata
, int ocflags
)
194 * Create an object cache.
197 objcache_create(const char *name
, int cluster_limit
, int nom_cache
,
198 objcache_ctor_fn
*ctor
, objcache_dtor_fn
*dtor
, void *privdata
,
199 objcache_alloc_fn
*alloc
, objcache_free_fn
*free
,
200 void *allocator_args
)
203 struct magazinedepot
*depot
;
210 * Allocate object cache structure
212 oc
= kmalloc_cachealign(
213 __offsetof(struct objcache
, cache_percpu
[ncpus
]),
214 M_OBJCACHE
, M_WAITOK
| M_ZERO
);
215 oc
->name
= kstrdup(name
, M_TEMP
);
216 oc
->ctor
= ctor
? ctor
: null_ctor
;
217 oc
->dtor
= dtor
? dtor
: null_dtor
;
218 oc
->privdata
= privdata
;
221 oc
->allocator_args
= allocator_args
;
224 * Initialize depot list(s).
226 depot
= &oc
->depot
[0];
228 spin_init(&depot
->spin
, "objcachedepot");
229 SLIST_INIT(&depot
->fullmagazines
);
230 SLIST_INIT(&depot
->emptymagazines
);
233 * Figure out the nominal number of free objects to cache and
234 * the magazine capacity. By default we want to cache up to
235 * half the cluster_limit. If there is no cluster_limit then
236 * we want to cache up to 128 objects.
239 nom_cache
= cluster_limit
/ 2;
240 if (cluster_limit
&& nom_cache
> cluster_limit
)
241 nom_cache
= cluster_limit
;
243 nom_cache
= INITIAL_MAG_CAPACITY
* 2;
246 * Magazine capacity for 2 active magazines per cpu plus 2
247 * magazines in the depot.
249 mag_capacity
= mag_capacity_align(nom_cache
/ (ncpus
+ 1) / 2 + 1);
250 if (mag_capacity
> magazine_capmax
)
251 mag_capacity
= magazine_capmax
;
252 else if (mag_capacity
< magazine_capmin
)
253 mag_capacity
= magazine_capmin
;
254 depot
->magcapacity
= mag_capacity
;
257 * The cluster_limit must be sufficient to have two magazines per
258 * cpu plus at least two magazines in the depot. However, because
259 * partial magazines can stay on the cpus what we really need here
260 * is to specify the number of extra magazines we allocate for the
263 * Use ~1B objects to mean 'unlimited'. A negative unallocated
264 * object count is possible due to dynamic adjustments so we can't
265 * use a negative number to mean 'unlimited'. We need some overflow
266 * capacity too due to the preallocated mags.
268 if (cluster_limit
== 0) {
269 depot
->unallocated_objects
= 0x40000000;
271 depot
->unallocated_objects
= ncpus
* mag_capacity
* 2 +
276 * This is a dynamic adjustment aid initialized to the callers
277 * expectations of the current limit.
279 depot
->cluster_limit
= cluster_limit
;
282 * Initialize per-cpu caches
284 for (cpuid
= 0; cpuid
< ncpus
; cpuid
++) {
285 struct percpu_objcache
*cache_percpu
= &oc
->cache_percpu
[cpuid
];
287 cache_percpu
->loaded_magazine
= mag_alloc(mag_capacity
);
288 cache_percpu
->previous_magazine
= mag_alloc(mag_capacity
);
292 * Compute how many empty magazines to place in the depot. This
293 * determines the retained cache size and is based on nom_cache.
295 * The actual cache size is larger because there are two magazines
296 * for each cpu as well but those can be in any fill state so we
297 * just can't count them.
299 * There is a minimum of two magazines in the depot.
301 nmagdepot
= nom_cache
/ mag_capacity
+ 1;
306 * Put empty magazines in depot
308 for (i
= 0; i
< nmagdepot
; i
++) {
309 struct magazine
*mag
= mag_alloc(mag_capacity
);
310 SLIST_INSERT_HEAD(&depot
->emptymagazines
, mag
, nextmagazine
);
313 spin_lock(&objcachelist_spin
);
314 LIST_INSERT_HEAD(&allobjcaches
, oc
, oc_next
);
315 spin_unlock(&objcachelist_spin
);
321 * Adjust the cluster limit. This is allowed to cause unallocated_objects
322 * to go negative. Note that due to the magazine hysteresis there is a
323 * limit to how much of the objcache can be reclaimed using this API to
327 objcache_set_cluster_limit(struct objcache
*oc
, int cluster_limit
)
329 struct magazinedepot
*depot
;
332 depot
= &oc
->depot
[myclusterid
];
333 if (depot
->cluster_limit
!= cluster_limit
) {
334 spin_lock(&depot
->spin
);
335 delta
= cluster_limit
- depot
->cluster_limit
;
336 depot
->unallocated_objects
+= delta
;
337 depot
->cluster_limit
= cluster_limit
;
338 spin_unlock(&depot
->spin
);
344 objcache_create_simple(malloc_type_t mtype
, size_t objsize
)
346 struct objcache_malloc_args
*margs
;
349 margs
= kmalloc(sizeof(*margs
), M_OBJCACHE
, M_WAITOK
|M_ZERO
);
350 margs
->objsize
= objsize
;
351 margs
->mtype
= mtype
;
352 oc
= objcache_create(mtype
->ks_shortdesc
, 0, 0,
354 objcache_malloc_alloc
, objcache_malloc_free
,
360 objcache_create_mbacked(malloc_type_t mtype
, size_t objsize
,
361 int cluster_limit
, int nom_cache
,
362 objcache_ctor_fn
*ctor
, objcache_dtor_fn
*dtor
,
365 struct objcache_malloc_args
*margs
;
368 margs
= kmalloc(sizeof(*margs
), M_OBJCACHE
, M_WAITOK
|M_ZERO
);
369 margs
->objsize
= objsize
;
370 margs
->mtype
= mtype
;
371 oc
= objcache_create(mtype
->ks_shortdesc
,
372 cluster_limit
, nom_cache
,
373 ctor
, dtor
, privdata
,
374 objcache_malloc_alloc
, objcache_malloc_free
,
380 #define MAGAZINE_EMPTY(mag) (mag->rounds == 0)
381 #define MAGAZINE_NOTEMPTY(mag) (mag->rounds != 0)
382 #define MAGAZINE_FULL(mag) (mag->rounds == mag->capacity)
384 #define swap(x, y) ({ struct magazine *t = x; x = y; y = t; })
387 * Get an object from the object cache.
389 * WARNING! ocflags are only used when we have to go to the underlying
390 * allocator, so we cannot depend on flags such as M_ZERO.
393 objcache_get(struct objcache
*oc
, int ocflags
)
395 struct percpu_objcache
*cpucache
= &oc
->cache_percpu
[mycpuid
];
396 struct magazine
*loadedmag
;
397 struct magazine
*emptymag
;
399 struct magazinedepot
*depot
;
401 KKASSERT((ocflags
& M_ZERO
) == 0);
403 ++cpucache
->gets_cumulative
;
407 * Loaded magazine has an object. This is the hot path.
408 * It is lock-free and uses a critical section to block
409 * out interrupt handlers on the same processor.
411 loadedmag
= cpucache
->loaded_magazine
;
412 if (MAGAZINE_NOTEMPTY(loadedmag
)) {
413 obj
= loadedmag
->objects
[--loadedmag
->rounds
];
418 /* Previous magazine has an object. */
419 if (MAGAZINE_NOTEMPTY(cpucache
->previous_magazine
)) {
420 swap(cpucache
->loaded_magazine
, cpucache
->previous_magazine
);
421 loadedmag
= cpucache
->loaded_magazine
;
422 obj
= loadedmag
->objects
[--loadedmag
->rounds
];
428 * Both magazines empty. Get a full magazine from the depot and
429 * move one of the empty ones to the depot.
431 * Obtain the depot spinlock.
433 * NOTE: Beyond this point, M_* flags are handled via oc->alloc()
435 depot
= &oc
->depot
[myclusterid
];
436 spin_lock(&depot
->spin
);
439 * Recheck the cpucache after obtaining the depot spinlock. This
440 * shouldn't be necessary now but don't take any chances.
442 if (MAGAZINE_NOTEMPTY(cpucache
->loaded_magazine
) ||
443 MAGAZINE_NOTEMPTY(cpucache
->previous_magazine
)
445 spin_unlock(&depot
->spin
);
449 /* Check if depot has a full magazine. */
450 if (!SLIST_EMPTY(&depot
->fullmagazines
)) {
451 emptymag
= cpucache
->previous_magazine
;
452 cpucache
->previous_magazine
= cpucache
->loaded_magazine
;
453 cpucache
->loaded_magazine
= SLIST_FIRST(&depot
->fullmagazines
);
454 SLIST_REMOVE_HEAD(&depot
->fullmagazines
, nextmagazine
);
457 * Return emptymag to the depot.
459 KKASSERT(MAGAZINE_EMPTY(emptymag
));
460 SLIST_INSERT_HEAD(&depot
->emptymagazines
,
461 emptymag
, nextmagazine
);
462 spin_unlock(&depot
->spin
);
467 * The depot does not have any non-empty magazines. If we have
468 * not hit our object limit we can allocate a new object using
469 * the back-end allocator.
471 * NOTE: unallocated_objects can wind up being negative due to
472 * objcache_set_cluster_limit() calls.
474 if (depot
->unallocated_objects
> 0) {
475 --depot
->unallocated_objects
;
476 spin_unlock(&depot
->spin
);
479 obj
= oc
->alloc(oc
->allocator_args
, ocflags
);
481 if (oc
->ctor(obj
, oc
->privdata
, ocflags
))
483 oc
->free(obj
, oc
->allocator_args
);
487 spin_lock(&depot
->spin
);
488 ++depot
->unallocated_objects
;
489 spin_unlock(&depot
->spin
);
495 * makes debugging easier when gets_cumulative does
496 * not include gets_null.
498 ++cpucache
->gets_null
;
499 --cpucache
->gets_cumulative
;
504 if (oc
->exhausted
== 0) {
505 kprintf("Warning, objcache(%s): Exhausted!\n", oc
->name
);
510 * Otherwise block if allowed to.
512 if ((ocflags
& (M_WAITOK
|M_NULLOK
)) == M_WAITOK
) {
515 ssleep(depot
, &depot
->spin
, 0, "objcache_get", 0);
518 spin_unlock(&depot
->spin
);
525 ++cpucache
->gets_null
;
526 --cpucache
->gets_cumulative
;
528 spin_unlock(&depot
->spin
);
533 * Wrapper for malloc allocation routines.
536 objcache_malloc_alloc(void *allocator_args
, int ocflags
)
538 struct objcache_malloc_args
*alloc_args
= allocator_args
;
540 return (kmalloc(alloc_args
->objsize
, alloc_args
->mtype
,
541 ocflags
& OC_MFLAGS
));
545 * Wrapper for malloc allocation routines, with initial zeroing
546 * (but objects are not zerod on reuse from cache).
549 objcache_malloc_alloc_zero(void *allocator_args
, int ocflags
)
551 struct objcache_malloc_args
*alloc_args
= allocator_args
;
553 return (kmalloc(alloc_args
->objsize
, alloc_args
->mtype
,
554 (ocflags
& OC_MFLAGS
) | M_ZERO
));
559 objcache_malloc_free(void *obj
, void *allocator_args
)
561 struct objcache_malloc_args
*alloc_args
= allocator_args
;
563 kfree(obj
, alloc_args
->mtype
);
567 * Wrapper for allocation policies that pre-allocate at initialization time
568 * and don't do run-time allocation.
571 objcache_nop_alloc(void *allocator_args
, int ocflags
)
577 objcache_nop_free(void *obj
, void *allocator_args
)
582 * Return an object to the object cache.
585 objcache_put(struct objcache
*oc
, void *obj
)
587 struct percpu_objcache
*cpucache
= &oc
->cache_percpu
[mycpuid
];
588 struct magazine
*loadedmag
;
589 struct magazinedepot
*depot
;
592 ++cpucache
->puts_cumulative
;
594 if (CLUSTER_OF(obj
) != myclusterid
) {
596 /* use lazy IPI to send object to owning cluster XXX todo */
597 ++cpucache
->puts_othercluster
;
605 * Free slot available in loaded magazine. This is the hot path.
606 * It is lock-free and uses a critical section to block out interrupt
607 * handlers on the same processor.
609 loadedmag
= cpucache
->loaded_magazine
;
610 if (!MAGAZINE_FULL(loadedmag
)) {
611 loadedmag
->objects
[loadedmag
->rounds
++] = obj
;
612 if (cpucache
->waiting
)
613 wakeup_mycpu(&oc
->depot
[myclusterid
]);
619 * Current magazine full, but previous magazine has room. XXX
621 if (!MAGAZINE_FULL(cpucache
->previous_magazine
)) {
622 swap(cpucache
->loaded_magazine
, cpucache
->previous_magazine
);
623 loadedmag
= cpucache
->loaded_magazine
;
624 loadedmag
->objects
[loadedmag
->rounds
++] = obj
;
625 if (cpucache
->waiting
)
626 wakeup_mycpu(&oc
->depot
[myclusterid
]);
632 * Both magazines full. Get an empty magazine from the depot and
633 * move a full loaded magazine to the depot. Even though the
634 * magazine may wind up with space available after we block on
635 * the spinlock, we still cycle it through to avoid the non-optimal
638 * Obtain the depot spinlock.
640 depot
= &oc
->depot
[myclusterid
];
641 spin_lock(&depot
->spin
);
644 * If an empty magazine is available in the depot, cycle it
647 if (!SLIST_EMPTY(&depot
->emptymagazines
)) {
648 loadedmag
= cpucache
->previous_magazine
;
649 cpucache
->previous_magazine
= cpucache
->loaded_magazine
;
650 cpucache
->loaded_magazine
= SLIST_FIRST(&depot
->emptymagazines
);
651 SLIST_REMOVE_HEAD(&depot
->emptymagazines
, nextmagazine
);
654 * Return loadedmag to the depot. Due to blocking it may
655 * not be entirely full and could even be empty.
657 if (MAGAZINE_EMPTY(loadedmag
)) {
658 SLIST_INSERT_HEAD(&depot
->emptymagazines
,
659 loadedmag
, nextmagazine
);
660 spin_unlock(&depot
->spin
);
662 SLIST_INSERT_HEAD(&depot
->fullmagazines
,
663 loadedmag
, nextmagazine
);
664 spin_unlock(&depot
->spin
);
672 * An empty mag is not available. This is a corner case which can
673 * occur due to cpus holding partially full magazines. Do not try
674 * to allocate a mag, just free the object.
676 ++depot
->unallocated_objects
;
677 spin_unlock(&depot
->spin
);
681 oc
->dtor(obj
, oc
->privdata
);
682 oc
->free(obj
, oc
->allocator_args
);
686 * The object is being put back into the cache, but the caller has
687 * indicated that the object is not in any shape to be reused and should
688 * be dtor'd immediately.
691 objcache_dtor(struct objcache
*oc
, void *obj
)
693 struct magazinedepot
*depot
;
695 depot
= &oc
->depot
[myclusterid
];
696 spin_lock(&depot
->spin
);
697 ++depot
->unallocated_objects
;
698 spin_unlock(&depot
->spin
);
701 oc
->dtor(obj
, oc
->privdata
);
702 oc
->free(obj
, oc
->allocator_args
);
706 * Deallocate all objects in a magazine and free the magazine if requested.
707 * When freeit is TRUE the magazine must already be disassociated from the
710 * Must be called with a critical section held when called with a per-cpu
711 * magazine. The magazine may be indirectly modified during the loop.
713 * If the magazine moves during a dtor the operation is aborted. This is
714 * only allowed when freeit is FALSE.
716 * The number of objects freed is returned.
719 mag_purge(struct objcache
*oc
, struct magazine
**magp
, int freeit
)
721 struct magazine
*mag
= *magp
;
726 while (mag
->rounds
) {
727 obj
= mag
->objects
[--mag
->rounds
];
728 oc
->dtor(obj
, oc
->privdata
); /* MAY BLOCK */
729 oc
->free(obj
, oc
->allocator_args
); /* MAY BLOCK */
733 * Cycle for interrupts.
735 if ((count
& 15) == 0) {
741 * mag may have become invalid either due to dtor/free
742 * blocking or interrupt cycling, do not derefernce it
746 kprintf("mag_purge: mag ripped out\n");
751 KKASSERT(*magp
== mag
);
753 kfree(mag
, M_OBJMAG
);
759 * Disassociate zero or more magazines from a magazine list associated with
760 * the depot, update the depot, and move the magazines to a temporary
763 * The caller must check the depot for waiters and wake it up, typically
764 * after disposing of the magazines this function loads onto the temporary
768 maglist_disassociate(struct magazinedepot
*depot
, struct magazinelist
*maglist
,
769 struct magazinelist
*tmplist
, boolean_t purgeall
)
771 struct magazine
*mag
;
773 while ((mag
= SLIST_FIRST(maglist
)) != NULL
) {
774 SLIST_REMOVE_HEAD(maglist
, nextmagazine
);
775 SLIST_INSERT_HEAD(tmplist
, mag
, nextmagazine
);
776 depot
->unallocated_objects
+= mag
->rounds
;
781 * Deallocate all magazines and their contents from the passed temporary
782 * list. The magazines have already been accounted for by their depots.
784 * The total number of rounds freed is returned. This number is typically
785 * only used to determine whether a wakeup on the depot is needed or not.
788 maglist_purge(struct objcache
*oc
, struct magazinelist
*maglist
)
790 struct magazine
*mag
;
794 * can't use SLIST_FOREACH because blocking releases the depot
798 while ((mag
= SLIST_FIRST(maglist
)) != NULL
) {
799 SLIST_REMOVE_HEAD(maglist
, nextmagazine
);
800 count
+= mag_purge(oc
, &mag
, TRUE
);
807 * De-allocates all magazines on the full and empty magazine lists.
809 * Because this routine is called with a spinlock held, the magazines
810 * can only be disassociated and moved to a temporary list, not freed.
812 * The caller is responsible for freeing the magazines.
815 depot_disassociate(struct magazinedepot
*depot
, struct magazinelist
*tmplist
)
817 maglist_disassociate(depot
, &depot
->fullmagazines
, tmplist
, TRUE
);
818 maglist_disassociate(depot
, &depot
->emptymagazines
, tmplist
, TRUE
);
822 * Try to free up some memory. Return as soon as some free memory is found.
823 * For each object cache on the reclaim list, first try the current per-cpu
824 * cache, then the full magazine depot.
827 objcache_reclaimlist(struct objcache
*oclist
[], int nlist
, int ocflags
)
830 struct percpu_objcache
*cpucache
;
831 struct magazinedepot
*depot
;
832 struct magazinelist tmplist
;
835 kprintf("objcache_reclaimlist\n");
837 SLIST_INIT(&tmplist
);
839 for (i
= 0; i
< nlist
; i
++) {
841 cpucache
= &oc
->cache_percpu
[mycpuid
];
842 depot
= &oc
->depot
[myclusterid
];
845 count
= mag_purge(oc
, &cpucache
->loaded_magazine
, FALSE
);
847 count
+= mag_purge(oc
, &cpucache
->previous_magazine
, FALSE
);
850 spin_lock(&depot
->spin
);
851 depot
->unallocated_objects
+= count
;
852 spin_unlock(&depot
->spin
);
857 spin_lock(&depot
->spin
);
858 maglist_disassociate(depot
, &depot
->fullmagazines
,
860 spin_unlock(&depot
->spin
);
861 count
= maglist_purge(oc
, &tmplist
);
872 * Destroy an object cache. Must have no existing references.
875 objcache_destroy(struct objcache
*oc
)
877 struct percpu_objcache
*cache_percpu
;
878 struct magazinedepot
*depot
;
879 int clusterid
, cpuid
;
880 struct magazinelist tmplist
;
882 spin_lock(&objcachelist_spin
);
883 LIST_REMOVE(oc
, oc_next
);
884 spin_unlock(&objcachelist_spin
);
886 SLIST_INIT(&tmplist
);
887 for (clusterid
= 0; clusterid
< MAXCLUSTERS
; clusterid
++) {
888 depot
= &oc
->depot
[clusterid
];
889 spin_lock(&depot
->spin
);
890 depot_disassociate(depot
, &tmplist
);
891 spin_unlock(&depot
->spin
);
893 maglist_purge(oc
, &tmplist
);
895 for (cpuid
= 0; cpuid
< ncpus
; cpuid
++) {
896 cache_percpu
= &oc
->cache_percpu
[cpuid
];
899 mag_purge(oc
, &cache_percpu
->loaded_magazine
, TRUE
);
900 mag_purge(oc
, &cache_percpu
->previous_magazine
, TRUE
);
902 cache_percpu
->loaded_magazine
= NULL
;
903 cache_percpu
->previous_magazine
= NULL
;
904 /* don't bother adjusting depot->unallocated_objects */
907 kfree(oc
->name
, M_TEMP
);
908 kfree(oc
, M_OBJCACHE
);
914 spin_init(&objcachelist_spin
, "objcachelist");
916 magazine_capmin
= mag_capacity_align(MAGAZINE_CAPACITY_MIN
);
917 magazine_capmax
= mag_capacity_align(MAGAZINE_CAPACITY_MAX
);
919 kprintf("objcache: magazine cap [%d, %d]\n",
920 magazine_capmin
, magazine_capmax
);
923 callout_init_mp(&objcache_callout
);
924 objcache_rebalance_period
= 60 * hz
;
925 callout_reset(&objcache_callout
, objcache_rebalance_period
,
926 objcache_timer
, NULL
);
929 SYSINIT(objcache
, SI_BOOT2_OBJCACHE
, SI_ORDER_FIRST
, objcache_init
, 0);