nvdrv: Use ReadBuffer/WriteBuffer functions for Ioctl.
This commit is contained in:
parent
8f84665775
commit
d42e77797e
1 changed files with 5 additions and 17 deletions
|
@ -32,25 +32,13 @@ void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
|
||||||
u32 fd = rp.Pop<u32>();
|
u32 fd = rp.Pop<u32>();
|
||||||
u32 command = rp.Pop<u32>();
|
u32 command = rp.Pop<u32>();
|
||||||
|
|
||||||
|
std::vector<u8> output(ctx.GetWriteBufferSize());
|
||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 3};
|
IPC::ResponseBuilder rb{ctx, 3};
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
if (ctx.BufferDescriptorA()[0].Size() != 0) {
|
rb.Push(nvdrv->Ioctl(fd, command, ctx.ReadBuffer(), output));
|
||||||
auto input_buffer = ctx.BufferDescriptorA()[0];
|
|
||||||
auto output_buffer = ctx.BufferDescriptorB()[0];
|
ctx.WriteBuffer(output);
|
||||||
std::vector<u8> input(input_buffer.Size());
|
|
||||||
std::vector<u8> output(output_buffer.Size());
|
|
||||||
Memory::ReadBlock(input_buffer.Address(), input.data(), input_buffer.Size());
|
|
||||||
rb.Push(nvdrv->Ioctl(fd, command, input, output));
|
|
||||||
Memory::WriteBlock(output_buffer.Address(), output.data(), output_buffer.Size());
|
|
||||||
} else {
|
|
||||||
auto input_buffer = ctx.BufferDescriptorX()[0];
|
|
||||||
auto output_buffer = ctx.BufferDescriptorC()[0];
|
|
||||||
std::vector<u8> input(input_buffer.size);
|
|
||||||
std::vector<u8> output(output_buffer.size);
|
|
||||||
Memory::ReadBlock(input_buffer.Address(), input.data(), input_buffer.size);
|
|
||||||
rb.Push(nvdrv->Ioctl(fd, command, input, output));
|
|
||||||
Memory::WriteBlock(output_buffer.Address(), output.data(), output_buffer.size);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void NVDRV::Close(Kernel::HLERequestContext& ctx) {
|
void NVDRV::Close(Kernel::HLERequestContext& ctx) {
|
||||||
|
|
Loading…
Reference in a new issue