All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] S390: take a full byte as ext_param indicator
@ 2010-08-24 13:48 Alexander Graf
  2010-08-24 13:48 ` [PATCH 2/3] S390: Add virtio hotplug add support Alexander Graf
                   ` (3 more replies)
  0 siblings, 4 replies; 27+ messages in thread
From: Alexander Graf @ 2010-08-24 13:48 UTC (permalink / raw)
  To: virtualization
  Cc: linux-s390, KVM list, borntraeger, Carsten Otte, Christian Ehrhardt

Currenty the ext_param field only distinguishes between "config change" and
"vring interrupt". We can do a lot more with it though, so let's enable a
full byte of possible values and constants to #defines while at it.

Signed-off-by: Alexander Graf <agraf@suse.de>

---

v1 -> v2:

  - move defines to virtio_s390.h
---
 arch/s390/include/asm/kvm_virtio.h |    6 ++++++
 drivers/s390/kvm/kvm_virtio.c      |   19 +++++++++++++------
 2 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/arch/s390/include/asm/kvm_virtio.h b/arch/s390/include/asm/kvm_virtio.h
index acdfdff..3f5d100 100644
--- a/arch/s390/include/asm/kvm_virtio.h
+++ b/arch/s390/include/asm/kvm_virtio.h
@@ -54,4 +54,10 @@ struct kvm_vqconfig {
  * This is pagesize for historical reasons. */
 #define KVM_S390_VIRTIO_RING_ALIGN	4096
 
+
+/* These values are supposed to be in ext_params on an interrupt */
+#define VIRTIO_PARAM_MASK		0xff
+#define VIRTIO_PARAM_VRING_INTERRUPT	0x0
+#define VIRTIO_PARAM_CONFIG_CHANGED	0x1
+
 #endif
diff --git a/drivers/s390/kvm/kvm_virtio.c b/drivers/s390/kvm/kvm_virtio.c
index 4e298bc..68cef4d 100644
--- a/drivers/s390/kvm/kvm_virtio.c
+++ b/drivers/s390/kvm/kvm_virtio.c
@@ -334,7 +334,7 @@ static void kvm_extint_handler(u16 code)
 {
 	struct virtqueue *vq;
 	u16 subcode;
-	int config_changed;
+	u32 param;
 
 	subcode = S390_lowcore.cpu_addr;
 	if ((subcode & 0xff00) != VIRTIO_SUBCODE_64)
@@ -343,18 +343,25 @@ static void kvm_extint_handler(u16 code)
 	/* The LSB might be overloaded, we have to mask it */
 	vq = (struct virtqueue *)(S390_lowcore.ext_params2 & ~1UL);
 
-	/* We use the LSB of extparam, to decide, if this interrupt is a config
-	 * change or a "standard" interrupt */
-	config_changed = S390_lowcore.ext_params & 1;
+	/* We use ext_params to decide what this interrupt means */
+	param = S390_lowcore.ext_params & VIRTIO_PARAM_MASK;
 
-	if (config_changed) {
+	switch (param) {
+	case VIRTIO_PARAM_CONFIG_CHANGED:
+	{
 		struct virtio_driver *drv;
 		drv = container_of(vq->vdev->dev.driver,
 				   struct virtio_driver, driver);
 		if (drv->config_changed)
 			drv->config_changed(vq->vdev);
-	} else
+
+		break;
+	}
+	case VIRTIO_PARAM_VRING_INTERRUPT:
+	default:
 		vring_interrupt(0, vq);
+		break;
+	}
 }
 
 /*
-- 
1.6.0.2

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

end of thread, other threads:[~2010-09-13  9:41 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-24 13:48 [PATCH 1/3] S390: take a full byte as ext_param indicator Alexander Graf
2010-08-24 13:48 ` [PATCH 2/3] S390: Add virtio hotplug add support Alexander Graf
2010-08-25  8:16   ` Heiko Carstens
2010-08-25  8:20     ` Alexander Graf
2010-08-25  8:20     ` Alexander Graf
2010-08-25  8:35       ` Heiko Carstens
2010-08-25  8:35       ` Heiko Carstens
2010-08-25  8:34         ` Alexander Graf
2010-08-25  8:34         ` Alexander Graf
2010-08-25  8:48           ` Heiko Carstens
2010-08-25  8:48           ` Heiko Carstens
2010-08-25  8:52             ` Alexander Graf
2010-08-25  8:52             ` Alexander Graf
2010-08-25  8:16   ` Heiko Carstens
2010-09-12  0:42   ` Alexander Graf
2010-09-12  0:42   ` Alexander Graf
2010-09-12  9:00     ` Avi Kivity
2010-09-13  3:35       ` Rusty Russell
2010-09-13  7:41         ` Martin Schwidefsky
2010-09-13  7:41         ` Martin Schwidefsky
2010-09-13  9:41           ` Avi Kivity
2010-09-13  9:41           ` Avi Kivity
2010-09-13  3:35       ` Rusty Russell
2010-09-12  9:00     ` Avi Kivity
2010-08-24 13:48 ` [PATCH 3/3] S390: Export kvm_virtio.h Alexander Graf
2010-08-25 21:20 ` [PATCH 1/3] S390: take a full byte as ext_param indicator Marcelo Tosatti
2010-08-25 21:20 ` Marcelo Tosatti

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.