diff options
author | Heinz Graalfs | 2013-09-04 12:55:45 +0200 |
---|---|---|
committer | Christian Borntraeger | 2013-09-20 13:55:29 +0200 |
commit | 3af6de321f39eda37d60a26559c63029c0d5b4c9 (patch) | |
tree | 76b150e0d6246c4dca2e8154a893ca55a7b86ccc /hw/s390x/event-facility.c | |
parent | s390/sclpquiesce: Add code to support live migration (diff) | |
download | qemu-3af6de321f39eda37d60a26559c63029c0d5b4c9.tar.gz qemu-3af6de321f39eda37d60a26559c63029c0d5b4c9.tar.xz qemu-3af6de321f39eda37d60a26559c63029c0d5b4c9.zip |
s390/sclp: add reset() functions
Add reset() functions for event-facility, sclpconsole, and sclpquiesce.
The reset() functions perform variable initialization
at IPL and e.g. when monitor system_reset is called.
Signed-off-by: Heinz Graalfs <graalfs@linux.vnet.ibm.com>
Reviewed-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'hw/s390x/event-facility.c')
-rw-r--r-- | hw/s390x/event-facility.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/s390x/event-facility.c b/hw/s390x/event-facility.c index a3aceef8f5..d45968fa42 100644 --- a/hw/s390x/event-facility.c +++ b/hw/s390x/event-facility.c @@ -338,10 +338,19 @@ static int init_event_facility(S390SCLPDevice *sdev) return 0; } +static void reset_event_facility(DeviceState *dev) +{ + S390SCLPDevice *sdev = SCLP_S390_DEVICE(dev); + + sdev->ef->receive_mask = 0; +} + static void init_event_facility_class(ObjectClass *klass, void *data) { + DeviceClass *dc = DEVICE_CLASS(klass); S390SCLPDeviceClass *k = SCLP_S390_DEVICE_CLASS(klass); + dc->reset = reset_event_facility; k->init = init_event_facility; } |