bootloader: Range check should be > not >=.
The difference should be harmless here, though.
This commit is contained in:
@@ -368,7 +368,7 @@ ignore_physical_memory_ranges_beyond_4gb()
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((range.start + range.size) >= kLimit) {
|
if ((range.start + range.size) > kLimit) {
|
||||||
// the range is partially beyond the limit
|
// the range is partially beyond the limit
|
||||||
dprintf("ignore_physical_memory_ranges_beyond_4gb(): ignoring "
|
dprintf("ignore_physical_memory_ranges_beyond_4gb(): ignoring "
|
||||||
"range: %#" B_PRIx64 " - %#" B_PRIx64 "\n", kLimit,
|
"range: %#" B_PRIx64 " - %#" B_PRIx64 "\n", kLimit,
|
||||||
|
|||||||
Reference in New Issue
Block a user