[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] __vmptrst() broken...
Hi Keir, __vmptrst() seems broken. It is: static inline void __vmptrst(u64 addr) { asm volatile ( VMPTRST_OPCODE MODRM_EAX_07 : : "a" (&addr) : "memory"); } should be: static inline void __vmptrst(u64 *addr) { asm volatile ( VMPTRST_OPCODE MODRM_EAX_07 : : "a" (addr) : "memory"); } Do you think you can just fix it in one of your changes without official patch? thanks much, Mukesh _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |