diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1999-06-26 10:27:30 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1999-06-26 10:27:30 +0000 |
| commit | 9fd5198d2d8efa3d7a5a390aa13d02a6c788e7ed (patch) | |
| tree | 2fe832919b306160d3e7ef7f62a866fe5c87fa53 | |
| parent | 981067204705290bf3df3f49259868a870b8e29e (diff) | |
Notes
| -rw-r--r-- | sys/kern/subr_rman.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c index a0432308d6c5..609937eddf32 100644 --- a/sys/kern/subr_rman.c +++ b/sys/kern/subr_rman.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_rman.c,v 1.6 1999/04/11 02:27:06 eivind Exp $ + * $Id: subr_rman.c,v 1.7 1999/04/16 21:22:39 peter Exp $ */ /* @@ -244,7 +244,7 @@ rman_reserve_resource(struct rman *rm, u_long start, u_long end, u_long count, printf("candidate region is entire chunk\n"); #endif /* RMAN_DEBUG */ rv = s; - rv->r_flags |= RF_ALLOCATED; + rv->r_flags |= RF_ALLOCATED | flags; rv->r_dev = dev; goto out; } |
