[PATCH 04/12] xen/x86: modify hvm_memory_op() prototype

2021-10-15 Thread Juergen Gross
hvm_memory_op() should take an unsigned long as cmd, like do_memory_op(). As hvm_memory_op() is basically just calling do_memory_op() (or compat_memory_op()) passing through the parameters the cmd parameter should have no smaller size than that of the called functions. Signed-off-by: Juergen Gros

Re: [PATCH 04/12] xen/x86: modify hvm_memory_op() prototype

2021-10-18 Thread Jan Beulich
On 15.10.2021 14:51, Juergen Gross wrote: > hvm_memory_op() should take an unsigned long as cmd, like > do_memory_op(). > > As hvm_memory_op() is basically just calling do_memory_op() (or > compat_memory_op()) passing through the parameters the cmd parameter > should have no smaller size than that

Re: [PATCH 04/12] xen/x86: modify hvm_memory_op() prototype

2021-10-18 Thread Juergen Gross
On 18.10.21 14:31, Jan Beulich wrote: On 15.10.2021 14:51, Juergen Gross wrote: hvm_memory_op() should take an unsigned long as cmd, like do_memory_op(). As hvm_memory_op() is basically just calling do_memory_op() (or compat_memory_op()) passing through the parameters the cmd parameter should h

Re: [PATCH 04/12] xen/x86: modify hvm_memory_op() prototype

2021-10-18 Thread Jan Beulich
On 18.10.2021 15:27, Juergen Gross wrote: > On 18.10.21 14:31, Jan Beulich wrote: >> On 15.10.2021 14:51, Juergen Gross wrote: >>> hvm_memory_op() should take an unsigned long as cmd, like >>> do_memory_op(). >>> >>> As hvm_memory_op() is basically just calling do_memory_op() (or >>> compat_memory_

Re: [PATCH 04/12] xen/x86: modify hvm_memory_op() prototype

2021-10-18 Thread Juergen Gross
On 18.10.21 16:28, Jan Beulich wrote: On 18.10.2021 15:27, Juergen Gross wrote: On 18.10.21 14:31, Jan Beulich wrote: On 15.10.2021 14:51, Juergen Gross wrote: hvm_memory_op() should take an unsigned long as cmd, like do_memory_op(). As hvm_memory_op() is basically just calling do_memory_op()