Home
last modified time | relevance | path

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

/Linux-v5.15/drivers/gpu/drm/vmwgfx/
Dvmwgfx_execbuf.c3737 if (likely(sw_context->cmd_bounce_size >= size)) in vmw_resize_cmd_bounce()
3740 if (sw_context->cmd_bounce_size == 0) in vmw_resize_cmd_bounce()
3741 sw_context->cmd_bounce_size = VMWGFX_CMD_BOUNCE_INIT_SIZE; in vmw_resize_cmd_bounce()
3743 while (sw_context->cmd_bounce_size < size) { in vmw_resize_cmd_bounce()
3744 sw_context->cmd_bounce_size = in vmw_resize_cmd_bounce()
3745 PAGE_ALIGN(sw_context->cmd_bounce_size + in vmw_resize_cmd_bounce()
3746 (sw_context->cmd_bounce_size >> 1)); in vmw_resize_cmd_bounce()
3750 sw_context->cmd_bounce = vmalloc(sw_context->cmd_bounce_size); in vmw_resize_cmd_bounce()
3754 sw_context->cmd_bounce_size = 0; in vmw_resize_cmd_bounce()
Dvmwgfx_drv.h414 uint32_t cmd_bounce_size; member