1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Add ability to set start/end for rman

This commit is contained in:
Warner Losh 2004-07-01 16:22:10 +00:00
parent deb9654818
commit da35daffaf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131414

View File

@ -680,6 +680,18 @@ rman_set_rid(struct resource *r, int rid)
r->r_rid = rid;
}
void
rman_set_start(struct resource *r, u_long start)
{
r->r_start = start;
}
void
rman_set_end(struct resource *r, u_long end)
{
r->r_end = end;
}
int
rman_get_rid(struct resource *r)
{