Lines Matching defs:vfbs
828 struct vmw_framebuffer_surface *vfbs =
832 vmw_surface_unreference(&vfbs->surface);
833 if (vfbs->base.user_obj)
834 ttm_base_object_unref(&vfbs->base.user_obj);
836 kfree(vfbs);
894 struct vmw_framebuffer_surface *vfbs;
949 vfbs = kzalloc(sizeof(*vfbs), GFP_KERNEL);
950 if (!vfbs) {
955 drm_helper_mode_fill_fb_struct(dev, &vfbs->base.base, mode_cmd);
956 vfbs->surface = vmw_surface_reference(surface);
957 vfbs->base.user_handle = mode_cmd->handles[0];
958 vfbs->is_bo_proxy = is_bo_proxy;
960 *out = &vfbs->base;
962 ret = drm_framebuffer_init(dev, &vfbs->base.base,
971 kfree(vfbs);
2738 struct vmw_framebuffer_surface *vfbs =
2739 container_of(update->vfb, typeof(*vfbs), base);
2741 ret = vmw_validation_add_resource(&val_ctx, &vfbs->surface->res,