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