Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/gpu/drm/vmwgfx/
Dvmwgfx_execbuf.c2285 if (likely(sw_context->cmd_bounce_size >= size)) in vmw_resize_cmd_bounce()
2288 if (sw_context->cmd_bounce_size == 0) in vmw_resize_cmd_bounce()
2289 sw_context->cmd_bounce_size = VMWGFX_CMD_BOUNCE_INIT_SIZE; in vmw_resize_cmd_bounce()
2291 while (sw_context->cmd_bounce_size < size) { in vmw_resize_cmd_bounce()
2292 sw_context->cmd_bounce_size = in vmw_resize_cmd_bounce()
2293 PAGE_ALIGN(sw_context->cmd_bounce_size + in vmw_resize_cmd_bounce()
2294 (sw_context->cmd_bounce_size >> 1)); in vmw_resize_cmd_bounce()
2300 sw_context->cmd_bounce = vmalloc(sw_context->cmd_bounce_size); in vmw_resize_cmd_bounce()
2304 sw_context->cmd_bounce_size = 0; in vmw_resize_cmd_bounce()
Dvmwgfx_drv.h343 uint32_t cmd_bounce_size; member