@Roamic's hot region fix (#1570)

This commit is contained in:
georgemoralis 2024-11-22 14:53:16 +02:00 committed by GitHub
parent 8c9d7d1a08
commit 9ed07f6f6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -362,7 +362,7 @@ bool BufferCache::IsRegionRegistered(VAddr addr, size_t size) {
if (buf_start_addr < end_addr && addr < buf_end_addr) {
return true;
}
page = Common::DivCeil(end_addr, CACHING_PAGESIZE);
page = Common::DivCeil(buf_end_addr, CACHING_PAGESIZE);
}
return false;
}