Skip to content
Snippets Groups Projects
Commit 040d84d8 authored by bunnei's avatar bunnei
Browse files

nvhost_gpu: Skip empty GPU command lists.

parent b88430c2
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,10 @@ u32 nvhost_gpu::AllocateObjectContext(const std::vector<u8>& input, std::vector< ...@@ -137,6 +137,10 @@ u32 nvhost_gpu::AllocateObjectContext(const std::vector<u8>& input, std::vector<
} }
static void PushGPUEntries(Tegra::CommandList&& entries) { static void PushGPUEntries(Tegra::CommandList&& entries) {
if (entries.empty()) {
return;
}
auto& dma_pusher{Core::System::GetInstance().GPU().DmaPusher()}; auto& dma_pusher{Core::System::GetInstance().GPU().DmaPusher()};
dma_pusher.Push(std::move(entries)); dma_pusher.Push(std::move(entries));
dma_pusher.DispatchCalls(); dma_pusher.DispatchCalls();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment