Lines Matching refs:kernel_commands
3746 void *kernel_commands, in vmw_execbuf_submit_fifo() argument
3763 memcpy(cmd, kernel_commands, command_size); in vmw_execbuf_submit_fifo()
3825 void *kernel_commands, in vmw_execbuf_cmdbuf() argument
3833 if (!dev_priv->cman || kernel_commands) in vmw_execbuf_cmdbuf()
3834 return kernel_commands; in vmw_execbuf_cmdbuf()
3844 kernel_commands = vmw_cmdbuf_alloc(dev_priv->cman, cmdbuf_size, in vmw_execbuf_cmdbuf()
3846 if (IS_ERR(kernel_commands)) in vmw_execbuf_cmdbuf()
3847 return kernel_commands; in vmw_execbuf_cmdbuf()
3849 ret = copy_from_user(kernel_commands, user_commands, in vmw_execbuf_cmdbuf()
3858 return kernel_commands; in vmw_execbuf_cmdbuf()
3895 void *kernel_commands, in vmw_execbuf_process() argument
3919 kernel_commands = vmw_execbuf_cmdbuf(dev_priv, user_commands, in vmw_execbuf_process()
3920 kernel_commands, command_size, in vmw_execbuf_process()
3922 if (IS_ERR(kernel_commands)) in vmw_execbuf_process()
3923 return PTR_ERR(kernel_commands); in vmw_execbuf_process()
3932 if (kernel_commands == NULL) { in vmw_execbuf_process()
3946 kernel_commands = sw_context->cmd_bounce; in vmw_execbuf_process()
3982 ret = vmw_cmd_check_all(dev_priv, sw_context, kernel_commands, in vmw_execbuf_process()
4025 ret = vmw_execbuf_submit_fifo(dev_priv, kernel_commands, in vmw_execbuf_process()