qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] Re: [PATCH 2/5] ATAPI pass through v2: adds few comments


From: Bique Alexandre
Subject: [Qemu-devel] Re: [PATCH 2/5] ATAPI pass through v2: adds few comments
Date: Thu, 2 Jul 2009 11:38:00 +0100
User-agent: KMail/1.11.4 (Linux/2.6.30-ARCH; KDE/4.2.4; x86_64; ; )

On Wednesday 01 July 2009 19:46:56 Juan Quintela wrote:
> Bique Alexandre <address@hidden> wrote:
> > This patch adds few comments to some CD-ROM emulated commands.
>
> diff --git a/hw/ide.c b/hw/ide.c
> index 1e56786..063f08d 100644
> --- a/hw/ide.c
> +++ b/hw/ide.c
> @@ -1664,9 +1664,9 @@ static void ide_atapi_cmd(IDEState *s)
>              switch(action) {
>              case 0: /* current values */
>                  switch(code) {
> -                case 0x01: /* error recovery */
> +                case 0x01: /* read write error recovery parameters */
>                      cpu_to_ube16(&buf[0], 16 + 6);
> -                    buf[2] = 0x70;
> +                    buf[2] = 0x70; /* Obselete: medium type code */
>                                        ^^^^^^^^
> Obsolete I guess
>                      buf[3] = 0;
>                      buf[4] = 0;
>                      buf[5] = 0;
> @@ -1683,17 +1683,17 @@ static void ide_atapi_cmd(IDEState *s)
>                      buf[15] = 0x00;
>                      ide_atapi_cmd_reply(s, 16, max_len);
>                      break;
> -                case 0x2a:
> +                case 0x2a: /* CD/DVD capabilities & mechanical status */
>                      cpu_to_ube16(&buf[0], 28 + 6);
> -                    buf[2] = 0x70;
> +                    buf[2] = 0x70; /* Obselete: medium type code */
> Obsolete I guess also
>                      buf[3] = 0;
>                      buf[4] = 0;
>                      buf[5] = 0;
>                      buf[6] = 0;
>                      buf[7] = 0;
>
> -                    buf[8] = 0x2a;
> -                    buf[9] = 0x12;
> +                    buf[8] = 0x2a; /* page code */
> +                    buf[9] = 0x12; /* page lenght */
>                      buf[10] = 0x00;
>                      buf[11] = 0x00;

You're right. Thanks again.
I join the updated patch.

-- 
Alexandre Bique

Attachment: atapi-comments
Description: Text Data


reply via email to

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