Re: [PATCH v3 2/3] xen: cleanup gdbsx_guest_mem_io() call

2022-04-19 Thread Andrew Cooper
On 19/04/2022 14:52, Juergen Gross wrote: > Modify the gdbsx_guest_mem_io() interface to take the already known > domain pointer as parameter instead of the domid. This enables to > remove some more code further down the call tree. > > Suggested-by: Jan Beulich > Signed-off-by: Juergen Gross Rev

Re: [PATCH v3 2/3] xen: cleanup gdbsx_guest_mem_io() call

2022-04-19 Thread Jan Beulich
On 19.04.2022 15:52, Juergen Gross wrote: > Modify the gdbsx_guest_mem_io() interface to take the already known > domain pointer as parameter instead of the domid. This enables to > remove some more code further down the call tree. > > Suggested-by: Jan Beulich > Signed-off-by: Juergen Gross Re

[PATCH v3 2/3] xen: cleanup gdbsx_guest_mem_io() call

2022-04-19 Thread Juergen Gross
Modify the gdbsx_guest_mem_io() interface to take the already known domain pointer as parameter instead of the domid. This enables to remove some more code further down the call tree. Suggested-by: Jan Beulich Signed-off-by: Juergen Gross --- V2: - split off from previous patch (Andrew Cooper) -