Re: [Xen-devel] [PATCH v4 07/27] x86: move do_set_trap_table to pv/traps.c

2017-06-23 Thread Andrew Cooper
On 23/06/17 14:59, Wei Liu wrote: > On Fri, Jun 23, 2017 at 12:00:35PM +0100, Andrew Cooper wrote: >> On 08/06/17 18:11, Wei Liu wrote: >>> Signed-off-by: Wei Liu >> I'd suggest folding this into the next patch, and putting the hypercall >> in misc-hypercalls.c >> >> Despite its name, this hyperca

Re: [Xen-devel] [PATCH v4 07/27] x86: move do_set_trap_table to pv/traps.c

2017-06-23 Thread Wei Liu
On Fri, Jun 23, 2017 at 12:00:35PM +0100, Andrew Cooper wrote: > On 08/06/17 18:11, Wei Liu wrote: > > Signed-off-by: Wei Liu > > I'd suggest folding this into the next patch, and putting the hypercall > in misc-hypercalls.c > > Despite its name, this hypercall is just setting up state in the vc

Re: [Xen-devel] [PATCH v4 07/27] x86: move do_set_trap_table to pv/traps.c

2017-06-23 Thread Andrew Cooper
On 08/06/17 18:11, Wei Liu wrote: > Signed-off-by: Wei Liu I'd suggest folding this into the next patch, and putting the hypercall in misc-hypercalls.c Despite its name, this hypercall is just setting up state in the vcpu. ~Andrew ___ Xen-devel maili

[Xen-devel] [PATCH v4 07/27] x86: move do_set_trap_table to pv/traps.c

2017-06-08 Thread Wei Liu
Signed-off-by: Wei Liu --- xen/arch/x86/pv/traps.c | 52 + xen/arch/x86/traps.c| 49 -- 2 files changed, 52 insertions(+), 49 deletions(-) diff --git a/xen/arch/x86/pv/traps.c b/xen/arch/x86/pv/traps.