mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Mark KickOffPb & SubmitGPFIFO as trace
These functions are not stubbed and are called fairly often. Due to the nature of how often they're called, we should keep them marked as LOG_TRACE instead of LOG_DEBUG or LOG_WARNING
This commit is contained in:
		@@ -146,8 +146,8 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp
 | 
			
		||||
    }
 | 
			
		||||
    IoctlSubmitGpfifo params{};
 | 
			
		||||
    std::memcpy(¶ms, input.data(), sizeof(IoctlSubmitGpfifo));
 | 
			
		||||
    LOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}",
 | 
			
		||||
                params.address, params.num_entries, params.flags.raw);
 | 
			
		||||
    LOG_TRACE(Service_NVDRV, "called, gpfifo={:X}, num_entries={:X}, flags={:X}", params.address,
 | 
			
		||||
              params.num_entries, params.flags.raw);
 | 
			
		||||
 | 
			
		||||
    ASSERT_MSG(input.size() == sizeof(IoctlSubmitGpfifo) +
 | 
			
		||||
                                   params.num_entries * sizeof(Tegra::CommandListHeader),
 | 
			
		||||
@@ -179,8 +179,8 @@ u32 nvhost_gpu::KickoffPB(const std::vector<u8>& input, std::vector<u8>& output)
 | 
			
		||||
    }
 | 
			
		||||
    IoctlSubmitGpfifo params{};
 | 
			
		||||
    std::memcpy(¶ms, input.data(), sizeof(IoctlSubmitGpfifo));
 | 
			
		||||
    LOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}",
 | 
			
		||||
                params.address, params.num_entries, params.flags.raw);
 | 
			
		||||
    LOG_TRACE(Service_NVDRV, "called, gpfifo={:X}, num_entries={:X}, flags={:X}", params.address,
 | 
			
		||||
              params.num_entries, params.flags.raw);
 | 
			
		||||
 | 
			
		||||
    Tegra::CommandList entries(params.num_entries);
 | 
			
		||||
    Memory::ReadBlock(params.address, entries.data(),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user