On Tue, 16 Jan 2018 21:02:06 +0100 Christian Borntraeger <borntraeger@xxxxxxxxxx> wrote: > From: Michael Mueller <mimu@xxxxxxxxxxxxxxxxxx> > > This patch prepares a simplification of bit operations between the irq > pending mask for emulated interrupts and the Interruption Pending Mask > (IPM) which is part of the Guest Interruption State Area (GISA), a feature > that allows interrupt delivery to guests by means of the SIE instruction. > > Without that change, a bit-wise *or* operation on parts of these two masks > would either require a look-up table of size 256 bytes to map the IPM > to the emulated irq pending mask bit orientation (all bits mirrored at half > byte) or a sequence of up to 8 condidional branches to perform tests of > single bit positions. Both options are to reject either by performance or s/to reject/to be rejected/ > space utilization reasons. > > Beyond that this change will be transparent. > > Signed-off-by: Michael Mueller <mimu@xxxxxxxxxxxxxxxxxx> > Reviewed-by: Halil Pasic <pasic@xxxxxxxxxxxxxxxxxx> > Reviewed-by: Pierre Morel <pmorel@xxxxxxxxxxxxxxxxxx> > Reviewed-by: Christian Borntraeger <borntraeger@xxxxxxxxxx> > Signed-off-by: Christian Borntraeger <borntraeger@xxxxxxxxxx> > --- > arch/s390/include/asm/kvm_host.h | 54 ++++++++++++++++++++-------------------- > arch/s390/kvm/interrupt.c | 10 ++++---- > 2 files changed, 32 insertions(+), 32 deletions(-) > > diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h > index e16a9f2a44ad..9981721f258f 100644 > --- a/arch/s390/include/asm/kvm_host.h > +++ b/arch/s390/include/asm/kvm_host.h > @@ -409,35 +409,35 @@ struct kvm_vcpu_stat { > #define PGM_PER 0x80 > #define PGM_CRYPTO_OPERATION 0x119 > > -/* irq types in order of priority */ > +/* irq types in ascend order of priorities */ "ascending order of priority"? Otherwise (and with the "reversed order" change), Reviewed-by: Cornelia Huck <cohuck@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-s390" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html