Home
last modified time | relevance | path

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

/drivers/gpu/drm/vmwgfx/
Dvmwgfx_execbuf.c964 if (likely(sw_context->cmd_bounce_size >= size)) in vmw_resize_cmd_bounce()
967 if (sw_context->cmd_bounce_size == 0) in vmw_resize_cmd_bounce()
968 sw_context->cmd_bounce_size = VMWGFX_CMD_BOUNCE_INIT_SIZE; in vmw_resize_cmd_bounce()
970 while (sw_context->cmd_bounce_size < size) { in vmw_resize_cmd_bounce()
971 sw_context->cmd_bounce_size = in vmw_resize_cmd_bounce()
972 PAGE_ALIGN(sw_context->cmd_bounce_size + in vmw_resize_cmd_bounce()
973 (sw_context->cmd_bounce_size >> 1)); in vmw_resize_cmd_bounce()
979 sw_context->cmd_bounce = vmalloc(sw_context->cmd_bounce_size); in vmw_resize_cmd_bounce()
983 sw_context->cmd_bounce_size = 0; in vmw_resize_cmd_bounce()
Dvmwgfx_drv.h164 uint32_t cmd_bounce_size; member