From: Stefan Hajnoczi <stefanha@gmail.com>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: "Marc-André Lureau" <marcandre.lureau@gmail.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
qemu-devel@nongnu.org, "Paolo Bonzini" <pbonzini@redhat.com>,
"Huacai Chen" <chenhuacai@kernel.org>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>
Subject: Re: [PULL v2 22/24] hw/display: make ATI_VGA depend on PIXMAN
Date: Tue, 7 Nov 2023 09:36:54 +0800 [thread overview]
Message-ID: <CAJSP0QUZcmzecB2QwyRum9mjabNsT=E3UgLLcRmwdkdyow5acA@mail.gmail.com> (raw)
In-Reply-To: <94018b35-7a33-7887-f1a8-13a9ee7b6542@eik.bme.hu>
On Tue, 7 Nov 2023 at 09:10, BALATON Zoltan <balaton@eik.bme.hu> wrote:
>
> On Tue, 7 Nov 2023, Stefan Hajnoczi wrote:
> > On Mon, 6 Nov 2023 at 19:04, BALATON Zoltan <balaton@eik.bme.hu> wrote:
> >>
> >> On Mon, 6 Nov 2023, Marc-André Lureau wrote:
> >>> Hi Zoltan
> >>>
> >>> On Mon, Nov 6, 2023 at 2:53 PM BALATON Zoltan <balaton@eik.bme.hu> wrote:
> >>>>
> >>>> On Mon, 6 Nov 2023, Philippe Mathieu-Daudé wrote:
> >>>>> On 6/11/23 11:11, Marc-André Lureau wrote:
> >>>>>> Hi Philippe
> >>>>>>
> >>>>>> On Mon, Nov 6, 2023 at 2:03 PM Philippe Mathieu-Daudé <philmd@linaro.org>
> >>>>>> wrote:
> >>>>>>>
> >>>>>>> Hi Marc-André,
> >>>>>>>
> >>>>>>> Cc'ing Fuloong maintainers,
> >>>>>>>
> >>>>>>> On 6/11/23 10:55, marcandre.lureau@redhat.com wrote:
> >>>>>>>> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> >>>>>>>>
> >>>>>>>> To avoid a kconfig cycle, change "depends on PCI" to "select PCI".
> >>>>>>>>
> >>>>>>>> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> >>>>>>>> Acked-by: BALATON Zoltan <balaton@eik.bme.hu>
> >>>>>>>> ---
> >>>>>>>> configs/devices/mips64el-softmmu/default.mak | 3 +--
> >>>>>>>> hw/display/Kconfig | 3 ++-
> >>>>>>>> hw/display/meson.build | 2 +-
> >>>>>>>> hw/mips/Kconfig | 2 ++
> >>>>>>>> 4 files changed, 6 insertions(+), 4 deletions(-)
> >>>>>>>>
> >>>>>>>> diff --git a/configs/devices/mips64el-softmmu/default.mak
> >>>>>>>> b/configs/devices/mips64el-softmmu/default.mak
> >>>>>>>> index d5188f7ea5..4d80d60511 100644
> >>>>>>>> --- a/configs/devices/mips64el-softmmu/default.mak
> >>>>>>>> +++ b/configs/devices/mips64el-softmmu/default.mak
> >>>>>>>> @@ -1,9 +1,8 @@
> >>>>>>>> # Default configuration for mips64el-softmmu
> >>>>>>>>
> >>>>>>>> include ../mips-softmmu/common.mak
> >>>>>>>> -CONFIG_FULOONG=y
> >>>>>>>> +#CONFIG_FULOONG=y
> >>>>>>>
> >>>>>>> Why is the justification to disable this board? From the
> >>>>>>> bare "avoid a kconfig cycle" commit message, it is not
> >>>>>>> obvious to me.
> >>>>>>
> >>>>>> It's not actually disabled, it's enabled by default in kconfig.
> >>>>>
> >>>>> OK, so let's remove the line entirely, not comment it, please.
> >>>>
> >>>> Well it's disabled without pixman... I have a series adding fallbacks to
> >>>> ati-vga similar to sm501 (which is also needed on aarch64 macOS where
> >>>> pixman does not work) and with that this isn't needed. So I think it's
> >>>> better to rebase this series on mine then some of this becomes
> >>>> unnecessary.
> >>>>
> >>>
> >>>
> >>> It's not ready yet though. We can later revert some of this change
> >>
> >> What's not ready about it?
> >>
> >>> when your fallback version is applied. In the meantime, this doesn't
> >>> change the behaviour unless PIXMAN has been disabled, so it should be
> >>> acceptable. Agree? thanks
> >>
> >> I think it would be better to not commit something that should be reverted
> >> soon. I understand you don't want to rebase yout series but I also don't
> >> want to revert it later so either do the rebase now or hold off with this
> >> series until after mine got in please.
> >
> > QEMU 8.2 soft freeze is today. If you both can resolve this and send
> > pull requests today, then the changes will make it into 8.2.
> > Otherwise, asking for this pull request to be rebased has the effect
> > of delaying it until 8.3.
> >
> > I'll keep an eye on this series today.
>
> Marc-André has sent a pull request that contains my ati-vga series:
> https://patchew.org/QEMU/20231106133219.2173660-1-marcandre.lureau@redhat.com/
> so I think he intends to rebase this series and send another version today
> or come back to this later. (8.3 will be called 9.0 by the way).
Excellent, thanks!
Stefan
next prev parent reply other threads:[~2023-11-07 1:38 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-06 9:55 [PULL v2 00/24] Pixman patches marcandre.lureau
2023-11-06 9:55 ` [PULL v2 01/24] build-sys: add a "pixman" feature marcandre.lureau
2023-11-06 9:55 ` [PULL v2 02/24] build-sys: drop needless warning pragmas for old pixman marcandre.lureau
2023-11-06 9:55 ` [PULL v2 03/24] ui: compile out some qemu-pixman functions when !PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 04/24] ui: add pixman-minimal.h marcandre.lureau
2023-11-06 9:55 ` [PULL v2 05/24] vl: drop needless -spice checks marcandre.lureau
2023-11-06 9:55 ` [PULL v2 06/24] qemu-options: define -vnc only #ifdef CONFIG_VNC marcandre.lureau
2023-11-06 9:55 ` [PULL v2 07/24] vl: simplify display_remote logic marcandre.lureau
2023-11-06 9:55 ` [PULL v2 08/24] vl: move display early init before default devices marcandre.lureau
2023-11-06 9:55 ` [PULL v2 09/24] ui/console: allow to override the default VC marcandre.lureau
2023-11-06 9:55 ` [PULL v2 10/24] ui/vc: console-vc requires PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 11/24] qmp/hmp: disable screendump if PIXMAN is missing marcandre.lureau
2023-11-06 9:55 ` [PULL v2 12/24] virtio-gpu: replace PIXMAN for region/rect test marcandre.lureau
2023-11-06 9:55 ` [PULL v2 13/24] ui/console: when PIXMAN is unavailable, don't draw placeholder msg marcandre.lureau
2023-11-06 9:55 ` [PULL v2 14/24] vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 15/24] ui/gl: opengl doesn't require PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 16/24] ui/vnc: VNC requires PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 17/24] ui/spice: SPICE/QXL " marcandre.lureau
2023-11-06 9:55 ` [PULL v2 18/24] ui/gtk: -display gtk " marcandre.lureau
2023-11-06 9:55 ` [PULL v2 19/24] ui/dbus: do not require PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 20/24] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 21/24] hw/sm501: allow compiling without PIXMAN marcandre.lureau
2023-11-06 9:55 ` [PULL v2 22/24] hw/display: make ATI_VGA depend on PIXMAN marcandre.lureau
2023-11-06 10:02 ` Philippe Mathieu-Daudé
2023-11-06 10:11 ` Marc-André Lureau
2023-11-06 10:47 ` Philippe Mathieu-Daudé
2023-11-06 10:53 ` BALATON Zoltan
2023-11-06 10:57 ` Marc-André Lureau
2023-11-06 11:05 ` BALATON Zoltan
2023-11-07 0:34 ` Stefan Hajnoczi
2023-11-07 1:10 ` BALATON Zoltan
2023-11-07 1:36 ` Stefan Hajnoczi [this message]
2023-11-06 10:46 ` BALATON Zoltan
2023-11-06 9:55 ` [PULL v2 23/24] hw/mips: FULOONG depends on VT82C686 marcandre.lureau
2023-11-06 10:03 ` Philippe Mathieu-Daudé
2023-11-06 9:55 ` [PULL v2 24/24] build-sys: make pixman actually optional marcandre.lureau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAJSP0QUZcmzecB2QwyRum9mjabNsT=E3UgLLcRmwdkdyow5acA@mail.gmail.com' \
--to=stefanha@gmail.com \
--cc=balaton@eik.bme.hu \
--cc=chenhuacai@kernel.org \
--cc=jiaxun.yang@flygoat.com \
--cc=marcandre.lureau@gmail.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).