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