Oops, I accidently merged a whitespace error from the original commit.
(whitespace at end of line in rev 1.264 pmap.c). Fix them all.
This commit is contained in:
parent
303f52d500
commit
ab29f8765d
@ -2446,7 +2446,7 @@ pmap_object_init_pt(pmap_t pmap, vm_offset_t addr,
|
||||
|
||||
if (psize + pindex > object->size) {
|
||||
if (object->size < pindex)
|
||||
return;
|
||||
return;
|
||||
psize = object->size - pindex;
|
||||
}
|
||||
|
||||
|
@ -2553,7 +2553,7 @@ pmap_object_init_pt(pmap, addr, object, pindex, size, limit)
|
||||
|
||||
if (psize + pindex > object->size) {
|
||||
if (object->size < pindex)
|
||||
return;
|
||||
return;
|
||||
psize = object->size - pindex;
|
||||
}
|
||||
|
||||
|
@ -2553,7 +2553,7 @@ pmap_object_init_pt(pmap, addr, object, pindex, size, limit)
|
||||
|
||||
if (psize + pindex > object->size) {
|
||||
if (object->size < pindex)
|
||||
return;
|
||||
return;
|
||||
psize = object->size - pindex;
|
||||
}
|
||||
|
||||
|
@ -1858,7 +1858,7 @@ pmap_object_init_pt(pmap_t pmap, vm_offset_t addr,
|
||||
|
||||
if (psize + pindex > object->size) {
|
||||
if (object->size < pindex)
|
||||
return;
|
||||
return;
|
||||
psize = object->size - pindex;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user