From: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
To: Alyssa Milburn <fuzzie@fuzzie.org>, qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org, Alexander Graf <agraf@suse.de>,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [Qemu-devel] [PATCH] cuda.c: return error for unknown commands
Date: Sat, 23 Jan 2016 19:11:29 +0000 [thread overview]
Message-ID: <56A3D061.7040504@ilande.co.uk> (raw)
In-Reply-To: <20160122230724.GA25949@li141-249.members.linode.com>
On 22/01/16 23:07, Alyssa Milburn wrote:
> This avoids MacsBug hanging at startup in the absence of ADB mouse
> input, by replying with an error (which is also what MOL does) when
> it sends an unknown command (0x1c).
>
> Signed-off-by: Alyssa Milburn <fuzzie@fuzzie.org>
> ---
> hw/misc/macio/cuda.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
> index 9db4c64..7e57de5 100644
> --- a/hw/misc/macio/cuda.c
> +++ b/hw/misc/macio/cuda.c
> @@ -605,6 +605,11 @@ static void cuda_receive_packet(CUDAState *s,
> }
> break;
> default:
> + obuf[0] = ERROR_PACKET;
> + obuf[1] = 0x2;
> + obuf[2] = CUDA_PACKET;
> + obuf[3] = data[0];
> + cuda_send_packet_to_host(s, obuf, 4);
> break;
> }
> }
I've just tested this with OS 9 locally and it fixes the issue for me,
so thanks for the patch!
Have you tried any other OS images at all just in case it causes any
regressions? I generally test booting a set of
Linux/NetBSD/FreeBSD/OpenBSD ISO images for OpenBIOS changes, and while
they don't all work it's good to double-check that any changes don't
accidentally regress other OSs.
And one minor nit I've just noticed on second reading: the commit
message is fine except that it should explicitly reference OS 9 to
explain the motivation for the change.
ATB,
Mark.
next prev parent reply other threads:[~2016-01-23 19:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-22 23:07 [Qemu-devel] [PATCH] cuda.c: return error for unknown commands Alyssa Milburn
2016-01-23 19:11 ` Mark Cave-Ayland [this message]
2016-01-24 23:08 ` David Gibson
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=56A3D061.7040504@ilande.co.uk \
--to=mark.cave-ayland@ilande.co.uk \
--cc=agraf@suse.de \
--cc=david@gibson.dropbear.id.au \
--cc=fuzzie@fuzzie.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.