summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/nvgpu.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/uapi/linux/nvgpu.h b/include/uapi/linux/nvgpu.h
index 984d1319..80ac159e 100644
--- a/include/uapi/linux/nvgpu.h
+++ b/include/uapi/linux/nvgpu.h
@@ -607,8 +607,19 @@ struct nvgpu_dbg_gpu_timeout_args {
607#define NVGPU_DBG_GPU_IOCTL_GET_TIMEOUT \ 607#define NVGPU_DBG_GPU_IOCTL_GET_TIMEOUT \
608 _IOR(NVGPU_DBG_GPU_IOCTL_MAGIC, 11, struct nvgpu_dbg_gpu_timeout_args) 608 _IOR(NVGPU_DBG_GPU_IOCTL_MAGIC, 11, struct nvgpu_dbg_gpu_timeout_args)
609 609
610
611struct nvgpu_dbg_gpu_set_next_stop_trigger_type_args {
612 __u32 broadcast;
613 __u32 reserved;
614};
615
616#define NVGPU_DBG_GPU_IOCTL_SET_NEXT_STOP_TRIGGER_TYPE \
617 _IOWR(NVGPU_DBG_GPU_IOCTL_MAGIC, 12, struct nvgpu_dbg_gpu_set_next_stop_trigger_type_args)
618
619
610#define NVGPU_DBG_GPU_IOCTL_LAST \ 620#define NVGPU_DBG_GPU_IOCTL_LAST \
611 _IOC_NR(NVGPU_DBG_GPU_IOCTL_GET_TIMEOUT) 621 _IOC_NR(NVGPU_DBG_GPU_IOCTL_SET_NEXT_STOP_TRIGGER_TYPE)
622
612#define NVGPU_DBG_GPU_IOCTL_MAX_ARG_SIZE \ 623#define NVGPU_DBG_GPU_IOCTL_MAX_ARG_SIZE \
613 sizeof(struct nvgpu_dbg_gpu_perfbuf_map_args) 624 sizeof(struct nvgpu_dbg_gpu_perfbuf_map_args)
614 625