mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	kernel/vm_manager: Use the VAddr type alias in CarveVMA()
These two variables correspond to address ranges.
This commit is contained in:
		
							parent
							
								
									a03c644aed
								
							
						
					
					
						commit
						ce5ad45278
					
				| @ -264,8 +264,8 @@ ResultVal<VMManager::VMAIter> VMManager::CarveVMA(VAddr base, u64 size) { | |||||||
|         return ERR_INVALID_ADDRESS_STATE; |         return ERR_INVALID_ADDRESS_STATE; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     u64 start_in_vma = base - vma.base; |     VAddr start_in_vma = base - vma.base; | ||||||
|     u64 end_in_vma = start_in_vma + size; |     VAddr end_in_vma = start_in_vma + size; | ||||||
| 
 | 
 | ||||||
|     if (end_in_vma > vma.size) { |     if (end_in_vma > vma.size) { | ||||||
|         // Requested allocation doesn't fit inside VMA
 |         // Requested allocation doesn't fit inside VMA
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Lioncash
						Lioncash