summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
diff options
context:
space:
mode:
authorKonsta Holtta <kholtta@nvidia.com>2018-05-17 07:01:36 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-18 17:05:30 -0400
commitde67fb18fb639b7a605c77eeb2e1c639a8a3d67e (patch)
treef435a0f82f0e08d911c04f43ff91141f0b7471aa /drivers/gpu/nvgpu/common/linux/ioctl_channel.c
parent6266a1210d9fa36916e7469a0107b73a076b43a1 (diff)
gpu: nvgpu: drop force_need_sync_fence in submit path
For CDE work a sync fence is always requested, but kernel does not need it and submit flags from userspace will be passed to the submit function in cde path so a sync fence will get created if necessary. To reduce some complexity, remove the explicit boolean in favor of just NVGPU_SUBMIT_FLAGS_SYNC_FENCE. Jira NVGPU-705 Change-Id: I8aac85288513ed7cc640acd021d892cee86f41d8 Signed-off-by: Konsta Holtta <kholtta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1721785 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl_channel.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
index c1492cad..057c81e2 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
@@ -803,7 +803,7 @@ static int gk20a_ioctl_channel_submit_gpfifo(
803 803
804 ret = gk20a_submit_channel_gpfifo(ch, NULL, args, args->num_entries, 804 ret = gk20a_submit_channel_gpfifo(ch, NULL, args, args->num_entries,
805 submit_flags, &fence, 805 submit_flags, &fence,
806 &fence_out, false, profile); 806 &fence_out, profile);
807 807
808 if (ret) { 808 if (ret) {
809 if (fd != -1) 809 if (fd != -1)