On Fri, Feb 20, 2015 at 02:37:25PM +0000, Ard Biesheuvel wrote: > On 20 February 2015 at 14:29, Andrew Jones <drjones@xxxxxxxxxx> wrote: > > So looks like the 3 orders of magnitude greater number of traps > > (only to el2) don't impact kernel compiles. > > > > OK, good! That was what I was hoping for, obviously. > > > Then I thought I'd be able to quick measure the number of cycles > > a trap to el2 takes with this kvm-unit-tests test > > > > int main(void) > > { > > unsigned long start, end; > > unsigned int sctlr; > > > > asm volatile( > > " mrs %0, sctlr_el1\n" > > " msr pmcr_el0, %1\n" > > : "=&r" (sctlr) : "r" (5)); > > > > asm volatile( > > " mrs %0, pmccntr_el0\n" > > " msr sctlr_el1, %2\n" > > " mrs %1, pmccntr_el0\n" > > : "=&r" (start), "=&r" (end) : "r" (sctlr)); > > > > printf("%llx\n", end - start); > > return 0; > > } > > > > after applying this patch to kvm > > > > diff --git a/arch/arm64/kvm/hyp.S b/arch/arm64/kvm/hyp.S > > index bb91b6fc63861..5de39d740aa58 100644 > > --- a/arch/arm64/kvm/hyp.S > > +++ b/arch/arm64/kvm/hyp.S > > @@ -770,7 +770,7 @@ > > > > mrs x2, mdcr_el2 > > and x2, x2, #MDCR_EL2_HPMN_MASK > > - orr x2, x2, #(MDCR_EL2_TPM | MDCR_EL2_TPMCR) > > +// orr x2, x2, #(MDCR_EL2_TPM | MDCR_EL2_TPMCR) > > orr x2, x2, #(MDCR_EL2_TDRA | MDCR_EL2_TDOSA) > > > > // Check for KVM_ARM64_DEBUG_DIRTY, and set debug to trap > > > > But I get zero for the cycle count. Not sure what I'm missing. > > > > No clue tbh. Does the counter work as expected in the host? > Guess not. I dropped the test into a module_init and inserted it on the host. Always get zero for pmccntr_el0 reads. Or, if I set it to something non-zero with a write, then I always get that back - no increments. pmcr_el0 looks OK... I had forgotten to set bit 31 of pmcntenset_el0, but doing that still doesn't help. Anyway, I assume the problem is me. I'll keep looking to see what I'm missing. drew -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html