Lines Matching refs:kernel_commands
3892 void *kernel_commands, u32 command_size, in vmw_execbuf_submit_fifo() argument
3907 memcpy(cmd, kernel_commands, command_size); in vmw_execbuf_submit_fifo()
3971 void *kernel_commands, u32 command_size, in vmw_execbuf_cmdbuf() argument
3983 if (!dev_priv->cman || kernel_commands) in vmw_execbuf_cmdbuf()
3984 return kernel_commands; in vmw_execbuf_cmdbuf()
3989 kernel_commands = vmw_cmdbuf_alloc(dev_priv->cman, cmdbuf_size, true, in vmw_execbuf_cmdbuf()
3991 if (IS_ERR(kernel_commands)) in vmw_execbuf_cmdbuf()
3992 return kernel_commands; in vmw_execbuf_cmdbuf()
3994 ret = copy_from_user(kernel_commands, user_commands, command_size); in vmw_execbuf_cmdbuf()
4002 return kernel_commands; in vmw_execbuf_cmdbuf()
4042 void __user *user_commands, void *kernel_commands, in vmw_execbuf_process() argument
4071 kernel_commands = vmw_execbuf_cmdbuf(dev_priv, user_commands, in vmw_execbuf_process()
4072 kernel_commands, command_size, in vmw_execbuf_process()
4074 if (IS_ERR(kernel_commands)) { in vmw_execbuf_process()
4075 ret = PTR_ERR(kernel_commands); in vmw_execbuf_process()
4086 if (kernel_commands == NULL) { in vmw_execbuf_process()
4099 kernel_commands = sw_context->cmd_bounce; in vmw_execbuf_process()
4133 ret = vmw_cmd_check_all(dev_priv, sw_context, kernel_commands, in vmw_execbuf_process()
4169 ret = vmw_execbuf_submit_fifo(dev_priv, kernel_commands, in vmw_execbuf_process()