If you run into a situation where migration fails with something like
internal error: QEMU unexpectedly closed the monitor (vm='testguest'):
qemu-kvm: Some features requested in the CPU model are not available in the current configuration: pckmo-aes-256 pckmo-aes-192 pckmo-aes-128 pckmo-etdea-192 pckmo-etdea-128 pckmo-edea msa9_pckmo Consider a different accelerator, QEMU, or kernel version
This indicates that both host are configured differently regarding the CPACF key management Operations
So you can (preferred if the security scheme allows for that) configure both LPARs the same way, de-activate and re-activate the LPAR
or
you can change the CPU model of the guest to no longer have these pckmo functions. Change your guest xml from "host-model" to "host-model with some features disabled".
So shutdown the guest and change the XML from
<cpu mode='host-model' check='partial'/>
to
<feature policy='disable' name='msa3'/>
<feature policy='disable' name='msa9_pckmo'/>
</cpu>