All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] s390x/css: disabled subchannels cannot be status pending
@ 2018-05-04 13:16 Cornelia Huck
  2018-05-04 13:39 ` Thomas Huth
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Cornelia Huck @ 2018-05-04 13:16 UTC (permalink / raw)
  To: Christian Borntraeger, Alexander Graf
  Cc: Thomas Huth, Halil Pasic, qemu-s390x, qemu-devel, Cornelia Huck

The 3270 code will try to post an attention interrupt when the
3270 emulator (e.g. x3270) attaches. If the guest has not yet
enabled the subchannel for the 3270 device, we will give it a
spurious status during msch when it does so later.

To fix this, just don't do anything in css_conditional_io_interrupt()
if the subchannel is not enabled. The 3270 code will work fine with
that, and the other user of this function (virtio-ccw) never
attempts to post an interrupt for a disabled device to begin with.

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 hw/s390x/css.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/hw/s390x/css.c b/hw/s390x/css.c
index 301bf1772f..56c3fa8c89 100644
--- a/hw/s390x/css.c
+++ b/hw/s390x/css.c
@@ -616,6 +616,14 @@ void css_inject_io_interrupt(SubchDev *sch)
 
 void css_conditional_io_interrupt(SubchDev *sch)
 {
+    /*
+     * If the subchannel is not enabled, it is not made status pending
+     * (see PoP p. 16-17, "Status Control").
+     */
+    if (!(sch->curr_status.pmcw.flags & PMCW_FLAGS_MASK_ENA)) {
+        return;
+    }
+
     /*
      * If the subchannel is not currently status pending, make it pending
      * with alert status.
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-05-08  9:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-04 13:16 [Qemu-devel] [PATCH] s390x/css: disabled subchannels cannot be status pending Cornelia Huck
2018-05-04 13:39 ` Thomas Huth
2018-05-04 13:44   ` [Qemu-devel] [qemu-s390x] " Christian Borntraeger
2018-05-04 15:02 ` [Qemu-devel] " Halil Pasic
2018-05-07 10:12   ` Cornelia Huck
2018-05-07 11:08     ` Halil Pasic
2018-05-07  8:41 ` [Qemu-devel] [qemu-s390x] " David Hildenbrand
2018-05-08  9:55 ` [Qemu-devel] " Cornelia Huck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.