Profile

Contact Details

Ribbons

Badges

Gerd Hoffmann


Contributions

1 to 5 of 26 total
Posted By Gerd Hoffmann 07-19-2023 14:03
Found In Egroup: virtio-comment
\ view thread
> +\begin(lstlisting) > +struct virtio_gpu_status_freezing ( > + struct virtio_gpu_ctrl_hdr hdr; > + __u32 freezing; > +); > +\end(lstlisting) > +This is added for S3 function in guest with virtio-gpu. When guest does > +S3, let it notify QEMU if virtio-gpu is in freezing status or not ...
Posted By Gerd Hoffmann 07-06-2023 11:54
Found In Egroup: virtio-comment
\ view thread
Hi, > +\item[VIRTIO_GPU_CMD_STATUS_FREEZING] > +Notify freezing status through controlq. > +Request data is \field(struct virtio_gpu_status_freezing). > +Response type is VIRTIO_GPU_RESP_OK_NODATA. > + > +Guest notifies QEMU if virtio-gpu is in freezing status or not in \field(freezing). ...
Posted By Gerd Hoffmann 09-15-2021 08:21
Found In Egroup: virtio-comment
\ view thread
On Wed, Sep 08, 2021 at 06:29:52PM -0700, Gurchetan Singh wrote: > Capability sets will be used as a proxy for the context type, > so add more detail regarding their use. > > Signed-off-by: Gurchetan Singh Reviewed-by: Gerd Hoffmann
Posted By Gerd Hoffmann 09-15-2021 08:21
Found In Egroup: virtio-comment
\ view thread
On Wed, Sep 08, 2021 at 06:29:53PM -0700, Gurchetan Singh wrote: > This brings explicit context initialization and different types > to virtio-gpu. > > In the past, VIRTIO_GPU_F_VIRGL meant the virglrenderer support. > With VIRTIO_GPU_F_VIRGL + VIRTIO_GPU_F_CONTEXT_INIT, this means > generic ...
Posted By Gerd Hoffmann 09-02-2021 10:32
Found In Egroup: virtio-comment
\ view thread
Hi, > struct virtio_gpu_ctrl_hdr ( > le32 type; > le32 flags; > le64 fence_id; > le32 ctx_id; > - le32 padding; > + le32 info; How about u8 ring_idx; u8 padding[3]; ? Otherwise this looks all sane to me. take care, Gerd