Hello Jan, On Tue, 2009-05-26 at 23:01 +0200, Jan Kiszka wrote: > Reposted as joint patch as there is no MSR_K7 in your next queue. > > --------> > > Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> > --- > > x86/external-module-compat.h | 8 ++++++++ > 1 files changed, 8 insertions(+), 0 deletions(-) > > diff --git a/x86/external-module-compat.h b/x86/external-module-compat.h > index 445c7a1..0e26743 100644 > --- a/x86/external-module-compat.h > +++ b/x86/external-module-compat.h > @@ -496,6 +496,14 @@ struct kvm_desc_ptr { > #define MSR_IA32_TSC 0x00000010 > #endif > > +#ifndef MSR_K7_HWCR > +#define MSR_K7_HWCR 0xc0010015 > +#endif > + > +#ifndef MSR_K8_SYSCFG > +#define MSR_K8_SYSCFG 0xc0010010 > +#endif > + It will look more beautiful if we arrange MSR addresses in some order (say increasing order) : +#ifndef MSR_K8_SYSCFG +#define MSR_K8_SYSCFG 0xc0010010 +#endif + +#ifndef MSR_K7_HWCR +#define MSR_K7_HWCR 0xc0010015 +#endif + Thanks, -- JSR -- 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