[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PULL 1/6] s390x/css: disabled subchannels cannot be status
From: |
Cornelia Huck |
Subject: |
[qemu-s390x] [PULL 1/6] s390x/css: disabled subchannels cannot be status pending |
Date: |
Mon, 14 May 2018 17:41:09 +0200 |
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 present a spurious
cc 1 (status pending) when it uses msch on it later on, e.g. when
trying to enable the subchannel.
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.
CC: address@hidden
Reported-by: Thomas Huth <address@hidden>
Tested-by: Thomas Huth <address@hidden>
Acked-by: Christian Borntraeger <address@hidden>
Acked-by: Halil Pasic <address@hidden>
Reviewed-by: David Hildenbrand <address@hidden>
Signed-off-by: Cornelia Huck <address@hidden>
---
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
- [qemu-s390x] [PULL 0/6] s390x fixes/cleanups, Cornelia Huck, 2018/05/14
- [qemu-s390x] [PULL 2/6] pc-bios/s390-ccw: struct tpi_info must be declared as aligned(4), Cornelia Huck, 2018/05/14
- [qemu-s390x] [PULL 1/6] s390x/css: disabled subchannels cannot be status pending,
Cornelia Huck <=
- [qemu-s390x] [PULL 3/6] virtio-ccw: common reset handler, Cornelia Huck, 2018/05/14
- [qemu-s390x] [PULL 4/6] s390x/ccw: make sure all ccw devices are properly reset, Cornelia Huck, 2018/05/14
- [qemu-s390x] [PULL 6/6] target/s390x: Fix brace Werror with clang 6.0.0, Cornelia Huck, 2018/05/14
- [qemu-s390x] [PULL 5/6] s390x: refactor reset/reipl handling, Cornelia Huck, 2018/05/14
- Re: [qemu-s390x] [PULL 0/6] s390x fixes/cleanups, Peter Maydell, 2018/05/14