typedef struct SigpInfo {
S390CPU *cpu;
+ uint64_t param;
int cc;
uint64_t *status_reg;
} SigpInfo;
}
static int handle_sigp_single_dst(S390CPU *dst_cpu, uint8_t order,
- uint64_t *status_reg)
+ uint64_t param, uint64_t *status_reg)
{
SigpInfo si = {
.cpu = dst_cpu,
+ .param = param,
.status_reg = status_reg,
};
int ret;
uint8_t order;
uint64_t *status_reg;
+ uint64_t param;
S390CPU *dst_cpu = NULL;
cpu_synchronize_state(CPU(cpu));
/* get order code */
order = decode_basedisp_rs(env, run->s390_sieic.ipb) & SIGP_ORDER_MASK;
status_reg = &env->regs[r1];
+ param = (r1 % 2) ? env->regs[r1] : env->regs[r1 + 1];
switch (order) {
case SIGP_SET_ARCH:
default:
/* all other sigp orders target a single vcpu */
dst_cpu = s390_cpu_addr2state(env->regs[r3]);
- ret = handle_sigp_single_dst(dst_cpu, order, status_reg);
+ ret = handle_sigp_single_dst(dst_cpu, order, param, status_reg);
}
if (ret >= 0) {