| [4e147a6] | 1 | /*
|
|---|
| [df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
|---|
| [4e147a6] | 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | #include <test.h>
|
|---|
| 30 | #include <mm/slab.h>
|
|---|
| [14e5d88] | 31 | #include <proc/thread.h>
|
|---|
| 32 | #include <arch.h>
|
|---|
| [44a7ee5] | 33 | #include <mem.h>
|
|---|
| [a294ad0] | 34 |
|
|---|
| [cb01e1e] | 35 | #define VAL_COUNT 1024
|
|---|
| [a294ad0] | 36 |
|
|---|
| [cb01e1e] | 37 | static void *data[VAL_COUNT];
|
|---|
| [4e147a6] | 38 |
|
|---|
| [cb01e1e] | 39 | static void testit(int size, int count)
|
|---|
| [4e147a6] | 40 | {
|
|---|
| [a294ad0] | 41 | slab_cache_t *cache;
|
|---|
| 42 | int i;
|
|---|
| [a35b458] | 43 |
|
|---|
| [cb01e1e] | 44 | TPRINTF("Creating cache, object size: %d.\n", size);
|
|---|
| [a35b458] | 45 |
|
|---|
| [deada67] | 46 | cache = slab_cache_create("test_cache", size, 0, NULL, NULL,
|
|---|
| [cb01e1e] | 47 | SLAB_CACHE_NOMAGAZINE);
|
|---|
| [a35b458] | 48 |
|
|---|
| [cb01e1e] | 49 | TPRINTF("Allocating %d items...", count);
|
|---|
| [a35b458] | 50 |
|
|---|
| [96348adc] | 51 | for (i = 0; i < count; i++) {
|
|---|
| [abf6c01] | 52 | data[i] = slab_alloc(cache, FRAME_ATOMIC);
|
|---|
| 53 | if (data[i])
|
|---|
| 54 | memsetb(data[i], size, 0);
|
|---|
| [a294ad0] | 55 | }
|
|---|
| [a35b458] | 56 |
|
|---|
| [cb01e1e] | 57 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 58 |
|
|---|
| [cb01e1e] | 59 | TPRINTF("Freeing %d items...", count);
|
|---|
| [a35b458] | 60 |
|
|---|
| [deada67] | 61 | for (i = 0; i < count; i++)
|
|---|
| [a294ad0] | 62 | slab_free(cache, data[i]);
|
|---|
| [a35b458] | 63 |
|
|---|
| [cb01e1e] | 64 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 65 |
|
|---|
| [cb01e1e] | 66 | TPRINTF("Allocating %d items...", count);
|
|---|
| [a35b458] | 67 |
|
|---|
| [96348adc] | 68 | for (i = 0; i < count; i++) {
|
|---|
| [abf6c01] | 69 | data[i] = slab_alloc(cache, FRAME_ATOMIC);
|
|---|
| 70 | if (data[i])
|
|---|
| 71 | memsetb(data[i], size, 0);
|
|---|
| [bc504ef2] | 72 | }
|
|---|
| [a35b458] | 73 |
|
|---|
| [cb01e1e] | 74 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 75 |
|
|---|
| [cb01e1e] | 76 | TPRINTF("Freeing %d items...", count / 2);
|
|---|
| [a35b458] | 77 |
|
|---|
| [deada67] | 78 | for (i = count - 1; i >= count / 2; i--)
|
|---|
| [bc504ef2] | 79 | slab_free(cache, data[i]);
|
|---|
| [a35b458] | 80 |
|
|---|
| [cb01e1e] | 81 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 82 |
|
|---|
| [cb01e1e] | 83 | TPRINTF("Allocating %d items...", count / 2);
|
|---|
| [a35b458] | 84 |
|
|---|
| [96348adc] | 85 | for (i = count / 2; i < count; i++) {
|
|---|
| [abf6c01] | 86 | data[i] = slab_alloc(cache, FRAME_ATOMIC);
|
|---|
| 87 | if (data[i])
|
|---|
| 88 | memsetb(data[i], size, 0);
|
|---|
| [bc504ef2] | 89 | }
|
|---|
| [a35b458] | 90 |
|
|---|
| [cb01e1e] | 91 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 92 |
|
|---|
| [cb01e1e] | 93 | TPRINTF("Freeing %d items...", count);
|
|---|
| [a35b458] | 94 |
|
|---|
| [deada67] | 95 | for (i = 0; i < count; i++)
|
|---|
| 96 | slab_free(cache, data[i]);
|
|---|
| [a35b458] | 97 |
|
|---|
| [cb01e1e] | 98 | TPRINTF("done.\n");
|
|---|
| [a35b458] | 99 |
|
|---|
| [bc504ef2] | 100 | slab_cache_destroy(cache);
|
|---|
| [a35b458] | 101 |
|
|---|
| [cb01e1e] | 102 | TPRINTF("Test complete.\n");
|
|---|
| [4e147a6] | 103 | }
|
|---|
| [14e5d88] | 104 |
|
|---|
| [cb01e1e] | 105 | static void testsimple(void)
|
|---|
| [14e5d88] | 106 | {
|
|---|
| [cb01e1e] | 107 | testit(100, VAL_COUNT);
|
|---|
| 108 | testit(200, VAL_COUNT);
|
|---|
| 109 | testit(1024, VAL_COUNT);
|
|---|
| 110 | testit(2048, 512);
|
|---|
| 111 | testit(4000, 128);
|
|---|
| 112 | testit(8192, 128);
|
|---|
| 113 | testit(16384, 128);
|
|---|
| 114 | testit(16385, 128);
|
|---|
| [14e5d88] | 115 | }
|
|---|
| 116 |
|
|---|
| [cb01e1e] | 117 | #define THREADS 6
|
|---|
| 118 | #define THR_MEM_COUNT 1024
|
|---|
| 119 | #define THR_MEM_SIZE 128
|
|---|
| [14e5d88] | 120 |
|
|---|
| [cb01e1e] | 121 | static void *thr_data[THREADS][THR_MEM_COUNT];
|
|---|
| [96348adc] | 122 | static slab_cache_t *thr_cache;
|
|---|
| 123 | static semaphore_t thr_sem;
|
|---|
| [14e5d88] | 124 |
|
|---|
| [ff14c520] | 125 | static void slabtest(void *data)
|
|---|
| [14e5d88] | 126 | {
|
|---|
| [96b02eb9] | 127 | int offs = (int) (sysarg_t) data;
|
|---|
| [96348adc] | 128 | int i, j;
|
|---|
| [a35b458] | 129 |
|
|---|
| [8d6d76a] | 130 | thread_detach(THREAD);
|
|---|
| [a35b458] | 131 |
|
|---|
| [cb01e1e] | 132 | TPRINTF("Starting thread #%" PRIu64 "...\n", THREAD->tid);
|
|---|
| [a35b458] | 133 |
|
|---|
| [96348adc] | 134 | for (j = 0; j < 10; j++) {
|
|---|
| 135 | for (i = 0; i < THR_MEM_COUNT; i++)
|
|---|
| [abf6c01] | 136 | thr_data[offs][i] = slab_alloc(thr_cache, FRAME_ATOMIC);
|
|---|
| [96348adc] | 137 | for (i = 0; i < THR_MEM_COUNT / 2; i++)
|
|---|
| [14e5d88] | 138 | slab_free(thr_cache, thr_data[offs][i]);
|
|---|
| [96348adc] | 139 | for (i = 0; i < THR_MEM_COUNT / 2; i++)
|
|---|
| [abf6c01] | 140 | thr_data[offs][i] = slab_alloc(thr_cache, FRAME_ATOMIC);
|
|---|
| [96348adc] | 141 | for (i = 0; i < THR_MEM_COUNT; i++)
|
|---|
| [14e5d88] | 142 | slab_free(thr_cache, thr_data[offs][i]);
|
|---|
| 143 | }
|
|---|
| [a35b458] | 144 |
|
|---|
| [cb01e1e] | 145 | TPRINTF("Thread #%" PRIu64 " finished\n", THREAD->tid);
|
|---|
| [a35b458] | 146 |
|
|---|
| [14e5d88] | 147 | semaphore_up(&thr_sem);
|
|---|
| 148 | }
|
|---|
| 149 |
|
|---|
| [cb01e1e] | 150 | static void testthreads(void)
|
|---|
| [14e5d88] | 151 | {
|
|---|
| 152 | thread_t *t;
|
|---|
| 153 | int i;
|
|---|
| [a35b458] | 154 |
|
|---|
| [deada67] | 155 | thr_cache = slab_cache_create("thread_cache", THR_MEM_SIZE, 0, NULL, NULL,
|
|---|
| [cb01e1e] | 156 | SLAB_CACHE_NOMAGAZINE);
|
|---|
| [a35b458] | 157 |
|
|---|
| [96348adc] | 158 | semaphore_initialize(&thr_sem, 0);
|
|---|
| [6eef3c4] | 159 | for (i = 0; i < THREADS; i++) {
|
|---|
| 160 | if (!(t = thread_create(slabtest, (void *) (sysarg_t) i, TASK, THREAD_FLAG_NONE, "slabtest"))) {
|
|---|
| [cb01e1e] | 161 | TPRINTF("Could not create thread %d\n", i);
|
|---|
| [deada67] | 162 | } else
|
|---|
| [96348adc] | 163 | thread_ready(t);
|
|---|
| [14e5d88] | 164 | }
|
|---|
| 165 |
|
|---|
| [96348adc] | 166 | for (i = 0; i < THREADS; i++)
|
|---|
| [14e5d88] | 167 | semaphore_down(&thr_sem);
|
|---|
| [a35b458] | 168 |
|
|---|
| [14e5d88] | 169 | slab_cache_destroy(thr_cache);
|
|---|
| [a35b458] | 170 |
|
|---|
| [cb01e1e] | 171 | TPRINTF("Test complete.\n");
|
|---|
| [14e5d88] | 172 | }
|
|---|
| 173 |
|
|---|
| [a000878c] | 174 | const char *test_slab1(void)
|
|---|
| [14e5d88] | 175 | {
|
|---|
| [cb01e1e] | 176 | testsimple();
|
|---|
| 177 | testthreads();
|
|---|
| [a35b458] | 178 |
|
|---|
| [96348adc] | 179 | return NULL;
|
|---|
| [14e5d88] | 180 | }
|
|---|