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
32 * $DragonFly: src/sys/kern/kern_objcache.c,v 1.23 2008/10/26 04:29:19 sephe Exp $
35 #include <sys/param.h>
36 #include <sys/kernel.h>
37 #include <sys/systm.h>
38 #include <sys/callout.h>
39 #include <sys/globaldata.h>
40 #include <sys/malloc.h>
41 #include <sys/queue.h>
42 #include <sys/objcache.h>
43 #include <sys/spinlock.h>
44 #include <sys/thread.h>
45 #include <sys/thread2.h>
46 #include <sys/spinlock2.h>
48 static MALLOC_DEFINE(M_OBJCACHE
, "objcache", "Object Cache");
49 static MALLOC_DEFINE(M_OBJMAG
, "objcache magazine", "Object Cache Magazine");
51 #define INITIAL_MAG_CAPACITY 64
57 SLIST_ENTRY(magazine
) nextmagazine
;
61 SLIST_HEAD(magazinelist
, magazine
);
64 * per-cluster cache of magazines
66 * All fields in this structure are protected by the spinlock.
68 struct magazinedepot
{
70 * The per-cpu object caches only exchanges completely full or
71 * completely empty magazines with the depot layer, so only have
72 * to cache these two types of magazines.
74 struct magazinelist fullmagazines
;
75 struct magazinelist emptymagazines
;
78 /* protect this structure */
81 /* magazines not yet allocated towards limit */
82 int unallocated_objects
;
84 /* infrequently used fields */
85 int waiting
; /* waiting for another cpu to
86 * return a full magazine to
88 int contested
; /* depot contention count */
92 * per-cpu object cache
93 * All fields in this structure are protected by crit_enter().
95 struct percpu_objcache
{
96 struct magazine
*loaded_magazine
; /* active magazine */
97 struct magazine
*previous_magazine
; /* backup magazine */
100 int gets_cumulative
; /* total calls to get */
101 int gets_null
; /* objcache_get returned NULL */
102 int puts_cumulative
; /* total calls to put */
103 int puts_othercluster
; /* returned to other cluster */
105 /* infrequently used fields */
106 int waiting
; /* waiting for a thread on this cpu to
107 * return an obj to the per-cpu cache */
110 /* only until we have NUMA cluster topology information XXX */
111 #define MAXCLUSTERS 1
112 #define myclusterid 0
113 #define CLUSTER_OF(obj) 0
116 * Two-level object cache consisting of NUMA cluster-level depots of
117 * fully loaded or completely empty magazines and cpu-level caches of
118 * individual objects.
123 /* object constructor and destructor from blank storage */
124 objcache_ctor_fn
*ctor
;
125 objcache_dtor_fn
*dtor
;
128 /* interface to underlying allocator */
129 objcache_alloc_fn
*alloc
;
130 objcache_free_fn
*free
;
131 void *allocator_args
;
133 LIST_ENTRY(objcache
) oc_next
;
134 int exhausted
; /* oops */
136 /* NUMA-cluster level caches */
137 struct magazinedepot depot
[MAXCLUSTERS
];
139 struct percpu_objcache cache_percpu
[]; /* per-cpu caches */
142 static struct spinlock objcachelist_spin
;
143 static LIST_HEAD(objcachelist
, objcache
) allobjcaches
;
145 static struct magazine
*
146 mag_alloc(int capacity
)
148 struct magazine
*mag
;
150 mag
= kmalloc(__offsetof(struct magazine
, objects
[capacity
]),
151 M_OBJMAG
, M_INTWAIT
| M_ZERO
);
152 mag
->capacity
= capacity
;
159 * Utility routine for objects that don't require any de-construction.
163 null_dtor(void *obj
, void *privdata
)
169 null_ctor(void *obj
, void *privdata
, int ocflags
)
175 * Create an object cache.
178 objcache_create(const char *name
, int *cluster_limit0
, int mag_capacity
,
179 objcache_ctor_fn
*ctor
, objcache_dtor_fn
*dtor
, void *privdata
,
180 objcache_alloc_fn
*alloc
, objcache_free_fn
*free
,
181 void *allocator_args
)
184 struct magazinedepot
*depot
;
192 if (cluster_limit0
== NULL
)
195 cluster_limit
= *cluster_limit0
;
197 /* allocate object cache structure */
198 oc
= kmalloc(__offsetof(struct objcache
, cache_percpu
[ncpus
]),
199 M_OBJCACHE
, M_WAITOK
| M_ZERO
);
200 oc
->name
= kstrdup(name
, M_TEMP
);
201 oc
->ctor
= ctor
? ctor
: null_ctor
;
202 oc
->dtor
= dtor
? dtor
: null_dtor
;
203 oc
->privdata
= privdata
;
205 oc
->allocator_args
= allocator_args
;
207 /* initialize depots */
208 depot
= &oc
->depot
[0];
210 spin_init(&depot
->spin
);
211 SLIST_INIT(&depot
->fullmagazines
);
212 SLIST_INIT(&depot
->emptymagazines
);
214 if (mag_capacity
== 0)
215 mag_capacity
= INITIAL_MAG_CAPACITY
;
218 * The cluster_limit must be sufficient to have three magazines per
219 * cpu. If we have a lot of cpus the mag_capacity might just be
220 * too big, reduce it if necessary.
222 * Each cpu can hold up to two magazines, with the remainder in the
223 * depot. If many objects are allocated fewer magazines are
224 * available. We have to make sure that each cpu has access to
225 * free objects until the object cache hits 75% of its limit.
227 if (cluster_limit
== 0) {
228 depot
->unallocated_objects
= -1;
231 need
= mag_capacity
* ncpus
* factor
;
232 if (cluster_limit
< need
&& mag_capacity
> 16) {
233 kprintf("objcache(%s): too small for ncpus"
234 ", adjusting mag_capacity %d->",
236 while (need
> cluster_limit
&& mag_capacity
> 16) {
238 need
= mag_capacity
* ncpus
* factor
;
240 kprintf("%d\n", mag_capacity
);
242 if (cluster_limit
< need
) {
243 kprintf("objcache(%s): too small for ncpus"
244 ", adjusting cluster_limit %d->%d\n",
245 name
, cluster_limit
, need
);
246 cluster_limit
= need
;
248 depot
->unallocated_objects
= cluster_limit
;
250 depot
->magcapacity
= mag_capacity
;
253 /* initialize per-cpu caches */
254 for (cpuid
= 0; cpuid
< ncpus
; cpuid
++) {
255 struct percpu_objcache
*cache_percpu
= &oc
->cache_percpu
[cpuid
];
257 cache_percpu
->loaded_magazine
= mag_alloc(mag_capacity
);
258 cache_percpu
->previous_magazine
= mag_alloc(mag_capacity
);
261 /* compute initial number of empty magazines in depot */
263 if (cluster_limit
> 0) {
264 /* max number of magazines in depot */
265 nmagdepot
= (cluster_limit
- ncpus
* 2 * mag_capacity
) /
268 /* retain at most 50% of the limit */
271 /* bound result to acceptable range */
277 /* put empty magazines in depot */
278 for (i
= 0; i
< nmagdepot
; i
++) {
279 struct magazine
*mag
= mag_alloc(mag_capacity
);
280 SLIST_INSERT_HEAD(&depot
->emptymagazines
, mag
, nextmagazine
);
283 spin_lock_wr(&objcachelist_spin
);
284 LIST_INSERT_HEAD(&allobjcaches
, oc
, oc_next
);
285 spin_unlock_wr(&objcachelist_spin
);
287 if (cluster_limit0
!= NULL
)
288 *cluster_limit0
= cluster_limit
;
293 objcache_create_simple(malloc_type_t mtype
, size_t objsize
)
295 struct objcache_malloc_args
*margs
;
298 margs
= kmalloc(sizeof(*margs
), M_OBJCACHE
, M_WAITOK
|M_ZERO
);
299 margs
->objsize
= objsize
;
300 margs
->mtype
= mtype
;
301 oc
= objcache_create(mtype
->ks_shortdesc
, NULL
, 0,
303 objcache_malloc_alloc
, objcache_malloc_free
,
309 objcache_create_mbacked(malloc_type_t mtype
, size_t objsize
,
310 int *cluster_limit
, int mag_capacity
,
311 objcache_ctor_fn
*ctor
, objcache_dtor_fn
*dtor
,
314 struct objcache_malloc_args
*margs
;
317 margs
= kmalloc(sizeof(*margs
), M_OBJCACHE
, M_WAITOK
|M_ZERO
);
318 margs
->objsize
= objsize
;
319 margs
->mtype
= mtype
;
320 oc
= objcache_create(mtype
->ks_shortdesc
,
321 cluster_limit
, mag_capacity
,
322 ctor
, dtor
, privdata
,
323 objcache_malloc_alloc
, objcache_malloc_free
,
329 #define MAGAZINE_EMPTY(mag) (mag->rounds == 0)
330 #define MAGAZINE_NOTEMPTY(mag) (mag->rounds != 0)
331 #define MAGAZINE_FULL(mag) (mag->rounds == mag->capacity)
333 #define swap(x, y) ({ struct magazine *t = x; x = y; y = t; })
336 * Get an object from the object cache.
338 * WARNING! ocflags are only used when we have to go to the underlying
339 * allocator, so we cannot depend on flags such as M_ZERO.
342 objcache_get(struct objcache
*oc
, int ocflags
)
344 struct percpu_objcache
*cpucache
= &oc
->cache_percpu
[mycpuid
];
345 struct magazine
*loadedmag
;
346 struct magazine
*emptymag
;
348 struct magazinedepot
*depot
;
350 KKASSERT((ocflags
& M_ZERO
) == 0);
352 ++cpucache
->gets_cumulative
;
356 * Loaded magazine has an object. This is the hot path.
357 * It is lock-free and uses a critical section to block
358 * out interrupt handlers on the same processor.
360 loadedmag
= cpucache
->loaded_magazine
;
361 if (MAGAZINE_NOTEMPTY(loadedmag
)) {
362 obj
= loadedmag
->objects
[--loadedmag
->rounds
];
367 /* Previous magazine has an object. */
368 if (MAGAZINE_NOTEMPTY(cpucache
->previous_magazine
)) {
369 KKASSERT(cpucache
->previous_magazine
->cleaning
+
370 cpucache
->loaded_magazine
->cleaning
== 0);
371 swap(cpucache
->loaded_magazine
, cpucache
->previous_magazine
);
372 loadedmag
= cpucache
->loaded_magazine
;
373 obj
= loadedmag
->objects
[--loadedmag
->rounds
];
379 * Both magazines empty. Get a full magazine from the depot and
380 * move one of the empty ones to the depot.
382 * Obtain the depot spinlock.
384 * NOTE: Beyond this point, M_* flags are handled via oc->alloc()
386 depot
= &oc
->depot
[myclusterid
];
387 spin_lock_wr(&depot
->spin
);
390 * Recheck the cpucache after obtaining the depot spinlock. This
391 * shouldn't be necessary now but don't take any chances.
393 if (MAGAZINE_NOTEMPTY(cpucache
->loaded_magazine
) ||
394 MAGAZINE_NOTEMPTY(cpucache
->previous_magazine
)
396 spin_unlock_wr(&depot
->spin
);
400 /* Check if depot has a full magazine. */
401 if (!SLIST_EMPTY(&depot
->fullmagazines
)) {
402 emptymag
= cpucache
->previous_magazine
;
403 cpucache
->previous_magazine
= cpucache
->loaded_magazine
;
404 cpucache
->loaded_magazine
= SLIST_FIRST(&depot
->fullmagazines
);
405 SLIST_REMOVE_HEAD(&depot
->fullmagazines
, nextmagazine
);
408 * Return emptymag to the depot.
410 KKASSERT(MAGAZINE_EMPTY(emptymag
));
411 SLIST_INSERT_HEAD(&depot
->emptymagazines
,
412 emptymag
, nextmagazine
);
413 spin_unlock_wr(&depot
->spin
);
418 * The depot does not have any non-empty magazines. If we have
419 * not hit our object limit we can allocate a new object using
420 * the back-end allocator.
422 * note: unallocated_objects can be initialized to -1, which has
423 * the effect of removing any allocation limits.
425 if (depot
->unallocated_objects
) {
426 --depot
->unallocated_objects
;
427 spin_unlock_wr(&depot
->spin
);
430 obj
= oc
->alloc(oc
->allocator_args
, ocflags
);
432 if (oc
->ctor(obj
, oc
->privdata
, ocflags
))
434 oc
->free(obj
, oc
->allocator_args
);
438 spin_lock_wr(&depot
->spin
);
439 ++depot
->unallocated_objects
;
440 spin_unlock_wr(&depot
->spin
);
446 * makes debugging easier when gets_cumulative does
447 * not include gets_null.
449 ++cpucache
->gets_null
;
450 --cpucache
->gets_cumulative
;
455 if (oc
->exhausted
== 0) {
456 kprintf("Warning, objcache(%s): Exhausted!\n", oc
->name
);
461 * Otherwise block if allowed to.
463 if ((ocflags
& (M_WAITOK
|M_NULLOK
)) == M_WAITOK
) {
466 msleep(depot
, &depot
->spin
, 0, "objcache_get", 0);
469 spin_unlock_wr(&depot
->spin
);
476 ++cpucache
->gets_null
;
477 --cpucache
->gets_cumulative
;
479 spin_unlock_wr(&depot
->spin
);
484 * Wrapper for malloc allocation routines.
487 objcache_malloc_alloc(void *allocator_args
, int ocflags
)
489 struct objcache_malloc_args
*alloc_args
= allocator_args
;
491 return (kmalloc(alloc_args
->objsize
, alloc_args
->mtype
,
492 ocflags
& OC_MFLAGS
));
496 objcache_malloc_free(void *obj
, void *allocator_args
)
498 struct objcache_malloc_args
*alloc_args
= allocator_args
;
500 kfree(obj
, alloc_args
->mtype
);
504 * Wrapper for allocation policies that pre-allocate at initialization time
505 * and don't do run-time allocation.
508 objcache_nop_alloc(void *allocator_args
, int ocflags
)
514 objcache_nop_free(void *obj
, void *allocator_args
)
519 * Return an object to the object cache.
522 objcache_put(struct objcache
*oc
, void *obj
)
524 struct percpu_objcache
*cpucache
= &oc
->cache_percpu
[mycpuid
];
525 struct magazine
*loadedmag
;
526 struct magazinedepot
*depot
;
529 ++cpucache
->puts_cumulative
;
531 if (CLUSTER_OF(obj
) != myclusterid
) {
533 /* use lazy IPI to send object to owning cluster XXX todo */
534 ++cpucache
->puts_othercluster
;
542 * Free slot available in loaded magazine. This is the hot path.
543 * It is lock-free and uses a critical section to block out interrupt
544 * handlers on the same processor.
546 loadedmag
= cpucache
->loaded_magazine
;
547 if (!MAGAZINE_FULL(loadedmag
)) {
548 loadedmag
->objects
[loadedmag
->rounds
++] = obj
;
549 if (cpucache
->waiting
)
550 wakeup_mycpu(&oc
->depot
[myclusterid
]);
556 * Current magazine full, but previous magazine has room. XXX
558 if (!MAGAZINE_FULL(cpucache
->previous_magazine
)) {
559 KKASSERT(cpucache
->previous_magazine
->cleaning
+
560 cpucache
->loaded_magazine
->cleaning
== 0);
561 swap(cpucache
->loaded_magazine
, cpucache
->previous_magazine
);
562 loadedmag
= cpucache
->loaded_magazine
;
563 loadedmag
->objects
[loadedmag
->rounds
++] = obj
;
564 if (cpucache
->waiting
)
565 wakeup_mycpu(&oc
->depot
[myclusterid
]);
571 * Both magazines full. Get an empty magazine from the depot and
572 * move a full loaded magazine to the depot. Even though the
573 * magazine may wind up with space available after we block on
574 * the spinlock, we still cycle it through to avoid the non-optimal
577 * Obtain the depot spinlock.
579 depot
= &oc
->depot
[myclusterid
];
580 spin_lock_wr(&depot
->spin
);
583 * If an empty magazine is available in the depot, cycle it
586 if (!SLIST_EMPTY(&depot
->emptymagazines
)) {
587 KKASSERT(cpucache
->previous_magazine
->cleaning
+
588 cpucache
->loaded_magazine
->cleaning
== 0);
589 loadedmag
= cpucache
->previous_magazine
;
590 cpucache
->previous_magazine
= cpucache
->loaded_magazine
;
591 cpucache
->loaded_magazine
= SLIST_FIRST(&depot
->emptymagazines
);
592 SLIST_REMOVE_HEAD(&depot
->emptymagazines
, nextmagazine
);
595 * Return loadedmag to the depot. Due to blocking it may
596 * not be entirely full and could even be empty.
598 if (MAGAZINE_EMPTY(loadedmag
)) {
599 SLIST_INSERT_HEAD(&depot
->emptymagazines
,
600 loadedmag
, nextmagazine
);
601 spin_unlock_wr(&depot
->spin
);
603 SLIST_INSERT_HEAD(&depot
->fullmagazines
,
604 loadedmag
, nextmagazine
);
605 spin_unlock_wr(&depot
->spin
);
613 * An empty mag is not available. This is a corner case which can
614 * occur due to cpus holding partially full magazines. Do not try
615 * to allocate a mag, just free the object.
617 ++depot
->unallocated_objects
;
618 spin_unlock_wr(&depot
->spin
);
622 oc
->dtor(obj
, oc
->privdata
);
623 oc
->free(obj
, oc
->allocator_args
);
627 * The object is being put back into the cache, but the caller has
628 * indicated that the object is not in any shape to be reused and should
629 * be dtor'd immediately.
632 objcache_dtor(struct objcache
*oc
, void *obj
)
634 struct magazinedepot
*depot
;
636 depot
= &oc
->depot
[myclusterid
];
637 spin_lock_wr(&depot
->spin
);
638 ++depot
->unallocated_objects
;
639 spin_unlock_wr(&depot
->spin
);
642 oc
->dtor(obj
, oc
->privdata
);
643 oc
->free(obj
, oc
->allocator_args
);
647 * Deallocate all objects in a magazine and free the magazine if requested.
648 * The magazine must already be disassociated from the depot.
650 * Must be called with a critical section held when called with a per-cpu
651 * magazine. The magazine may be indirectly modified during the loop.
653 * The number of objects freed is returned.
656 mag_purge(struct objcache
*oc
, struct magazine
*mag
, int freeit
)
663 while (mag
->rounds
) {
664 obj
= mag
->objects
[--mag
->rounds
];
665 oc
->dtor(obj
, oc
->privdata
); /* MAY BLOCK */
666 oc
->free(obj
, oc
->allocator_args
); /* MAY BLOCK */
670 * Cycle for interrupts
672 if ((count
& 15) == 0) {
679 kfree(mag
, M_OBJMAG
);
684 * Disassociate zero or more magazines from a magazine list associated with
685 * the depot, update the depot, and move the magazines to a temporary
688 * The caller must check the depot for waiters and wake it up, typically
689 * after disposing of the magazines this function loads onto the temporary
693 maglist_disassociate(struct magazinedepot
*depot
, struct magazinelist
*maglist
,
694 struct magazinelist
*tmplist
, boolean_t purgeall
)
696 struct magazine
*mag
;
698 while ((mag
= SLIST_FIRST(maglist
)) != NULL
) {
699 SLIST_REMOVE_HEAD(maglist
, nextmagazine
);
700 SLIST_INSERT_HEAD(tmplist
, mag
, nextmagazine
);
701 depot
->unallocated_objects
+= mag
->rounds
;
706 * Deallocate all magazines and their contents from the passed temporary
707 * list. The magazines have already been accounted for by their depots.
709 * The total number of rounds freed is returned. This number is typically
710 * only used to determine whether a wakeup on the depot is needed or not.
713 maglist_purge(struct objcache
*oc
, struct magazinelist
*maglist
)
715 struct magazine
*mag
;
719 * can't use SLIST_FOREACH because blocking releases the depot
722 while ((mag
= SLIST_FIRST(maglist
)) != NULL
) {
723 SLIST_REMOVE_HEAD(maglist
, nextmagazine
);
724 count
+= mag_purge(oc
, mag
, TRUE
);
730 * De-allocates all magazines on the full and empty magazine lists.
732 * Because this routine is called with a spinlock held, the magazines
733 * can only be disassociated and moved to a temporary list, not freed.
735 * The caller is responsible for freeing the magazines.
738 depot_disassociate(struct magazinedepot
*depot
, struct magazinelist
*tmplist
)
740 maglist_disassociate(depot
, &depot
->fullmagazines
, tmplist
, TRUE
);
741 maglist_disassociate(depot
, &depot
->emptymagazines
, tmplist
, TRUE
);
746 objcache_reclaim(struct objcache
*oc
)
748 struct percpu_objcache
*cache_percpu
= &oc
->cache_percpu
[myclusterid
];
749 struct magazinedepot
*depot
= &oc
->depot
[myclusterid
];
750 struct magazinelist tmplist
;
753 SLIST_INIT(&tmplist
);
755 count
= mag_purge(oc
, cache_percpu
->loaded_magazine
, FALSE
);
756 count
+= mag_purge(oc
, cache_percpu
->previous_magazine
, FALSE
);
759 spin_lock_wr(&depot
->spin
);
760 depot
->unallocated_objects
+= count
;
761 depot_disassociate(depot
, &tmplist
);
762 spin_unlock_wr(&depot
->spin
);
763 count
+= maglist_purge(oc
, &tmplist
);
764 if (count
&& depot
->waiting
)
770 * Try to free up some memory. Return as soon as some free memory is found.
771 * For each object cache on the reclaim list, first try the current per-cpu
772 * cache, then the full magazine depot.
775 objcache_reclaimlist(struct objcache
*oclist
[], int nlist
, int ocflags
)
778 struct percpu_objcache
*cpucache
;
779 struct magazinedepot
*depot
;
780 struct magazinelist tmplist
;
783 SLIST_INIT(&tmplist
);
785 for (i
= 0; i
< nlist
; i
++) {
787 cpucache
= &oc
->cache_percpu
[mycpuid
];
788 depot
= &oc
->depot
[myclusterid
];
791 count
= mag_purge(oc
, cpucache
->loaded_magazine
, FALSE
);
793 count
+= mag_purge(oc
, cpucache
->previous_magazine
, FALSE
);
796 spin_lock_wr(&depot
->spin
);
797 depot
->unallocated_objects
+= count
;
798 spin_unlock_wr(&depot
->spin
);
803 spin_lock_wr(&depot
->spin
);
804 maglist_disassociate(depot
, &depot
->fullmagazines
,
806 spin_unlock_wr(&depot
->spin
);
807 count
= maglist_purge(oc
, &tmplist
);
818 * Destroy an object cache. Must have no existing references.
821 objcache_destroy(struct objcache
*oc
)
823 struct percpu_objcache
*cache_percpu
;
824 struct magazinedepot
*depot
;
825 int clusterid
, cpuid
;
826 struct magazinelist tmplist
;
828 spin_lock_wr(&objcachelist_spin
);
829 LIST_REMOVE(oc
, oc_next
);
830 spin_unlock_wr(&objcachelist_spin
);
832 SLIST_INIT(&tmplist
);
833 for (clusterid
= 0; clusterid
< MAXCLUSTERS
; clusterid
++) {
834 depot
= &oc
->depot
[clusterid
];
835 spin_lock_wr(&depot
->spin
);
836 depot_disassociate(depot
, &tmplist
);
837 spin_unlock_wr(&depot
->spin
);
839 maglist_purge(oc
, &tmplist
);
841 for (cpuid
= 0; cpuid
< ncpus
; cpuid
++) {
842 cache_percpu
= &oc
->cache_percpu
[cpuid
];
844 mag_purge(oc
, cache_percpu
->loaded_magazine
, TRUE
);
845 mag_purge(oc
, cache_percpu
->previous_magazine
, TRUE
);
846 cache_percpu
->loaded_magazine
= NULL
;
847 cache_percpu
->previous_magazine
= NULL
;
848 /* don't bother adjusting depot->unallocated_objects */
851 kfree(oc
->name
, M_TEMP
);
852 kfree(oc
, M_OBJCACHE
);
857 * Populate the per-cluster depot with elements from a linear block
858 * of memory. Must be called for individually for each cluster.
859 * Populated depots should not be destroyed.
862 objcache_populate_linear(struct objcache
*oc
, void *base
, int nelts
, int size
)
865 char *end
= (char *)base
+ (nelts
* size
);
866 struct magazinedepot
*depot
= &oc
->depot
[myclusterid
];
867 struct magazine
*emptymag
= mag_alloc(depot
->magcapcity
);
870 emptymag
->objects
[emptymag
->rounds
++] = p
;
871 if (MAGAZINE_FULL(emptymag
)) {
872 spin_lock_wr(&depot
->spin
);
873 SLIST_INSERT_HEAD(&depot
->fullmagazines
, emptymag
,
875 depot
->unallocated_objects
+= emptymag
->rounds
;
876 spin_unlock_wr(&depot
->spin
);
879 emptymag
= mag_alloc(depot
->magcapacity
);
883 if (MAGAZINE_EMPTY(emptymag
)) {
884 mag_purge(oc
, emptymag
, TRUE
);
886 spin_lock_wr(&depot
->spin
);
887 SLIST_INSERT_HEAD(&depot
->fullmagazines
, emptymag
,
889 depot
->unallocated_objects
+= emptymag
->rounds
;
890 spin_unlock_wr(&depot
->spin
);
893 emptymag
= mag_alloc(depot
->magcapacity
);
900 * Check depot contention once a minute.
901 * 2 contested locks per second allowed.
903 static int objcache_rebalance_period
;
904 static const int objcache_contention_rate
= 120;
905 static struct callout objcache_callout
;
907 #define MAXMAGSIZE 512
910 * Check depot contention and increase magazine size if necessary.
913 objcache_timer(void *dummy
)
916 struct magazinedepot
*depot
;
917 struct magazinelist tmplist
;
919 XXX we need to detect when an objcache is destroyed out from under
922 SLIST_INIT(&tmplist
);
924 spin_lock_wr(&objcachelist_spin
);
925 LIST_FOREACH(oc
, &allobjcaches
, oc_next
) {
926 depot
= &oc
->depot
[myclusterid
];
927 if (depot
->magcapacity
< MAXMAGSIZE
) {
928 if (depot
->contested
> objcache_contention_rate
) {
929 spin_lock_wr(&depot
->spin
);
930 depot_disassociate(depot
, &tmplist
);
931 depot
->magcapacity
*= 2;
932 spin_unlock_wr(&depot
->spin
);
933 kprintf("objcache_timer: increasing cache %s"
934 " magsize to %d, contested %d times\n",
935 oc
->name
, depot
->magcapacity
,
938 depot
->contested
= 0;
940 spin_unlock_wr(&objcachelist_spin
);
941 if (maglist_purge(oc
, &tmplist
) > 0 && depot
->waiting
)
943 spin_lock_wr(&objcachelist_spin
);
945 spin_unlock_wr(&objcachelist_spin
);
947 callout_reset(&objcache_callout
, objcache_rebalance_period
,
948 objcache_timer
, NULL
);
956 spin_init(&objcachelist_spin
);
958 callout_init(&objcache_callout
);
959 objcache_rebalance_period
= 60 * hz
;
960 callout_reset(&objcache_callout
, objcache_rebalance_period
,
961 objcache_timer
, NULL
);
964 SYSINIT(objcache
, SI_BOOT2_OBJCACHE
, SI_ORDER_FIRST
, objcache_init
, 0);