qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2 1/2] lsi: Purge request queue on soft reset


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH v2 1/2] lsi: Purge request queue on soft reset
Date: Mon, 03 May 2010 12:14:36 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-4.fc12 Lightning/1.0pre Thunderbird/3.0

On 04/30/2010 07:06 AM, Jan Kiszka wrote:
Avoid keeping zombie requests across controller reset by purging the
queue and also dropping the currently active request.

Signed-off-by: Jan Kiszka<address@hidden>

Applied all.  Thanks.

Regards,

Anthony Liguori
---
  hw/lsi53c895a.c |   11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c
index 98b7f54..ad23ece 100644
--- a/hw/lsi53c895a.c
+++ b/hw/lsi53c895a.c
@@ -283,6 +283,8 @@ static inline int lsi_irq_on_rsl(LSIState *s)

  static void lsi_soft_reset(LSIState *s)
  {
+    lsi_request *p;
+
      DPRINTF("Reset\n");
      s->carry = 0;

@@ -345,6 +347,15 @@ static void lsi_soft_reset(LSIState *s)
      s->sbc = 0;
      s->csbc = 0;
      s->sbr = 0;
+    while (!QTAILQ_EMPTY(&s->queue)) {
+        p = QTAILQ_FIRST(&s->queue);
+        QTAILQ_REMOVE(&s->queue, p, next);
+        qemu_free(p);
+    }
+    if (s->current) {
+        qemu_free(s->current);
+        s->current = NULL;
+    }
  }

  static int lsi_dma_40bit(LSIState *s)








reply via email to

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