early-access version 3833
This commit is contained in:
parent
979f3570e9
commit
2c5f347c36
2 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3832.
|
This is the source code for early-access 3833.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -204,9 +204,11 @@ void nvhost_as_gpu::FreeMappingLocked(u64 offset) {
|
||||||
if (!mapping->fixed) {
|
if (!mapping->fixed) {
|
||||||
auto& allocator{mapping->big_page ? *vm.big_page_allocator : *vm.small_page_allocator};
|
auto& allocator{mapping->big_page ? *vm.big_page_allocator : *vm.small_page_allocator};
|
||||||
u32 page_size_bits{mapping->big_page ? vm.big_page_size_bits : VM::PAGE_SIZE_BITS};
|
u32 page_size_bits{mapping->big_page ? vm.big_page_size_bits : VM::PAGE_SIZE_BITS};
|
||||||
|
u32 page_size{mapping->big_page ? vm.big_page_size : VM::YUZU_PAGESIZE};
|
||||||
|
u64 aligned_size{Common::AlignUp(mapping->size, page_size)};
|
||||||
|
|
||||||
allocator.Free(static_cast<u32>(mapping->offset >> page_size_bits),
|
allocator.Free(static_cast<u32>(mapping->offset >> page_size_bits),
|
||||||
static_cast<u32>(mapping->size >> page_size_bits));
|
static_cast<u32>(aligned_size >> page_size_bits));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sparse mappings shouldn't be fully unmapped, just returned to their sparse state
|
// Sparse mappings shouldn't be fully unmapped, just returned to their sparse state
|
||||||
|
|
Loading…
Reference in a new issue