qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 2/4] s390-ccw.img: Enhance drain_irqs().


From: Cornelia Huck
Subject: [Qemu-devel] [PATCH 2/4] s390-ccw.img: Enhance drain_irqs().
Date: Tue, 23 Apr 2013 14:37:12 +0200

- Use tpi + tsch to get interrupts.
- Return an error if the irb indicates problems.

Signed-off-by: Cornelia Huck <address@hidden>
---
 pc-bios/s390-ccw/virtio.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/pc-bios/s390-ccw/virtio.c b/pc-bios/s390-ccw/virtio.c
index 79e2941..2a132f8 100644
--- a/pc-bios/s390-ccw/virtio.c
+++ b/pc-bios/s390-ccw/virtio.c
@@ -38,12 +38,27 @@ static void virtio_notify(struct subchannel_id schid)
  *             Virtio functions                *
  ***********************************************/
 
-static void drain_irqs(struct subchannel_id schid)
+static int drain_irqs(struct subchannel_id schid)
 {
     struct irb irb = {};
+    struct tpi_info tpi_info = {};
+    int r = 0;
+
     while (1) {
-        if (tsch(schid, &irb)) {
-            return;
+        if (tpi(&tpi_info)) {
+            if (tpi_info.schid.sch_no != schid.sch_no) {
+                /* should not really happen... */
+                continue;
+            }
+            if (tsch(schid, &irb)) {
+                /* Might want to differentiate error codes later on. */
+                if (irb.scsw.cstat) {
+                    r = -EIO;
+                } else if (irb.scsw.dstat != 0xc) {
+                    r = -EIO;
+                }
+                return r;
+            }
         }
     }
 }
-- 
1.7.12.4




reply via email to

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