mirror of https://github.com/xemu-project/xemu.git
s390x/eventfacility: mask out commands
As a followup to commit 5f04c14a10
(s390-sclp: Define New SCLP Codes) we should mask the sclp command
not only in base sclp, but also in the event facility.
Based on an initial patch from Ralf Hoppe.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
This commit is contained in:
parent
77319f2263
commit
9da45bb217
|
@ -299,7 +299,7 @@ static const TypeInfo s390_sclp_events_bus_info = {
|
|||
|
||||
static void command_handler(SCLPEventFacility *ef, SCCB *sccb, uint64_t code)
|
||||
{
|
||||
switch (code) {
|
||||
switch (code & SCLP_CMD_CODE_MASK) {
|
||||
case SCLP_CMD_READ_EVENT_DATA:
|
||||
read_event_data(ef, sccb);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue