summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/nvgpu.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/uapi/linux/nvgpu.h b/include/uapi/linux/nvgpu.h
index 97e791df..20acc66a 100644
--- a/include/uapi/linux/nvgpu.h
+++ b/include/uapi/linux/nvgpu.h
@@ -459,9 +459,11 @@ struct nvgpu_set_nvmap_fd_args {
459 __u32 fd; 459 __u32 fd;
460} __packed; 460} __packed;
461 461
462#define NVGPU_ALLOC_OBJ_FLAGS_LOCKBOOST_ZERO (1 << 0)
463
462struct nvgpu_alloc_obj_ctx_args { 464struct nvgpu_alloc_obj_ctx_args {
463 __u32 class_num; /* kepler3d, 2d, compute, etc */ 465 __u32 class_num; /* kepler3d, 2d, compute, etc */
464 __u32 padding; 466 __u32 flags; /* input, output */
465 __u64 obj_id; /* output, used to free later */ 467 __u64 obj_id; /* output, used to free later */
466}; 468};
467 469