[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/vlapic: express x2apic msr readability with a bitmap
commit df39f487cc646774af130b856066c3c6538a0dc9 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Thu Jan 22 12:59:14 2015 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Jan 22 12:59:14 2015 +0100 x86/vlapic: express x2apic msr readability with a bitmap The x2apic MSR space is currently defined between 0x800 and 0x83f, which conveniently fits in a 64 bit wide bitmap. This is far more efficient than the cascade comparisons generated by the switch statement, which can't be optimised because of the case ranges used for the ISR, TMR and IRR blocks. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Convert 0xffUL to ((1UL << (NR_VECTORS / 32)) - 1) and drop a couple of clearly superfluous parentheses. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/hvm/vlapic.c | 50 +++++++++++++++++--------------------------- 1 files changed, 19 insertions(+), 31 deletions(-) diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index 72b6509..a91cee1 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -643,43 +643,31 @@ static int vlapic_read( int hvm_x2apic_msr_read(struct vcpu *v, unsigned int msr, uint64_t *msr_content) { + static const unsigned long readable[] = + { +#define REG(x) (1UL << (APIC_ ## x >> 4)) + REG(ID) | REG(LVR) | REG(TASKPRI) | REG(PROCPRI) | + REG(LDR) | REG(SPIV) | REG(ESR) | REG(ICR) | + REG(CMCI) | REG(LVTT) | REG(LVTTHMR) | REG(LVTPC) | + REG(LVT0) | REG(LVT1) | REG(LVTERR) | REG(TMICT) | + REG(TMCCT) | REG(TDCR) | +#undef REG +#define REGBLOCK(x) (((1UL << (NR_VECTORS / 32)) - 1) << (APIC_ ## x >> 4)) + REGBLOCK(ISR) | REGBLOCK(TMR) | REGBLOCK(IRR) +#undef REGBLOCK + }; struct vlapic *vlapic = vcpu_vlapic(v); - uint32_t low, high = 0, offset = (msr - MSR_IA32_APICBASE_MSR) << 4; + uint32_t low, high = 0, reg = msr - MSR_IA32_APICBASE_MSR, + offset = reg << 4; - if ( !vlapic_x2apic_mode(vlapic) ) + if ( !vlapic_x2apic_mode(vlapic) || + (reg >= sizeof(readable) * 8) || !test_bit(reg, readable) ) return X86EMUL_UNHANDLEABLE; - switch ( offset ) - { - case APIC_ICR: + if ( offset == APIC_ICR ) vlapic_read_aligned(vlapic, APIC_ICR2, &high); - /* Fallthrough. */ - case APIC_ID: - case APIC_LVR: - case APIC_TASKPRI: - case APIC_PROCPRI: - case APIC_LDR: - case APIC_SPIV: - case APIC_ISR ... APIC_ISR + 0x70: - case APIC_TMR ... APIC_TMR + 0x70: - case APIC_IRR ... APIC_IRR + 0x70: - case APIC_ESR: - case APIC_CMCI: - case APIC_LVTT: - case APIC_LVTTHMR: - case APIC_LVTPC: - case APIC_LVT0: - case APIC_LVT1: - case APIC_LVTERR: - case APIC_TMICT: - case APIC_TMCCT: - case APIC_TDCR: - vlapic_read_aligned(vlapic, offset, &low); - break; - default: - return X86EMUL_UNHANDLEABLE; - } + vlapic_read_aligned(vlapic, offset, &low); *msr_content = (((uint64_t)high) << 32) | low; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |