Re: [Xen-devel] [PATCH v3 02/11] x86: extract macros to x86-defns.h

2017-02-02 Thread Wei Liu
On Wed, Feb 01, 2017 at 06:05:23AM -0700, Jan Beulich wrote: > >>> On 01.02.17 at 13:02, wrote: > > --- a/xen/include/asm-x86/processor.h > > +++ b/xen/include/asm-x86/processor.h > > @@ -16,6 +16,8 @@ > > #include > > #endif > > > > +#include "x86-defns.h" > > This

Re: [Xen-devel] [PATCH v3 02/11] x86: extract macros to x86-defns.h

2017-02-01 Thread Jan Beulich
>>> On 01.02.17 at 13:02, wrote: > --- a/xen/include/asm-x86/processor.h > +++ b/xen/include/asm-x86/processor.h > @@ -16,6 +16,8 @@ > #include > #endif > > +#include "x86-defns.h" This should be . With that adjusted, Reviewed-by: Jan Beulich Jan

[Xen-devel] [PATCH v3 02/11] x86: extract macros to x86-defns.h

2017-02-01 Thread Wei Liu
... so that they can be used by userspace x86 instruction emulator test program and fuzzer as well. No functional change. Signed-off-by: Wei Liu --- Cc: Jan Beulich Cc: Andrew Cooper v3: Don't move TRAP_* ---