vm: don't force physical addresses to be nonzero.

This commit is contained in:
Ben Gras 2010-04-13 11:01:40 +00:00
parent bc314bda91
commit 1f1f8d2207

View file

@ -726,17 +726,11 @@ int written;
given.next = NULL;
memlist = &given;
used_memlist = 0;
assert(given.phys);
assert(given.length);
}
r = OK;
for(ml = memlist; ml; ml = ml->next) {
assert(ml->phys);
assert(ml->length);
}
for(ml = memlist; ml; ml = ml->next) {
struct phys_region *newphysr = NULL;
struct phys_block *newpb = NULL;
@ -750,9 +744,6 @@ int written;
break;
}
assert(ml->phys);
assert(ml->length);
/* New physical block. */
assert(!(ml->phys % VM_PAGE_SIZE));