Displaying 2 results from an estimated 2 matches for "virtio_fb_cmd".
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...virtqueue *vq_out;
> + struct virtio_device *vdev;
> +
> + void *last_buf[MAX_BUF];
> + int last_buf_idx;
> + spinlock_t vfree_lock;
> + struct work_struct vfree_work;
> + struct work_struct refresh_work;
> +};
> +
> +/* guest -> Host commands */
> +#define VIRTIO_FB_CMD_RESIZE 0x01
> +#define VIRTIO_FB_CMD_FILL 0x02
> +#define VIRTIO_FB_CMD_BLIT 0x03
> +#define VIRTIO_FB_CMD_COPY 0x04...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
...virtqueue *vq_out;
> + struct virtio_device *vdev;
> +
> + void *last_buf[MAX_BUF];
> + int last_buf_idx;
> + spinlock_t vfree_lock;
> + struct work_struct vfree_work;
> + struct work_struct refresh_work;
> +};
> +
> +/* guest -> Host commands */
> +#define VIRTIO_FB_CMD_RESIZE 0x01
> +#define VIRTIO_FB_CMD_FILL 0x02
> +#define VIRTIO_FB_CMD_BLIT 0x03
> +#define VIRTIO_FB_CMD_COPY 0x04...