Home
last modified time | relevance | path

Searched refs:kernel_commands (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_execbuf.c3934 void *kernel_commands, u32 command_size, in vmw_execbuf_submit_fifo() argument
3949 memcpy(cmd, kernel_commands, command_size); in vmw_execbuf_submit_fifo()
4013 void *kernel_commands, u32 command_size, in vmw_execbuf_cmdbuf() argument
4025 if (!dev_priv->cman || kernel_commands) in vmw_execbuf_cmdbuf()
4026 return kernel_commands; in vmw_execbuf_cmdbuf()
4031 kernel_commands = vmw_cmdbuf_alloc(dev_priv->cman, cmdbuf_size, true, in vmw_execbuf_cmdbuf()
4033 if (IS_ERR(kernel_commands)) in vmw_execbuf_cmdbuf()
4034 return kernel_commands; in vmw_execbuf_cmdbuf()
4036 ret = copy_from_user(kernel_commands, user_commands, command_size); in vmw_execbuf_cmdbuf()
4044 return kernel_commands; in vmw_execbuf_cmdbuf()
[all …]
H A Dvmwgfx_drv.h1004 void *kernel_commands,