Nuke a couple of unnecessary assigments. Nothing uses the values of rstart

and rend after this point.

MFC after:	1 week
This commit is contained in:
Don Lewis 2014-05-12 17:56:52 +00:00
parent 41bc2b723c
commit 11ada7013a

@ -607,8 +607,6 @@ rman_reserve_resource_bound(struct rman *rm, u_long start, u_long end,
break;
if ((s->r_flags & flags) != flags)
continue;
rstart = ulmax(s->r_start, start);
rend = ulmin(s->r_end, ulmax(start + count - 1, end));
if (s->r_start >= start && s->r_end <= end
&& (s->r_end - s->r_start + 1) == count &&
(s->r_start & amask) == 0 &&