mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	k_capabilities: simplify KTrace map skip logic
This commit is contained in:
		
							parent
							
								
									12178c694a
								
							
						
					
					
						commit
						95bfc542aa
					
				| @ -185,6 +185,10 @@ Result KCapabilities::ProcessMapRegionCapability(const u32 cap, F f) { | ||||
|         case RegionType::NoMapping: | ||||
|             break; | ||||
|         case RegionType::KernelTraceBuffer: | ||||
|             if constexpr (!IsKTraceEnabled) { | ||||
|                 break; | ||||
|             } | ||||
|             [[fallthrough]]; | ||||
|         case RegionType::OnMemoryBootImage: | ||||
|         case RegionType::DTB: | ||||
|             R_TRY(f(MemoryRegions[static_cast<u32>(type)], perm)); | ||||
| @ -330,8 +334,6 @@ Result KCapabilities::SetCapabilities(std::span<const u32> caps, KProcessPageTab | ||||
| 
 | ||||
|             // Map the range.
 | ||||
|             R_TRY(this->MapRange_(cap, size_cap, page_table)); | ||||
|         } else if (GetCapabilityType(cap) == CapabilityType::MapRegion && !IsKTraceEnabled) { | ||||
|             continue; | ||||
|         } else { | ||||
|             R_TRY(this->SetCapability(cap, set_flags, set_svc, page_table)); | ||||
|         } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user