From: Laurent Vivier <laurent@vivier.eu>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>, qemu-devel@nongnu.org
Subject: Re: [PATCH v2 03/12] macfb: fix overflow of color_palette array
Date: Tue, 5 Oct 2021 08:34:03 +0200 [thread overview]
Message-ID: <087a5700-e6a4-eaf1-84c1-bf9170e2c1ed@vivier.eu> (raw)
In-Reply-To: <20211004211928.15803-4-mark.cave-ayland@ilande.co.uk>
Le 04/10/2021 à 23:19, Mark Cave-Ayland a écrit :
> The palette_current index counter has a maximum size of 256 * 3 to cover a full
> color palette of 256 RGB entries. Linux assumes that the palette_current index
> wraps back around to zero after writing 256 RGB entries so ensure that
> palette_current is reset at this point to prevent data corruption within
> MacfbState.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> ---
> hw/display/macfb.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/hw/display/macfb.c b/hw/display/macfb.c
> index b363bab889..39dab49026 100644
> --- a/hw/display/macfb.c
> +++ b/hw/display/macfb.c
> @@ -303,7 +303,9 @@ static void macfb_ctrl_write(void *opaque,
> s->palette_current = 0;
> break;
> case DAFB_LUT:
> - s->color_palette[s->palette_current++] = val;
> + s->color_palette[s->palette_current] = val;
> + s->palette_current = (s->palette_current + 1) %
> + ARRAY_SIZE(s->color_palette);
> if (s->palette_current % 3) {
> macfb_invalidate_display(s);
> }
>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
next prev parent reply other threads:[~2021-10-05 6:35 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-04 21:19 [PATCH v2 00/12] macfb: fixes for booting MacOS Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 01/12] macfb: handle errors that occur during realize Mark Cave-Ayland
2021-10-05 15:34 ` Philippe Mathieu-Daudé
2021-10-04 21:19 ` [PATCH v2 02/12] macfb: fix invalid object reference in macfb_common_realize() Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 03/12] macfb: fix overflow of color_palette array Mark Cave-Ayland
2021-10-05 6:34 ` Laurent Vivier [this message]
2021-10-04 21:19 ` [PATCH v2 04/12] macfb: use memory_region_init_ram() in macfb_common_realize() for the framebuffer Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 05/12] macfb: add trace events for reading and writing the control registers Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 06/12] macfb: implement mode sense to allow display type to be detected Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 07/12] macfb: add qdev property to specify display type Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 08/12] macfb: add common monitor modes supported by the MacOS toolbox ROM Mark Cave-Ayland
2021-10-05 9:50 ` Laurent Vivier
2021-10-05 11:38 ` Mark Cave-Ayland
2021-10-05 15:08 ` Laurent Vivier
2021-10-05 15:33 ` Mark Cave-Ayland
2021-10-06 12:24 ` Laurent Vivier
2021-10-06 13:54 ` Mark Cave-Ayland
2021-10-06 15:46 ` Laurent Vivier
2021-10-06 16:09 ` Mark Cave-Ayland
2021-10-06 19:24 ` Laurent Vivier
2021-10-06 21:16 ` Laurent Vivier
2021-10-07 9:19 ` Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 09/12] macfb: fix up 1-bit pixel encoding Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 10/12] macfb: fix 24-bit RGB " Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 11/12] macfb: add vertical blank interrupt Mark Cave-Ayland
2021-10-04 21:19 ` [PATCH v2 12/12] q800: wire macfb IRQ to separate video interrupt on VIA2 Mark Cave-Ayland
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=087a5700-e6a4-eaf1-84c1-bf9170e2c1ed@vivier.eu \
--to=laurent@vivier.eu \
--cc=mark.cave-ayland@ilande.co.uk \
--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).