Home | History | Annotate | Download | only in vmwgfx

Lines Matching defs:vfbs

833 	struct vmw_framebuffer_surface *vfbs =
837 vmw_surface_unreference(&vfbs->surface);
838 if (vfbs->base.user_obj)
839 ttm_base_object_unref(&vfbs->base.user_obj);
841 kfree(vfbs);
899 struct vmw_framebuffer_surface *vfbs;
954 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
955 if (!vfbs) {
960 drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, mode_cmd);
961 vfbs->surface = vmw_surface_reference(surface);
962 vfbs->base.user_handle = mode_cmd->handles[0];
963 vfbs->is_bo_proxy = is_bo_proxy;
965 *out = &vfbs->base;
967 ret = drm_framebuffer_init(dev, &vfbs->base.base,
976 kfree(vfbs);
2833 struct vmw_framebuffer_surface *vfbs =
2834 container_of(update->vfb, typeof(*vfbs), base);
2836 ret = vmw_validation_add_resource(&val_ctx, &vfbs->surface->res,