qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: qemu-block@nongnu.org, qemu-devel@nongnu.org
Cc: John Snow <jsnow@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>
Subject: [Qemu-devel] [PATCH 5/7] ide: make ide_transfer_stop idempotent
Date: Wed,  6 Jun 2018 15:09:53 -0400	[thread overview]
Message-ID: <20180606190955.20845-6-jsnow@redhat.com> (raw)
In-Reply-To: <20180606190955.20845-1-jsnow@redhat.com>

From: Paolo Bonzini <pbonzini@redhat.com>

There is code checking s->end_transfer_func and it was not taught about
ide_transfer_cancel.  We can just use ide_transfer_stop because
s->end_transfer_func is only ever called in the DRQ phase.

ide_transfer_cancel can then be removed, since it would just be
calling ide_transfer_halt.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---
 hw/ide/core.c | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/hw/ide/core.c b/hw/ide/core.c
index 54799ea6fb..9c4864ae54 100644
--- a/hw/ide/core.c
+++ b/hw/ide/core.c
@@ -547,10 +547,9 @@ static void ide_cmd_done(IDEState *s)
     }
 }
 
-static void ide_transfer_halt(IDEState *s,
-                              void(*end_transfer_func)(IDEState *))
+static void ide_transfer_halt(IDEState *s)
 {
-    s->end_transfer_func = end_transfer_func;
+    s->end_transfer_func = ide_transfer_stop;
     s->data_ptr = s->io_buffer;
     s->data_end = s->io_buffer;
     s->status &= ~DRQ_STAT;
@@ -558,15 +557,10 @@ static void ide_transfer_halt(IDEState *s,
 
 void ide_transfer_stop(IDEState *s)
 {
-    ide_transfer_halt(s, ide_transfer_stop);
+    ide_transfer_halt(s);
     ide_cmd_done(s);
 }
 
-static void ide_transfer_cancel(IDEState *s)
-{
-    ide_transfer_halt(s, ide_transfer_cancel);
-}
-
 int64_t ide_get_sector(IDEState *s)
 {
     int64_t sector_num;
@@ -1361,7 +1355,7 @@ static bool cmd_nop(IDEState *s, uint8_t cmd)
 static bool cmd_device_reset(IDEState *s, uint8_t cmd)
 {
     /* Halt PIO (in the DRQ phase), then DMA */
-    ide_transfer_cancel(s);
+    ide_transfer_halt(s);
     ide_cancel_dma_sync(s);
 
     /* Reset any PIO commands, reset signature, etc */
-- 
2.14.3

  parent reply	other threads:[~2018-06-06 19:10 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-06 19:09 [Qemu-devel] [PATCH 0/7] atapi: change unlimited recursion to while loop John Snow
2018-06-06 19:09 ` [Qemu-devel] [PATCH 1/7] libqos/ahci: track sector size John Snow
2018-06-06 19:40   ` Philippe Mathieu-Daudé
2018-06-06 19:09 ` [Qemu-devel] [PATCH 2/7] ahci: move PIO Setup FIS before transfer, fix it for ATAPI commands John Snow
2018-06-06 19:09 ` [Qemu-devel] [PATCH 3/7] ide: push end_transfer_func out of start_transfer callback, rename callback John Snow
2018-06-06 19:09 ` [Qemu-devel] [PATCH 4/7] ide: call ide_cmd_done from ide_transfer_stop John Snow
2018-06-06 19:42   ` Philippe Mathieu-Daudé
2018-06-06 19:09 ` John Snow [this message]
2018-06-06 19:43   ` [Qemu-devel] [PATCH 5/7] ide: make ide_transfer_stop idempotent Philippe Mathieu-Daudé
2018-06-06 19:09 ` [Qemu-devel] [PATCH 6/7] atapi: call ide_set_irq before ide_transfer_start John Snow
2018-06-06 19:09 ` [Qemu-devel] [PATCH 7/7] ide: introduce ide_transfer_start_norecurse John Snow
2018-06-06 19:10 ` [Qemu-devel] [PATCH 0/7] atapi: change unlimited recursion to while loop John Snow
2018-06-06 20:01 ` John Snow

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=20180606190955.20845-6-jsnow@redhat.com \
    --to=jsnow@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-block@nongnu.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).