qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 3/3] virtio-gpu: Do not distinguish the primary console


From: Akihiko Odaki
Subject: Re: [PATCH v3 3/3] virtio-gpu: Do not distinguish the primary console
Date: Thu, 25 Feb 2021 18:45:48 +0900

2021年2月25日(木) 18:11 Gerd Hoffmann <kraxel@redhat.com>:
>
> > -        if (m->scanout_id == 0 && m->width == 0) {
> > +        if (m->width == 0) {
> >              s->ds = qemu_create_placeholder_surface(640, 480,
> >                                                      "Guest disabled 
> > display.");
> >              dpy_gfx_replace_surface(con, s->ds);
>
> Just call dpy_gfx_replace_surface(con, NULL) here and let console.c
> create the placeholder?

I'll change according to this and the comments in the other replies
and submit a new version.

>
> >      for (i = 0; i < g->conf.max_outputs; i++) {
> >          g->scanout[i].con =
> >              graphic_console_init(DEVICE(g), i, &virtio_gpu_ops, g);
> > -        if (i > 0) {
> > -            dpy_gfx_replace_surface(g->scanout[i].con, NULL);
> > -        }
>
> I think we should call dpy_gfx_replace_surface(..., NULL)
> unconditionally here instead of removing the call.

graphic_console_init will set a placeholder anyway so it does not need
an additional call.

>
> > +    /* primary head */
>
> Comment can go away as we remove the special case for scanout == 0,
>
> > +    ds = qemu_create_placeholder_surface(scanout->width  ?: 640,
> > +                                         scanout->height ?: 480,
> > +                                         "Guest disabled display.");
> >      dpy_gfx_replace_surface(scanout->con, ds);
>
> likewise "dpy_gfx_replace_surface(..., NULL);"
>
> take care,
>   Gerd
>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]