subr_extent.c revision 1.38 1 1.38 augustss /* $NetBSD: subr_extent.c,v 1.38 2000/08/12 23:56:50 augustss Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.11 thorpej * Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe and Matthias Drochner.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.1 thorpej * must display the following acknowledgement:
20 1.20 christos * This product includes software developed by the NetBSD
21 1.20 christos * Foundation, Inc. and its contributors.
22 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 thorpej * contributors may be used to endorse or promote products derived
24 1.1 thorpej * from this software without specific prior written permission.
25 1.1 thorpej *
26 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.10 jtc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.10 jtc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * General purpose extent manager.
41 1.1 thorpej */
42 1.1 thorpej
43 1.7 cgd #ifdef _KERNEL
44 1.1 thorpej #include <sys/param.h>
45 1.1 thorpej #include <sys/extent.h>
46 1.1 thorpej #include <sys/malloc.h>
47 1.14 pk #include <sys/pool.h>
48 1.1 thorpej #include <sys/time.h>
49 1.1 thorpej #include <sys/systm.h>
50 1.1 thorpej #include <sys/proc.h>
51 1.12 thorpej #include <sys/lock.h>
52 1.34 mrg
53 1.34 mrg #include <uvm/uvm_extern.h>
54 1.29 thorpej
55 1.29 thorpej #define KMEM_IS_RUNNING (kmem_map != NULL)
56 1.18 pk #elif defined(_EXTENT_TESTING)
57 1.7 cgd /*
58 1.7 cgd * user-land definitions, so it can fit into a testing harness.
59 1.7 cgd */
60 1.7 cgd #include <sys/param.h>
61 1.18 pk #include <sys/pool.h>
62 1.7 cgd #include <sys/extent.h>
63 1.7 cgd #include <errno.h>
64 1.7 cgd #include <stdlib.h>
65 1.7 cgd #include <stdio.h>
66 1.28 ross #include <string.h>
67 1.7 cgd
68 1.30 jhawk /*
69 1.30 jhawk * Use multi-line #defines to avoid screwing up the kernel tags file;
70 1.30 jhawk * without this, ctags produces a tags file where panic() shows up
71 1.30 jhawk * in subr_extent.c rather than subr_prf.c.
72 1.30 jhawk */
73 1.30 jhawk #define \
74 1.30 jhawk malloc(s, t, flags) malloc(s)
75 1.30 jhawk #define \
76 1.30 jhawk free(p, t) free(p)
77 1.30 jhawk #define \
78 1.30 jhawk tsleep(chan, pri, str, timo) (EWOULDBLOCK)
79 1.38 augustss #define \
80 1.38 augustss ltsleep(chan,pri,str,timo,lck) (EWOULDBLOCK)
81 1.30 jhawk #define \
82 1.30 jhawk wakeup(chan) ((void)0)
83 1.30 jhawk #define \
84 1.30 jhawk pool_get(pool, flags) malloc(pool->pr_size,0,0)
85 1.30 jhawk #define \
86 1.30 jhawk pool_put(pool, rp) free(rp,0)
87 1.30 jhawk #define \
88 1.30 jhawk panic(a) printf(a)
89 1.30 jhawk #define \
90 1.30 jhawk splhigh() (1)
91 1.30 jhawk #define \
92 1.30 jhawk splx(s) ((void)(s))
93 1.29 thorpej
94 1.31 thorpej #define \
95 1.31 thorpej simple_lock_init(l) ((void)(l))
96 1.31 thorpej #define \
97 1.31 thorpej simple_lock(l) ((void)(l))
98 1.31 thorpej #define \
99 1.31 thorpej simple_unlock(l) ((void)(l))
100 1.29 thorpej #define KMEM_IS_RUNNING (1)
101 1.7 cgd #endif
102 1.1 thorpej
103 1.15 sommerfe static pool_handle_t expool_create __P((void));
104 1.6 thorpej static void extent_insert_and_optimize __P((struct extent *, u_long, u_long,
105 1.6 thorpej int, struct extent_region *, struct extent_region *));
106 1.1 thorpej static struct extent_region *extent_alloc_region_descriptor
107 1.1 thorpej __P((struct extent *, int));
108 1.1 thorpej static void extent_free_region_descriptor __P((struct extent *,
109 1.1 thorpej struct extent_region *));
110 1.1 thorpej
111 1.14 pk static pool_handle_t expool;
112 1.14 pk
113 1.1 thorpej /*
114 1.6 thorpej * Macro to align to an arbitrary power-of-two boundary.
115 1.6 thorpej */
116 1.19 pk #define EXTENT_ALIGN(_start, _align, _skew) \
117 1.19 pk (((((_start) - (_skew)) + ((_align) - 1)) & (-(_align))) + (_skew))
118 1.6 thorpej
119 1.6 thorpej /*
120 1.15 sommerfe * Create the extent_region pool.
121 1.15 sommerfe * (This is deferred until one of our callers thinks we can malloc()).
122 1.15 sommerfe */
123 1.15 sommerfe
124 1.15 sommerfe static pool_handle_t expool_create()
125 1.15 sommerfe {
126 1.18 pk #if defined(_KERNEL)
127 1.18 pk expool = pool_create(sizeof(struct extent_region), 0, 0,
128 1.18 pk 0, "extent", 0, 0, 0, 0);
129 1.18 pk #else
130 1.18 pk expool = (pool_handle_t)malloc(sizeof(*expool),0,0);
131 1.18 pk expool->pr_size = sizeof(struct extent_region);
132 1.18 pk #endif
133 1.18 pk return (expool);
134 1.15 sommerfe }
135 1.15 sommerfe
136 1.15 sommerfe /*
137 1.1 thorpej * Allocate and initialize an extent map.
138 1.1 thorpej */
139 1.1 thorpej struct extent *
140 1.1 thorpej extent_create(name, start, end, mtype, storage, storagesize, flags)
141 1.11 thorpej const char *name;
142 1.1 thorpej u_long start, end;
143 1.1 thorpej int mtype;
144 1.1 thorpej caddr_t storage;
145 1.1 thorpej size_t storagesize;
146 1.1 thorpej int flags;
147 1.1 thorpej {
148 1.1 thorpej struct extent *ex;
149 1.1 thorpej caddr_t cp = storage;
150 1.1 thorpej size_t sz = storagesize;
151 1.1 thorpej struct extent_region *rp;
152 1.1 thorpej int fixed_extent = (storage != NULL);
153 1.26 pk int s;
154 1.1 thorpej
155 1.6 thorpej #ifdef DIAGNOSTIC
156 1.1 thorpej /* Check arguments. */
157 1.1 thorpej if (name == NULL)
158 1.1 thorpej panic("extent_create: name == NULL");
159 1.1 thorpej if (end < start) {
160 1.5 christos printf("extent_create: extent `%s', start 0x%lx, end 0x%lx\n",
161 1.1 thorpej name, start, end);
162 1.1 thorpej panic("extent_create: end < start");
163 1.1 thorpej }
164 1.1 thorpej if (fixed_extent && (storagesize < sizeof(struct extent_fixed)))
165 1.22 thorpej panic("extent_create: fixed extent, bad storagesize 0x%lx",
166 1.22 thorpej (u_long)storagesize);
167 1.6 thorpej if (fixed_extent == 0 && (storagesize != 0 || storage != NULL))
168 1.6 thorpej panic("extent_create: storage provided for non-fixed");
169 1.6 thorpej #endif
170 1.1 thorpej
171 1.1 thorpej /* Allocate extent descriptor. */
172 1.1 thorpej if (fixed_extent) {
173 1.1 thorpej struct extent_fixed *fex;
174 1.1 thorpej
175 1.16 perry memset(storage, 0, storagesize);
176 1.1 thorpej
177 1.1 thorpej /*
178 1.1 thorpej * Align all descriptors on "long" boundaries.
179 1.1 thorpej */
180 1.1 thorpej fex = (struct extent_fixed *)cp;
181 1.1 thorpej ex = (struct extent *)fex;
182 1.6 thorpej cp += ALIGN(sizeof(struct extent_fixed));
183 1.6 thorpej sz -= ALIGN(sizeof(struct extent_fixed));
184 1.1 thorpej fex->fex_storage = storage;
185 1.1 thorpej fex->fex_storagesize = storagesize;
186 1.1 thorpej
187 1.1 thorpej /*
188 1.1 thorpej * In a fixed extent, we have to pre-allocate region
189 1.1 thorpej * descriptors and place them in the extent's freelist.
190 1.1 thorpej */
191 1.1 thorpej LIST_INIT(&fex->fex_freelist);
192 1.6 thorpej while (sz >= ALIGN(sizeof(struct extent_region))) {
193 1.1 thorpej rp = (struct extent_region *)cp;
194 1.6 thorpej cp += ALIGN(sizeof(struct extent_region));
195 1.6 thorpej sz -= ALIGN(sizeof(struct extent_region));
196 1.1 thorpej LIST_INSERT_HEAD(&fex->fex_freelist, rp, er_link);
197 1.1 thorpej }
198 1.1 thorpej } else {
199 1.26 pk s = splhigh();
200 1.26 pk if (expool == NULL)
201 1.26 pk expool_create();
202 1.26 pk splx(s);
203 1.26 pk if (expool == NULL)
204 1.26 pk return (NULL);
205 1.15 sommerfe
206 1.1 thorpej ex = (struct extent *)malloc(sizeof(struct extent),
207 1.1 thorpej mtype, (flags & EX_WAITOK) ? M_WAITOK : M_NOWAIT);
208 1.1 thorpej if (ex == NULL)
209 1.1 thorpej return (NULL);
210 1.1 thorpej }
211 1.1 thorpej
212 1.1 thorpej /* Fill in the extent descriptor and return it to the caller. */
213 1.12 thorpej simple_lock_init(&ex->ex_slock);
214 1.1 thorpej LIST_INIT(&ex->ex_regions);
215 1.1 thorpej ex->ex_name = name;
216 1.1 thorpej ex->ex_start = start;
217 1.1 thorpej ex->ex_end = end;
218 1.1 thorpej ex->ex_mtype = mtype;
219 1.1 thorpej ex->ex_flags = 0;
220 1.1 thorpej if (fixed_extent)
221 1.1 thorpej ex->ex_flags |= EXF_FIXED;
222 1.6 thorpej if (flags & EX_NOCOALESCE)
223 1.6 thorpej ex->ex_flags |= EXF_NOCOALESCE;
224 1.1 thorpej return (ex);
225 1.1 thorpej }
226 1.1 thorpej
227 1.1 thorpej /*
228 1.1 thorpej * Destroy an extent map.
229 1.21 chs * Since we're freeing the data, there can't be any references
230 1.21 chs * so we don't need any locking.
231 1.1 thorpej */
232 1.1 thorpej void
233 1.1 thorpej extent_destroy(ex)
234 1.1 thorpej struct extent *ex;
235 1.1 thorpej {
236 1.1 thorpej struct extent_region *rp, *orp;
237 1.1 thorpej
238 1.6 thorpej #ifdef DIAGNOSTIC
239 1.1 thorpej /* Check arguments. */
240 1.1 thorpej if (ex == NULL)
241 1.1 thorpej panic("extent_destroy: NULL extent");
242 1.6 thorpej #endif
243 1.12 thorpej
244 1.1 thorpej /* Free all region descriptors in extent. */
245 1.1 thorpej for (rp = ex->ex_regions.lh_first; rp != NULL; ) {
246 1.1 thorpej orp = rp;
247 1.1 thorpej rp = rp->er_link.le_next;
248 1.1 thorpej LIST_REMOVE(orp, er_link);
249 1.1 thorpej extent_free_region_descriptor(ex, orp);
250 1.1 thorpej }
251 1.1 thorpej
252 1.1 thorpej /* If we're not a fixed extent, free the extent descriptor itself. */
253 1.1 thorpej if ((ex->ex_flags & EXF_FIXED) == 0)
254 1.6 thorpej free(ex, ex->ex_mtype);
255 1.1 thorpej }
256 1.1 thorpej
257 1.1 thorpej /*
258 1.1 thorpej * Insert a region descriptor into the sorted region list after the
259 1.1 thorpej * entry "after" or at the head of the list (if "after" is NULL).
260 1.6 thorpej * The region descriptor we insert is passed in "rp". We must
261 1.6 thorpej * allocate the region descriptor before calling this function!
262 1.6 thorpej * If we don't need the region descriptor, it will be freed here.
263 1.1 thorpej */
264 1.6 thorpej static void
265 1.6 thorpej extent_insert_and_optimize(ex, start, size, flags, after, rp)
266 1.1 thorpej struct extent *ex;
267 1.1 thorpej u_long start, size;
268 1.1 thorpej int flags;
269 1.6 thorpej struct extent_region *after, *rp;
270 1.1 thorpej {
271 1.7 cgd struct extent_region *nextr;
272 1.1 thorpej int appended = 0;
273 1.1 thorpej
274 1.1 thorpej if (after == NULL) {
275 1.1 thorpej /*
276 1.1 thorpej * We're the first in the region list. If there's
277 1.1 thorpej * a region after us, attempt to coalesce to save
278 1.1 thorpej * descriptor overhead.
279 1.1 thorpej */
280 1.6 thorpej if (((ex->ex_flags & EXF_NOCOALESCE) == 0) &&
281 1.1 thorpej (ex->ex_regions.lh_first != NULL) &&
282 1.1 thorpej ((start + size) == ex->ex_regions.lh_first->er_start)) {
283 1.1 thorpej /*
284 1.1 thorpej * We can coalesce. Prepend us to the first region.
285 1.1 thorpej */
286 1.1 thorpej ex->ex_regions.lh_first->er_start = start;
287 1.6 thorpej extent_free_region_descriptor(ex, rp);
288 1.6 thorpej return;
289 1.1 thorpej }
290 1.1 thorpej
291 1.1 thorpej /*
292 1.6 thorpej * Can't coalesce. Fill in the region descriptor
293 1.1 thorpej * in, and insert us at the head of the region list.
294 1.1 thorpej */
295 1.1 thorpej rp->er_start = start;
296 1.1 thorpej rp->er_end = start + (size - 1);
297 1.1 thorpej LIST_INSERT_HEAD(&ex->ex_regions, rp, er_link);
298 1.6 thorpej return;
299 1.1 thorpej }
300 1.1 thorpej
301 1.1 thorpej /*
302 1.6 thorpej * If EXF_NOCOALESCE is set, coalescing is disallowed.
303 1.1 thorpej */
304 1.6 thorpej if (ex->ex_flags & EXF_NOCOALESCE)
305 1.6 thorpej goto cant_coalesce;
306 1.1 thorpej
307 1.1 thorpej /*
308 1.1 thorpej * Attempt to coalesce with the region before us.
309 1.1 thorpej */
310 1.1 thorpej if ((after->er_end + 1) == start) {
311 1.1 thorpej /*
312 1.1 thorpej * We can coalesce. Append ourselves and make
313 1.1 thorpej * note of it.
314 1.1 thorpej */
315 1.1 thorpej after->er_end = start + (size - 1);
316 1.1 thorpej appended = 1;
317 1.1 thorpej }
318 1.1 thorpej
319 1.1 thorpej /*
320 1.1 thorpej * Attempt to coalesce with the region after us.
321 1.1 thorpej */
322 1.1 thorpej if ((after->er_link.le_next != NULL) &&
323 1.1 thorpej ((start + size) == after->er_link.le_next->er_start)) {
324 1.1 thorpej /*
325 1.1 thorpej * We can coalesce. Note that if we appended ourselves
326 1.1 thorpej * to the previous region, we exactly fit the gap, and
327 1.1 thorpej * can free the "next" region descriptor.
328 1.1 thorpej */
329 1.1 thorpej if (appended) {
330 1.1 thorpej /*
331 1.1 thorpej * Yup, we can free it up.
332 1.1 thorpej */
333 1.1 thorpej after->er_end = after->er_link.le_next->er_end;
334 1.7 cgd nextr = after->er_link.le_next;
335 1.7 cgd LIST_REMOVE(nextr, er_link);
336 1.7 cgd extent_free_region_descriptor(ex, nextr);
337 1.1 thorpej } else {
338 1.1 thorpej /*
339 1.1 thorpej * Nope, just prepend us to the next region.
340 1.1 thorpej */
341 1.1 thorpej after->er_link.le_next->er_start = start;
342 1.1 thorpej }
343 1.6 thorpej
344 1.6 thorpej extent_free_region_descriptor(ex, rp);
345 1.6 thorpej return;
346 1.1 thorpej }
347 1.1 thorpej
348 1.1 thorpej /*
349 1.1 thorpej * We weren't able to coalesce with the next region, but
350 1.1 thorpej * we don't need to allocate a region descriptor if we
351 1.1 thorpej * appended ourselves to the previous region.
352 1.1 thorpej */
353 1.6 thorpej if (appended) {
354 1.6 thorpej extent_free_region_descriptor(ex, rp);
355 1.6 thorpej return;
356 1.6 thorpej }
357 1.1 thorpej
358 1.6 thorpej cant_coalesce:
359 1.1 thorpej
360 1.1 thorpej /*
361 1.6 thorpej * Fill in the region descriptor and insert ourselves
362 1.1 thorpej * into the region list.
363 1.1 thorpej */
364 1.1 thorpej rp->er_start = start;
365 1.1 thorpej rp->er_end = start + (size - 1);
366 1.1 thorpej LIST_INSERT_AFTER(after, rp, er_link);
367 1.1 thorpej }
368 1.1 thorpej
369 1.1 thorpej /*
370 1.1 thorpej * Allocate a specific region in an extent map.
371 1.1 thorpej */
372 1.1 thorpej int
373 1.1 thorpej extent_alloc_region(ex, start, size, flags)
374 1.1 thorpej struct extent *ex;
375 1.1 thorpej u_long start, size;
376 1.1 thorpej int flags;
377 1.1 thorpej {
378 1.6 thorpej struct extent_region *rp, *last, *myrp;
379 1.1 thorpej u_long end = start + (size - 1);
380 1.1 thorpej int error;
381 1.1 thorpej
382 1.6 thorpej #ifdef DIAGNOSTIC
383 1.1 thorpej /* Check arguments. */
384 1.1 thorpej if (ex == NULL)
385 1.1 thorpej panic("extent_alloc_region: NULL extent");
386 1.1 thorpej if (size < 1) {
387 1.5 christos printf("extent_alloc_region: extent `%s', size 0x%lx\n",
388 1.1 thorpej ex->ex_name, size);
389 1.1 thorpej panic("extent_alloc_region: bad size");
390 1.1 thorpej }
391 1.1 thorpej if (end < start) {
392 1.5 christos printf(
393 1.1 thorpej "extent_alloc_region: extent `%s', start 0x%lx, size 0x%lx\n",
394 1.1 thorpej ex->ex_name, start, size);
395 1.1 thorpej panic("extent_alloc_region: overflow");
396 1.1 thorpej }
397 1.6 thorpej #endif
398 1.6 thorpej
399 1.1 thorpej /*
400 1.1 thorpej * Make sure the requested region lies within the
401 1.1 thorpej * extent.
402 1.12 thorpej *
403 1.12 thorpej * We don't lock to check the range, because those values
404 1.12 thorpej * are never modified, and if another thread deletes the
405 1.12 thorpej * extent, we're screwed anyway.
406 1.1 thorpej */
407 1.1 thorpej if ((start < ex->ex_start) || (end > ex->ex_end)) {
408 1.6 thorpej #ifdef DIAGNOSTIC
409 1.5 christos printf("extent_alloc_region: extent `%s' (0x%lx - 0x%lx)\n",
410 1.1 thorpej ex->ex_name, ex->ex_start, ex->ex_end);
411 1.5 christos printf("extent_alloc_region: start 0x%lx, end 0x%lx\n",
412 1.1 thorpej start, end);
413 1.1 thorpej panic("extent_alloc_region: region lies outside extent");
414 1.6 thorpej #else
415 1.6 thorpej return (EINVAL);
416 1.6 thorpej #endif
417 1.6 thorpej }
418 1.6 thorpej
419 1.6 thorpej /*
420 1.6 thorpej * Allocate the region descriptor. It will be freed later
421 1.12 thorpej * if we can coalesce with another region. Don't lock before
422 1.12 thorpej * here! This could block.
423 1.6 thorpej */
424 1.6 thorpej myrp = extent_alloc_region_descriptor(ex, flags);
425 1.6 thorpej if (myrp == NULL) {
426 1.6 thorpej #ifdef DIAGNOSTIC
427 1.6 thorpej printf(
428 1.6 thorpej "extent_alloc_region: can't allocate region descriptor\n");
429 1.6 thorpej #endif
430 1.6 thorpej return (ENOMEM);
431 1.1 thorpej }
432 1.1 thorpej
433 1.1 thorpej alloc_start:
434 1.12 thorpej simple_lock(&ex->ex_slock);
435 1.12 thorpej
436 1.1 thorpej /*
437 1.1 thorpej * Attempt to place ourselves in the desired area of the
438 1.1 thorpej * extent. We save ourselves some work by keeping the list sorted.
439 1.1 thorpej * In other words, if the start of the current region is greater
440 1.1 thorpej * than the end of our region, we don't have to search any further.
441 1.1 thorpej */
442 1.1 thorpej
443 1.1 thorpej /*
444 1.1 thorpej * Keep a pointer to the last region we looked at so
445 1.1 thorpej * that we don't have to traverse the list again when
446 1.1 thorpej * we insert ourselves. If "last" is NULL when we
447 1.1 thorpej * finally insert ourselves, we go at the head of the
448 1.1 thorpej * list. See extent_insert_and_optimize() for details.
449 1.1 thorpej */
450 1.1 thorpej last = NULL;
451 1.1 thorpej
452 1.1 thorpej for (rp = ex->ex_regions.lh_first; rp != NULL;
453 1.1 thorpej rp = rp->er_link.le_next) {
454 1.1 thorpej if (rp->er_start > end) {
455 1.1 thorpej /*
456 1.1 thorpej * We lie before this region and don't
457 1.1 thorpej * conflict.
458 1.1 thorpej */
459 1.9 thorpej break;
460 1.1 thorpej }
461 1.1 thorpej
462 1.1 thorpej /*
463 1.1 thorpej * The current region begins before we end.
464 1.1 thorpej * Check for a conflict.
465 1.1 thorpej */
466 1.1 thorpej if (rp->er_end >= start) {
467 1.1 thorpej /*
468 1.6 thorpej * We conflict. If we can (and want to) wait,
469 1.6 thorpej * do so.
470 1.1 thorpej */
471 1.6 thorpej if (flags & EX_WAITSPACE) {
472 1.1 thorpej ex->ex_flags |= EXF_WANTED;
473 1.37 sommerfe error = ltsleep(ex,
474 1.37 sommerfe PNORELOCK | PRIBIO | ((flags & EX_CATCH) ? PCATCH : 0),
475 1.37 sommerfe "extnt", 0, &ex->ex_slock);
476 1.1 thorpej if (error)
477 1.1 thorpej return (error);
478 1.1 thorpej goto alloc_start;
479 1.1 thorpej }
480 1.6 thorpej extent_free_region_descriptor(ex, myrp);
481 1.12 thorpej simple_unlock(&ex->ex_slock);
482 1.1 thorpej return (EAGAIN);
483 1.1 thorpej }
484 1.1 thorpej /*
485 1.1 thorpej * We don't conflict, but this region lies before
486 1.1 thorpej * us. Keep a pointer to this region, and keep
487 1.1 thorpej * trying.
488 1.1 thorpej */
489 1.1 thorpej last = rp;
490 1.1 thorpej }
491 1.1 thorpej
492 1.1 thorpej /*
493 1.1 thorpej * We don't conflict with any regions. "last" points
494 1.1 thorpej * to the region we fall after, or is NULL if we belong
495 1.1 thorpej * at the beginning of the region list. Insert ourselves.
496 1.1 thorpej */
497 1.6 thorpej extent_insert_and_optimize(ex, start, size, flags, last, myrp);
498 1.12 thorpej simple_unlock(&ex->ex_slock);
499 1.6 thorpej return (0);
500 1.1 thorpej }
501 1.1 thorpej
502 1.1 thorpej /*
503 1.1 thorpej * Macro to check (x + y) <= z. This check is designed to fail
504 1.1 thorpej * if an overflow occurs.
505 1.1 thorpej */
506 1.1 thorpej #define LE_OV(x, y, z) ((((x) + (y)) >= (x)) && (((x) + (y)) <= (z)))
507 1.1 thorpej
508 1.1 thorpej /*
509 1.1 thorpej * Allocate a region in an extent map subregion.
510 1.1 thorpej *
511 1.1 thorpej * If EX_FAST is specified, we return the first fit in the map.
512 1.1 thorpej * Otherwise, we try to minimize fragmentation by finding the
513 1.1 thorpej * smallest gap that will hold the request.
514 1.1 thorpej *
515 1.1 thorpej * The allocated region is aligned to "alignment", which must be
516 1.1 thorpej * a power of 2.
517 1.1 thorpej */
518 1.1 thorpej int
519 1.19 pk extent_alloc_subregion1(ex, substart, subend, size, alignment, skew, boundary,
520 1.1 thorpej flags, result)
521 1.1 thorpej struct extent *ex;
522 1.19 pk u_long substart, subend, size, alignment, skew, boundary;
523 1.1 thorpej int flags;
524 1.1 thorpej u_long *result;
525 1.1 thorpej {
526 1.6 thorpej struct extent_region *rp, *myrp, *last, *bestlast;
527 1.1 thorpej u_long newstart, newend, beststart, bestovh, ovh;
528 1.23 mycroft u_long dontcross;
529 1.1 thorpej int error;
530 1.1 thorpej
531 1.6 thorpej #ifdef DIAGNOSTIC
532 1.12 thorpej /*
533 1.12 thorpej * Check arguments.
534 1.12 thorpej *
535 1.12 thorpej * We don't lock to check these, because these values
536 1.12 thorpej * are never modified, and if another thread deletes the
537 1.12 thorpej * extent, we're screwed anyway.
538 1.12 thorpej */
539 1.1 thorpej if (ex == NULL)
540 1.1 thorpej panic("extent_alloc_subregion: NULL extent");
541 1.1 thorpej if (result == NULL)
542 1.1 thorpej panic("extent_alloc_subregion: NULL result pointer");
543 1.8 thorpej if ((substart < ex->ex_start) || (substart > ex->ex_end) ||
544 1.8 thorpej (subend > ex->ex_end) || (subend < ex->ex_start)) {
545 1.5 christos printf("extent_alloc_subregion: extent `%s', ex_start 0x%lx, ex_end 0x%lx\n",
546 1.1 thorpej ex->ex_name, ex->ex_start, ex->ex_end);
547 1.5 christos printf("extent_alloc_subregion: substart 0x%lx, subend 0x%lx\n",
548 1.1 thorpej substart, subend);
549 1.1 thorpej panic("extent_alloc_subregion: bad subregion");
550 1.1 thorpej }
551 1.8 thorpej if ((size < 1) || ((size - 1) > (subend - substart))) {
552 1.5 christos printf("extent_alloc_subregion: extent `%s', size 0x%lx\n",
553 1.1 thorpej ex->ex_name, size);
554 1.1 thorpej panic("extent_alloc_subregion: bad size");
555 1.1 thorpej }
556 1.1 thorpej if (alignment == 0)
557 1.1 thorpej panic("extent_alloc_subregion: bad alignment");
558 1.1 thorpej if (boundary && (boundary < size)) {
559 1.5 christos printf(
560 1.1 thorpej "extent_alloc_subregion: extent `%s', size 0x%lx,
561 1.1 thorpej boundary 0x%lx\n", ex->ex_name, size, boundary);
562 1.1 thorpej panic("extent_alloc_subregion: bad boundary");
563 1.1 thorpej }
564 1.6 thorpej #endif
565 1.6 thorpej
566 1.6 thorpej /*
567 1.6 thorpej * Allocate the region descriptor. It will be freed later
568 1.12 thorpej * if we can coalesce with another region. Don't lock before
569 1.12 thorpej * here! This could block.
570 1.6 thorpej */
571 1.6 thorpej myrp = extent_alloc_region_descriptor(ex, flags);
572 1.6 thorpej if (myrp == NULL) {
573 1.6 thorpej #ifdef DIAGNOSTIC
574 1.6 thorpej printf(
575 1.6 thorpej "extent_alloc_subregion: can't allocate region descriptor\n");
576 1.6 thorpej #endif
577 1.6 thorpej return (ENOMEM);
578 1.6 thorpej }
579 1.1 thorpej
580 1.1 thorpej alloc_start:
581 1.12 thorpej simple_lock(&ex->ex_slock);
582 1.12 thorpej
583 1.1 thorpej /*
584 1.1 thorpej * Keep a pointer to the last region we looked at so
585 1.1 thorpej * that we don't have to traverse the list again when
586 1.1 thorpej * we insert ourselves. If "last" is NULL when we
587 1.1 thorpej * finally insert ourselves, we go at the head of the
588 1.1 thorpej * list. See extent_insert_and_optimize() for deatails.
589 1.1 thorpej */
590 1.1 thorpej last = NULL;
591 1.1 thorpej
592 1.1 thorpej /*
593 1.1 thorpej * Keep track of size and location of the smallest
594 1.1 thorpej * chunk we fit in.
595 1.1 thorpej *
596 1.1 thorpej * Since the extent can be as large as the numeric range
597 1.1 thorpej * of the CPU (0 - 0xffffffff for 32-bit systems), the
598 1.1 thorpej * best overhead value can be the maximum unsigned integer.
599 1.1 thorpej * Thus, we initialize "bestovh" to 0, since we insert ourselves
600 1.1 thorpej * into the region list immediately on an exact match (which
601 1.1 thorpej * is the only case where "bestovh" would be set to 0).
602 1.1 thorpej */
603 1.1 thorpej bestovh = 0;
604 1.1 thorpej beststart = 0;
605 1.1 thorpej bestlast = NULL;
606 1.1 thorpej
607 1.1 thorpej /*
608 1.1 thorpej * For N allocated regions, we must make (N + 1)
609 1.1 thorpej * checks for unallocated space. The first chunk we
610 1.1 thorpej * check is the area from the beginning of the subregion
611 1.9 thorpej * to the first allocated region after that point.
612 1.1 thorpej */
613 1.19 pk newstart = EXTENT_ALIGN(substart, alignment, skew);
614 1.1 thorpej if (newstart < ex->ex_start) {
615 1.6 thorpej #ifdef DIAGNOSTIC
616 1.5 christos printf(
617 1.1 thorpej "extent_alloc_subregion: extent `%s' (0x%lx - 0x%lx), alignment 0x%lx\n",
618 1.1 thorpej ex->ex_name, ex->ex_start, ex->ex_end, alignment);
619 1.12 thorpej simple_unlock(&ex->ex_slock);
620 1.1 thorpej panic("extent_alloc_subregion: overflow after alignment");
621 1.6 thorpej #else
622 1.6 thorpej extent_free_region_descriptor(ex, myrp);
623 1.12 thorpej simple_unlock(&ex->ex_slock);
624 1.6 thorpej return (EINVAL);
625 1.6 thorpej #endif
626 1.1 thorpej }
627 1.1 thorpej
628 1.9 thorpej /*
629 1.9 thorpej * Find the first allocated region that begins on or after
630 1.9 thorpej * the subregion start, advancing the "last" pointer along
631 1.9 thorpej * the way.
632 1.9 thorpej */
633 1.1 thorpej for (rp = ex->ex_regions.lh_first; rp != NULL;
634 1.18 pk rp = rp->er_link.le_next) {
635 1.9 thorpej if (rp->er_start >= newstart)
636 1.9 thorpej break;
637 1.9 thorpej last = rp;
638 1.9 thorpej }
639 1.17 pk
640 1.17 pk /*
641 1.25 drochner * Relocate the start of our candidate region to the end of
642 1.25 drochner * the last allocated region (if there was one overlapping
643 1.25 drochner * our subrange).
644 1.17 pk */
645 1.25 drochner if (last != NULL && last->er_end >= newstart)
646 1.19 pk newstart = EXTENT_ALIGN((last->er_end + 1), alignment, skew);
647 1.9 thorpej
648 1.9 thorpej for (; rp != NULL; rp = rp->er_link.le_next) {
649 1.1 thorpej /*
650 1.1 thorpej * Check the chunk before "rp". Note that our
651 1.1 thorpej * comparison is safe from overflow conditions.
652 1.1 thorpej */
653 1.1 thorpej if (LE_OV(newstart, size, rp->er_start)) {
654 1.1 thorpej /*
655 1.1 thorpej * Do a boundary check, if necessary. Note
656 1.1 thorpej * that a region may *begin* on the boundary,
657 1.1 thorpej * but it must end before the boundary.
658 1.1 thorpej */
659 1.1 thorpej if (boundary) {
660 1.1 thorpej newend = newstart + (size - 1);
661 1.1 thorpej
662 1.1 thorpej /*
663 1.23 mycroft * Calculate the next boundary after the start
664 1.23 mycroft * of this region.
665 1.23 mycroft */
666 1.24 mycroft dontcross = EXTENT_ALIGN(newstart+1, boundary,
667 1.23 mycroft (flags & EX_BOUNDZERO) ? 0 : ex->ex_start)
668 1.23 mycroft - 1;
669 1.23 mycroft
670 1.24 mycroft #if 0
671 1.33 pk printf("newstart=%lx newend=%lx ex_start=%lx ex_end=%lx boundary=%lx dontcross=%lx\n",
672 1.24 mycroft newstart, newend, ex->ex_start, ex->ex_end,
673 1.24 mycroft boundary, dontcross);
674 1.24 mycroft #endif
675 1.24 mycroft
676 1.32 mrg /* Check for overflow */
677 1.32 mrg if (dontcross < ex->ex_start)
678 1.32 mrg dontcross = ex->ex_end;
679 1.32 mrg else if (newend > dontcross) {
680 1.24 mycroft /*
681 1.24 mycroft * Candidate region crosses boundary.
682 1.24 mycroft * Throw away the leading part and see
683 1.24 mycroft * if we still fit.
684 1.24 mycroft */
685 1.24 mycroft newstart = dontcross + 1;
686 1.24 mycroft newend = newstart + (size - 1);
687 1.24 mycroft dontcross += boundary;
688 1.24 mycroft if (!LE_OV(newstart, size, rp->er_start))
689 1.24 mycroft continue;
690 1.24 mycroft }
691 1.24 mycroft
692 1.23 mycroft /*
693 1.23 mycroft * If we run past the end of
694 1.23 mycroft * the extent or the boundary
695 1.23 mycroft * overflows, then the request
696 1.23 mycroft * can't fit.
697 1.1 thorpej */
698 1.36 mrg if (newstart + size - 1 > ex->ex_end ||
699 1.23 mycroft dontcross < newstart)
700 1.23 mycroft goto fail;
701 1.1 thorpej }
702 1.1 thorpej
703 1.1 thorpej /*
704 1.1 thorpej * We would fit into this space. Calculate
705 1.1 thorpej * the overhead (wasted space). If we exactly
706 1.1 thorpej * fit, or we're taking the first fit, insert
707 1.1 thorpej * ourselves into the region list.
708 1.1 thorpej */
709 1.1 thorpej ovh = rp->er_start - newstart - size;
710 1.1 thorpej if ((flags & EX_FAST) || (ovh == 0))
711 1.1 thorpej goto found;
712 1.1 thorpej
713 1.1 thorpej /*
714 1.1 thorpej * Don't exactly fit, but check to see
715 1.1 thorpej * if we're better than any current choice.
716 1.1 thorpej */
717 1.1 thorpej if ((bestovh == 0) || (ovh < bestovh)) {
718 1.1 thorpej bestovh = ovh;
719 1.1 thorpej beststart = newstart;
720 1.1 thorpej bestlast = last;
721 1.1 thorpej }
722 1.1 thorpej }
723 1.1 thorpej
724 1.1 thorpej /*
725 1.1 thorpej * Skip past the current region and check again.
726 1.1 thorpej */
727 1.19 pk newstart = EXTENT_ALIGN((rp->er_end + 1), alignment, skew);
728 1.1 thorpej if (newstart < rp->er_end) {
729 1.1 thorpej /*
730 1.1 thorpej * Overflow condition. Don't error out, since
731 1.1 thorpej * we might have a chunk of space that we can
732 1.1 thorpej * use.
733 1.1 thorpej */
734 1.1 thorpej goto fail;
735 1.1 thorpej }
736 1.1 thorpej
737 1.1 thorpej last = rp;
738 1.1 thorpej }
739 1.1 thorpej
740 1.1 thorpej /*
741 1.1 thorpej * The final check is from the current starting point to the
742 1.1 thorpej * end of the subregion. If there were no allocated regions,
743 1.1 thorpej * "newstart" is set to the beginning of the subregion, or
744 1.1 thorpej * just past the end of the last allocated region, adjusted
745 1.1 thorpej * for alignment in either case.
746 1.1 thorpej */
747 1.1 thorpej if (LE_OV(newstart, (size - 1), subend)) {
748 1.24 mycroft /*
749 1.24 mycroft * Do a boundary check, if necessary. Note
750 1.24 mycroft * that a region may *begin* on the boundary,
751 1.24 mycroft * but it must end before the boundary.
752 1.24 mycroft */
753 1.24 mycroft if (boundary) {
754 1.24 mycroft newend = newstart + (size - 1);
755 1.24 mycroft
756 1.24 mycroft /*
757 1.24 mycroft * Calculate the next boundary after the start
758 1.24 mycroft * of this region.
759 1.24 mycroft */
760 1.24 mycroft dontcross = EXTENT_ALIGN(newstart+1, boundary,
761 1.24 mycroft (flags & EX_BOUNDZERO) ? 0 : ex->ex_start)
762 1.24 mycroft - 1;
763 1.24 mycroft
764 1.24 mycroft #if 0
765 1.33 pk printf("newstart=%lx newend=%lx ex_start=%lx ex_end=%lx boundary=%lx dontcross=%lx\n",
766 1.24 mycroft newstart, newend, ex->ex_start, ex->ex_end,
767 1.24 mycroft boundary, dontcross);
768 1.24 mycroft #endif
769 1.24 mycroft
770 1.32 mrg /* Check for overflow */
771 1.32 mrg if (dontcross < ex->ex_start)
772 1.32 mrg dontcross = ex->ex_end;
773 1.32 mrg else if (newend > dontcross) {
774 1.24 mycroft /*
775 1.24 mycroft * Candidate region crosses boundary.
776 1.24 mycroft * Throw away the leading part and see
777 1.24 mycroft * if we still fit.
778 1.24 mycroft */
779 1.24 mycroft newstart = dontcross + 1;
780 1.24 mycroft newend = newstart + (size - 1);
781 1.24 mycroft dontcross += boundary;
782 1.24 mycroft if (!LE_OV(newstart, (size - 1), subend))
783 1.24 mycroft goto fail;
784 1.24 mycroft }
785 1.24 mycroft
786 1.24 mycroft /*
787 1.24 mycroft * If we run past the end of
788 1.24 mycroft * the extent or the boundary
789 1.24 mycroft * overflows, then the request
790 1.24 mycroft * can't fit.
791 1.24 mycroft */
792 1.36 mrg if (newstart + size - 1 > ex->ex_end ||
793 1.24 mycroft dontcross < newstart)
794 1.24 mycroft goto fail;
795 1.24 mycroft }
796 1.24 mycroft
797 1.1 thorpej /*
798 1.1 thorpej * We would fit into this space. Calculate
799 1.1 thorpej * the overhead (wasted space). If we exactly
800 1.1 thorpej * fit, or we're taking the first fit, insert
801 1.1 thorpej * ourselves into the region list.
802 1.1 thorpej */
803 1.1 thorpej ovh = ex->ex_end - newstart - (size - 1);
804 1.1 thorpej if ((flags & EX_FAST) || (ovh == 0))
805 1.1 thorpej goto found;
806 1.1 thorpej
807 1.1 thorpej /*
808 1.1 thorpej * Don't exactly fit, but check to see
809 1.1 thorpej * if we're better than any current choice.
810 1.1 thorpej */
811 1.1 thorpej if ((bestovh == 0) || (ovh < bestovh)) {
812 1.1 thorpej bestovh = ovh;
813 1.1 thorpej beststart = newstart;
814 1.1 thorpej bestlast = last;
815 1.1 thorpej }
816 1.1 thorpej }
817 1.1 thorpej
818 1.1 thorpej fail:
819 1.1 thorpej /*
820 1.1 thorpej * One of the following two conditions have
821 1.1 thorpej * occurred:
822 1.1 thorpej *
823 1.1 thorpej * There is no chunk large enough to hold the request.
824 1.1 thorpej *
825 1.1 thorpej * If EX_FAST was not specified, there is not an
826 1.1 thorpej * exact match for the request.
827 1.1 thorpej *
828 1.1 thorpej * Note that if we reach this point and EX_FAST is
829 1.1 thorpej * set, then we know there is no space in the extent for
830 1.1 thorpej * the request.
831 1.1 thorpej */
832 1.1 thorpej if (((flags & EX_FAST) == 0) && (bestovh != 0)) {
833 1.1 thorpej /*
834 1.1 thorpej * We have a match that's "good enough".
835 1.1 thorpej */
836 1.1 thorpej newstart = beststart;
837 1.1 thorpej last = bestlast;
838 1.1 thorpej goto found;
839 1.1 thorpej }
840 1.1 thorpej
841 1.1 thorpej /*
842 1.1 thorpej * No space currently available. Wait for it to free up,
843 1.1 thorpej * if possible.
844 1.1 thorpej */
845 1.6 thorpej if (flags & EX_WAITSPACE) {
846 1.1 thorpej ex->ex_flags |= EXF_WANTED;
847 1.37 sommerfe error = ltsleep(ex,
848 1.37 sommerfe PNORELOCK | PRIBIO | ((flags & EX_CATCH) ? PCATCH : 0),
849 1.37 sommerfe "extnt", 0, &ex->ex_slock);
850 1.1 thorpej if (error)
851 1.1 thorpej return (error);
852 1.1 thorpej goto alloc_start;
853 1.1 thorpej }
854 1.1 thorpej
855 1.6 thorpej extent_free_region_descriptor(ex, myrp);
856 1.12 thorpej simple_unlock(&ex->ex_slock);
857 1.1 thorpej return (EAGAIN);
858 1.1 thorpej
859 1.1 thorpej found:
860 1.1 thorpej /*
861 1.1 thorpej * Insert ourselves into the region list.
862 1.1 thorpej */
863 1.6 thorpej extent_insert_and_optimize(ex, newstart, size, flags, last, myrp);
864 1.12 thorpej simple_unlock(&ex->ex_slock);
865 1.6 thorpej *result = newstart;
866 1.6 thorpej return (0);
867 1.1 thorpej }
868 1.1 thorpej
869 1.1 thorpej int
870 1.1 thorpej extent_free(ex, start, size, flags)
871 1.1 thorpej struct extent *ex;
872 1.1 thorpej u_long start, size;
873 1.1 thorpej int flags;
874 1.1 thorpej {
875 1.12 thorpej struct extent_region *rp, *nrp = NULL;
876 1.1 thorpej u_long end = start + (size - 1);
877 1.12 thorpej int exflags;
878 1.1 thorpej
879 1.6 thorpej #ifdef DIAGNOSTIC
880 1.12 thorpej /*
881 1.12 thorpej * Check arguments.
882 1.12 thorpej *
883 1.12 thorpej * We don't lock to check these, because these values
884 1.12 thorpej * are never modified, and if another thread deletes the
885 1.12 thorpej * extent, we're screwed anyway.
886 1.12 thorpej */
887 1.1 thorpej if (ex == NULL)
888 1.1 thorpej panic("extent_free: NULL extent");
889 1.1 thorpej if ((start < ex->ex_start) || (start > ex->ex_end)) {
890 1.1 thorpej extent_print(ex);
891 1.5 christos printf("extent_free: extent `%s', start 0x%lx, size 0x%lx\n",
892 1.1 thorpej ex->ex_name, start, size);
893 1.1 thorpej panic("extent_free: extent `%s', region not within extent",
894 1.1 thorpej ex->ex_name);
895 1.1 thorpej }
896 1.1 thorpej /* Check for an overflow. */
897 1.1 thorpej if (end < start) {
898 1.1 thorpej extent_print(ex);
899 1.5 christos printf("extent_free: extent `%s', start 0x%lx, size 0x%lx\n",
900 1.1 thorpej ex->ex_name, start, size);
901 1.1 thorpej panic("extent_free: overflow");
902 1.1 thorpej }
903 1.6 thorpej #endif
904 1.1 thorpej
905 1.1 thorpej /*
906 1.12 thorpej * If we're allowing coalescing, we must allocate a region
907 1.12 thorpej * descriptor now, since it might block.
908 1.12 thorpej *
909 1.12 thorpej * XXX Make a static, create-time flags word, so we don't
910 1.12 thorpej * XXX have to lock to read it!
911 1.12 thorpej */
912 1.12 thorpej simple_lock(&ex->ex_slock);
913 1.12 thorpej exflags = ex->ex_flags;
914 1.12 thorpej simple_unlock(&ex->ex_slock);
915 1.14 pk
916 1.12 thorpej if ((exflags & EXF_NOCOALESCE) == 0) {
917 1.12 thorpej /* Allocate a region descriptor. */
918 1.12 thorpej nrp = extent_alloc_region_descriptor(ex, flags);
919 1.12 thorpej if (nrp == NULL)
920 1.12 thorpej return (ENOMEM);
921 1.12 thorpej }
922 1.12 thorpej
923 1.12 thorpej simple_lock(&ex->ex_slock);
924 1.12 thorpej
925 1.12 thorpej /*
926 1.1 thorpej * Find region and deallocate. Several possibilities:
927 1.1 thorpej *
928 1.1 thorpej * 1. (start == er_start) && (end == er_end):
929 1.1 thorpej * Free descriptor.
930 1.1 thorpej *
931 1.1 thorpej * 2. (start == er_start) && (end < er_end):
932 1.1 thorpej * Adjust er_start.
933 1.1 thorpej *
934 1.1 thorpej * 3. (start > er_start) && (end == er_end):
935 1.1 thorpej * Adjust er_end.
936 1.1 thorpej *
937 1.1 thorpej * 4. (start > er_start) && (end < er_end):
938 1.1 thorpej * Fragment region. Requires descriptor alloc.
939 1.1 thorpej *
940 1.6 thorpej * Cases 2, 3, and 4 require that the EXF_NOCOALESCE flag
941 1.1 thorpej * is not set.
942 1.1 thorpej */
943 1.1 thorpej for (rp = ex->ex_regions.lh_first; rp != NULL;
944 1.1 thorpej rp = rp->er_link.le_next) {
945 1.1 thorpej /*
946 1.1 thorpej * Save ourselves some comparisons; does the current
947 1.1 thorpej * region end before chunk to be freed begins? If so,
948 1.1 thorpej * then we haven't found the appropriate region descriptor.
949 1.1 thorpej */
950 1.1 thorpej if (rp->er_end < start)
951 1.1 thorpej continue;
952 1.1 thorpej
953 1.1 thorpej /*
954 1.1 thorpej * Save ourselves some traversal; does the current
955 1.1 thorpej * region begin after the chunk to be freed ends? If so,
956 1.1 thorpej * then we've already passed any possible region descriptors
957 1.1 thorpej * that might have contained the chunk to be freed.
958 1.1 thorpej */
959 1.1 thorpej if (rp->er_start > end)
960 1.1 thorpej break;
961 1.1 thorpej
962 1.1 thorpej /* Case 1. */
963 1.1 thorpej if ((start == rp->er_start) && (end == rp->er_end)) {
964 1.1 thorpej LIST_REMOVE(rp, er_link);
965 1.1 thorpej extent_free_region_descriptor(ex, rp);
966 1.1 thorpej goto done;
967 1.1 thorpej }
968 1.1 thorpej
969 1.1 thorpej /*
970 1.6 thorpej * The following cases all require that EXF_NOCOALESCE
971 1.1 thorpej * is not set.
972 1.1 thorpej */
973 1.6 thorpej if (ex->ex_flags & EXF_NOCOALESCE)
974 1.1 thorpej continue;
975 1.1 thorpej
976 1.1 thorpej /* Case 2. */
977 1.1 thorpej if ((start == rp->er_start) && (end < rp->er_end)) {
978 1.1 thorpej rp->er_start = (end + 1);
979 1.1 thorpej goto done;
980 1.1 thorpej }
981 1.1 thorpej
982 1.1 thorpej /* Case 3. */
983 1.1 thorpej if ((start > rp->er_start) && (end == rp->er_end)) {
984 1.1 thorpej rp->er_end = (start - 1);
985 1.1 thorpej goto done;
986 1.1 thorpej }
987 1.1 thorpej
988 1.1 thorpej /* Case 4. */
989 1.1 thorpej if ((start > rp->er_start) && (end < rp->er_end)) {
990 1.1 thorpej /* Fill in new descriptor. */
991 1.1 thorpej nrp->er_start = end + 1;
992 1.1 thorpej nrp->er_end = rp->er_end;
993 1.1 thorpej
994 1.1 thorpej /* Adjust current descriptor. */
995 1.1 thorpej rp->er_end = start - 1;
996 1.1 thorpej
997 1.13 pk /* Insert new descriptor after current. */
998 1.1 thorpej LIST_INSERT_AFTER(rp, nrp, er_link);
999 1.13 pk
1000 1.13 pk /* We used the new descriptor, so don't free it below */
1001 1.13 pk nrp = NULL;
1002 1.1 thorpej goto done;
1003 1.1 thorpej }
1004 1.1 thorpej }
1005 1.1 thorpej
1006 1.1 thorpej /* Region not found, or request otherwise invalid. */
1007 1.12 thorpej simple_unlock(&ex->ex_slock);
1008 1.1 thorpej extent_print(ex);
1009 1.5 christos printf("extent_free: start 0x%lx, end 0x%lx\n", start, end);
1010 1.1 thorpej panic("extent_free: region not found");
1011 1.1 thorpej
1012 1.1 thorpej done:
1013 1.13 pk if (nrp != NULL)
1014 1.13 pk extent_free_region_descriptor(ex, nrp);
1015 1.1 thorpej if (ex->ex_flags & EXF_WANTED) {
1016 1.1 thorpej ex->ex_flags &= ~EXF_WANTED;
1017 1.1 thorpej wakeup(ex);
1018 1.1 thorpej }
1019 1.12 thorpej simple_unlock(&ex->ex_slock);
1020 1.1 thorpej return (0);
1021 1.1 thorpej }
1022 1.1 thorpej
1023 1.12 thorpej /*
1024 1.12 thorpej * Allocate an extent region descriptor. EXTENT MUST NOT BE LOCKED,
1025 1.12 thorpej * AS THIS FUNCTION MAY BLOCK! We will handle any locking we may need.
1026 1.12 thorpej */
1027 1.1 thorpej static struct extent_region *
1028 1.1 thorpej extent_alloc_region_descriptor(ex, flags)
1029 1.1 thorpej struct extent *ex;
1030 1.1 thorpej int flags;
1031 1.1 thorpej {
1032 1.1 thorpej struct extent_region *rp;
1033 1.12 thorpej int exflags;
1034 1.26 pk int s;
1035 1.29 thorpej
1036 1.29 thorpej /*
1037 1.29 thorpej * If the kernel memory allocator is not yet running, we can't
1038 1.29 thorpej * use it (obviously).
1039 1.29 thorpej */
1040 1.29 thorpej if (KMEM_IS_RUNNING == 0)
1041 1.29 thorpej flags &= ~EX_MALLOCOK;
1042 1.12 thorpej
1043 1.12 thorpej /*
1044 1.12 thorpej * XXX Make a static, create-time flags word, so we don't
1045 1.12 thorpej * XXX have to lock to read it!
1046 1.12 thorpej */
1047 1.12 thorpej simple_lock(&ex->ex_slock);
1048 1.12 thorpej exflags = ex->ex_flags;
1049 1.12 thorpej simple_unlock(&ex->ex_slock);
1050 1.1 thorpej
1051 1.12 thorpej if (exflags & EXF_FIXED) {
1052 1.1 thorpej struct extent_fixed *fex = (struct extent_fixed *)ex;
1053 1.1 thorpej
1054 1.12 thorpej for (;;) {
1055 1.12 thorpej simple_lock(&ex->ex_slock);
1056 1.12 thorpej if ((rp = fex->fex_freelist.lh_first) != NULL) {
1057 1.12 thorpej /*
1058 1.12 thorpej * Don't muck with flags after pulling it off
1059 1.12 thorpej * the freelist; it may have been dynamically
1060 1.12 thorpej * allocated, and kindly given to us. We
1061 1.12 thorpej * need to remember that information.
1062 1.12 thorpej */
1063 1.12 thorpej LIST_REMOVE(rp, er_link);
1064 1.12 thorpej simple_unlock(&ex->ex_slock);
1065 1.12 thorpej return (rp);
1066 1.12 thorpej }
1067 1.12 thorpej if (flags & EX_MALLOCOK) {
1068 1.12 thorpej simple_unlock(&ex->ex_slock);
1069 1.1 thorpej goto alloc;
1070 1.12 thorpej }
1071 1.12 thorpej if ((flags & EX_WAITOK) == 0) {
1072 1.12 thorpej simple_unlock(&ex->ex_slock);
1073 1.1 thorpej return (NULL);
1074 1.12 thorpej }
1075 1.1 thorpej ex->ex_flags |= EXF_FLWANTED;
1076 1.37 sommerfe if (ltsleep(&fex->fex_freelist,
1077 1.37 sommerfe PNORELOCK| PRIBIO | ((flags & EX_CATCH) ? PCATCH : 0),
1078 1.37 sommerfe "extnt", 0, &ex->ex_slock))
1079 1.1 thorpej return (NULL);
1080 1.1 thorpej }
1081 1.1 thorpej }
1082 1.1 thorpej
1083 1.1 thorpej alloc:
1084 1.26 pk s = splhigh();
1085 1.26 pk if (expool == NULL && !expool_create()) {
1086 1.26 pk splx(s);
1087 1.15 sommerfe return (NULL);
1088 1.26 pk }
1089 1.15 sommerfe
1090 1.14 pk rp = pool_get(expool, (flags & EX_WAITOK) ? PR_WAITOK : 0);
1091 1.26 pk splx(s);
1092 1.1 thorpej
1093 1.7 cgd if (rp != NULL)
1094 1.7 cgd rp->er_flags = ER_ALLOC;
1095 1.1 thorpej
1096 1.1 thorpej return (rp);
1097 1.1 thorpej }
1098 1.1 thorpej
1099 1.12 thorpej /*
1100 1.12 thorpej * Free an extent region descriptor. EXTENT _MUST_ BE LOCKED! This
1101 1.12 thorpej * is safe as we do not block here.
1102 1.12 thorpej */
1103 1.1 thorpej static void
1104 1.1 thorpej extent_free_region_descriptor(ex, rp)
1105 1.1 thorpej struct extent *ex;
1106 1.1 thorpej struct extent_region *rp;
1107 1.1 thorpej {
1108 1.26 pk int s;
1109 1.1 thorpej
1110 1.6 thorpej if (ex->ex_flags & EXF_FIXED) {
1111 1.1 thorpej struct extent_fixed *fex = (struct extent_fixed *)ex;
1112 1.1 thorpej
1113 1.6 thorpej /*
1114 1.6 thorpej * If someone's waiting for a region descriptor,
1115 1.6 thorpej * be nice and give them this one, rather than
1116 1.6 thorpej * just free'ing it back to the system.
1117 1.6 thorpej */
1118 1.6 thorpej if (rp->er_flags & ER_ALLOC) {
1119 1.6 thorpej if (ex->ex_flags & EXF_FLWANTED) {
1120 1.6 thorpej /* Clear all but ER_ALLOC flag. */
1121 1.6 thorpej rp->er_flags = ER_ALLOC;
1122 1.6 thorpej LIST_INSERT_HEAD(&fex->fex_freelist, rp,
1123 1.6 thorpej er_link);
1124 1.6 thorpej goto wake_em_up;
1125 1.6 thorpej } else {
1126 1.26 pk s = splhigh();
1127 1.14 pk pool_put(expool, rp);
1128 1.26 pk splx(s);
1129 1.6 thorpej }
1130 1.6 thorpej } else {
1131 1.6 thorpej /* Clear all flags. */
1132 1.6 thorpej rp->er_flags = 0;
1133 1.6 thorpej LIST_INSERT_HEAD(&fex->fex_freelist, rp, er_link);
1134 1.6 thorpej }
1135 1.6 thorpej
1136 1.1 thorpej if (ex->ex_flags & EXF_FLWANTED) {
1137 1.6 thorpej wake_em_up:
1138 1.1 thorpej ex->ex_flags &= ~EXF_FLWANTED;
1139 1.1 thorpej wakeup(&fex->fex_freelist);
1140 1.1 thorpej }
1141 1.6 thorpej return;
1142 1.6 thorpej }
1143 1.6 thorpej
1144 1.6 thorpej /*
1145 1.6 thorpej * We know it's dynamically allocated if we get here.
1146 1.6 thorpej */
1147 1.26 pk s = splhigh();
1148 1.14 pk pool_put(expool, rp);
1149 1.26 pk splx(s);
1150 1.1 thorpej }
1151 1.1 thorpej
1152 1.1 thorpej void
1153 1.1 thorpej extent_print(ex)
1154 1.1 thorpej struct extent *ex;
1155 1.1 thorpej {
1156 1.1 thorpej struct extent_region *rp;
1157 1.1 thorpej
1158 1.1 thorpej if (ex == NULL)
1159 1.1 thorpej panic("extent_print: NULL extent");
1160 1.1 thorpej
1161 1.12 thorpej simple_lock(&ex->ex_slock);
1162 1.12 thorpej
1163 1.5 christos printf("extent `%s' (0x%lx - 0x%lx), flags = 0x%x\n", ex->ex_name,
1164 1.1 thorpej ex->ex_start, ex->ex_end, ex->ex_flags);
1165 1.1 thorpej
1166 1.1 thorpej for (rp = ex->ex_regions.lh_first; rp != NULL;
1167 1.1 thorpej rp = rp->er_link.le_next)
1168 1.5 christos printf(" 0x%lx - 0x%lx\n", rp->er_start, rp->er_end);
1169 1.12 thorpej
1170 1.12 thorpej simple_unlock(&ex->ex_slock);
1171 1.1 thorpej }
1172