Re: [PATCH V1 04/16] xen/ioreq: Provide alias for the handle_mmio()

2020-09-23 Thread Oleksandr
On 23.09.20 20:28, Julien Grall wrote: Hi Oleksandr, Hi Julien On 10/09/2020 21:21, Oleksandr Tyshchenko wrote: From: Oleksandr Tyshchenko The IOREQ is a common feature now and Arm will have its own implementation. But the name of the function is pretty generic and can be confusing on

Re: [PATCH V1 04/16] xen/ioreq: Provide alias for the handle_mmio()

2020-09-23 Thread Julien Grall
Hi Oleksandr, On 10/09/2020 21:21, Oleksandr Tyshchenko wrote: From: Oleksandr Tyshchenko The IOREQ is a common feature now and Arm will have its own implementation. But the name of the function is pretty generic and can be confusing on Arm (we already have a try_handle_mmio()). In order not

Re: [PATCH V1 04/16] xen/ioreq: Provide alias for the handle_mmio()

2020-09-22 Thread Oleksandr
On 14.09.20 18:10, Jan Beulich wrote: Hi Jan On 10.09.2020 22:21, Oleksandr Tyshchenko wrote: --- a/xen/common/ioreq.c +++ b/xen/common/ioreq.c @@ -189,7 +189,7 @@ bool handle_hvm_io_completion(struct vcpu *v) break; case HVMIO_mmio_completion: -return handle_mmio

Re: [PATCH V1 04/16] xen/ioreq: Provide alias for the handle_mmio()

2020-09-14 Thread Jan Beulich
On 10.09.2020 22:21, Oleksandr Tyshchenko wrote: > --- a/xen/common/ioreq.c > +++ b/xen/common/ioreq.c > @@ -189,7 +189,7 @@ bool handle_hvm_io_completion(struct vcpu *v) > break; > > case HVMIO_mmio_completion: > -return handle_mmio(); > +return ioreq_handle_complet

[PATCH V1 04/16] xen/ioreq: Provide alias for the handle_mmio()

2020-09-10 Thread Oleksandr Tyshchenko
From: Oleksandr Tyshchenko The IOREQ is a common feature now and Arm will have its own implementation. But the name of the function is pretty generic and can be confusing on Arm (we already have a try_handle_mmio()). In order not to rename the function (which is used for a varying set of purpos