qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: theburner1@yahoo.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] IDE: Implement SEEK command (resend)
Date: Wed, 10 Dec 2008 19:17:17 +0100	[thread overview]
Message-ID: <20081210181717.GH19379@volta.aurel32.net> (raw)
In-Reply-To: <821199.85524.qm@web51111.mail.re2.yahoo.com>

On Wed, Dec 10, 2008 at 07:44:04AM -0800, Justin Chevrier wrote:
> Resend original patch with correct Signed-off-by. Original text below.
> 
> 
> Openserver issues a SEEK command during initial drive detection. It refuses to report the hard drive if this command fails. This patch gets Openserver to list the hard drive but installation still fails (freezes) later on due to an unrelated IDE issue (patch on its way).
> 
> Justin
> 
> Changelog:
> 
> Implement SEEK command
> 
> Signed-off-by: Justin Chevrier <theburner1@yahoo.com>

Thanks, applied.

> Index: hw/ide.c
> ===================================================================
> --- hw/ide.c    (revision 5948)
> +++ hw/ide.c    (working copy)
> @@ -2324,6 +2324,13 @@
>              s->status = READY_STAT;
>              ide_set_irq(s);
>              break;
> +        case WIN_SEEK:
> +            if(s->is_cdrom)
> +                goto abort_cmd;
> +            /* XXX: Check that seek is within bounds */
> +            s->status = READY_STAT | SEEK_STAT;
> +            ide_set_irq(s);
> +            break;
>              /* ATAPI commands */
>          case WIN_PIDENTIFY:
>              if (s->is_cdrom) {
> 
> 
>       
> 
> 
> 

-- 
  .''`.  Aurelien Jarno	            | GPG: 1024D/F1BCDB73
 : :' :  Debian developer           | Electrical Engineer
 `. `'   aurel32@debian.org         | aurelien@aurel32.net
   `-    people.debian.org/~aurel32 | www.aurel32.net

      reply	other threads:[~2008-12-10 18:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-10 15:44 [Qemu-devel] [PATCH] IDE: Implement SEEK command (resend) Justin Chevrier
2008-12-10 18:17 ` Aurelien Jarno [this message]

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=20081210181717.GH19379@volta.aurel32.net \
    --to=aurelien@aurel32.net \
    --cc=qemu-devel@nongnu.org \
    --cc=theburner1@yahoo.com \
    /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).