summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/ioctl_channel.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/ioctl_channel.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
index ed00ad31..ee4755c8 100644
--- a/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
+++ b/drivers/gpu/nvgpu/common/linux/ioctl_channel.c
@@ -28,6 +28,7 @@
28#include <nvgpu/log.h> 28#include <nvgpu/log.h>
29#include <nvgpu/list.h> 29#include <nvgpu/list.h>
30#include <nvgpu/debug.h> 30#include <nvgpu/debug.h>
31#include <nvgpu/enabled.h>
31 32
32#include "gk20a/gk20a.h" 33#include "gk20a/gk20a.h"
33#include "gk20a/ctxsw_trace_gk20a.h" 34#include "gk20a/ctxsw_trace_gk20a.h"
@@ -99,8 +100,7 @@ static int gk20a_channel_cycle_stats(struct channel_gk20a *ch,
99 void *virtual_address; 100 void *virtual_address;
100 101
101 /* is it allowed to handle calls for current GPU? */ 102 /* is it allowed to handle calls for current GPU? */
102 if (0 == (ch->g->gpu_characteristics.flags & 103 if (!nvgpu_is_enabled(ch->g, NVGPU_SUPPORT_CYCLE_STATS))
103 NVGPU_GPU_FLAGS_SUPPORT_CYCLE_STATS))
104 return -ENOSYS; 104 return -ENOSYS;
105 105
106 if (args->dmabuf_fd && !ch->cyclestate.cyclestate_buffer_handler) { 106 if (args->dmabuf_fd && !ch->cyclestate.cyclestate_buffer_handler) {
@@ -176,8 +176,7 @@ static int gk20a_channel_cycle_stats_snapshot(struct channel_gk20a *ch,
176 int ret; 176 int ret;
177 177
178 /* is it allowed to handle calls for current GPU? */ 178 /* is it allowed to handle calls for current GPU? */
179 if (0 == (ch->g->gpu_characteristics.flags & 179 if (!nvgpu_is_enabled(ch->g, NVGPU_SUPPORT_CYCLE_STATS_SNAPSHOT))
180 NVGPU_GPU_FLAGS_SUPPORT_CYCLE_STATS_SNAPSHOT))
181 return -ENOSYS; 180 return -ENOSYS;
182 181
183 if (!args->dmabuf_fd) 182 if (!args->dmabuf_fd)