Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_execbuf.c3344 if (likely(sw_context->cmd_bounce_size >= size)) in vmw_resize_cmd_bounce()
3347 if (sw_context->cmd_bounce_size == 0) in vmw_resize_cmd_bounce()
3348 sw_context->cmd_bounce_size = VMWGFX_CMD_BOUNCE_INIT_SIZE; in vmw_resize_cmd_bounce()
3350 while (sw_context->cmd_bounce_size < size) { in vmw_resize_cmd_bounce()
3351 sw_context->cmd_bounce_size = in vmw_resize_cmd_bounce()
3352 PAGE_ALIGN(sw_context->cmd_bounce_size + in vmw_resize_cmd_bounce()
3353 (sw_context->cmd_bounce_size >> 1)); in vmw_resize_cmd_bounce()
3357 sw_context->cmd_bounce = vmalloc(sw_context->cmd_bounce_size); in vmw_resize_cmd_bounce()
3361 sw_context->cmd_bounce_size = 0; in vmw_resize_cmd_bounce()
H A Dvmwgfx_drv.h399 uint32_t cmd_bounce_size; member