Re: [PATCH v2] tools/libs/ctrl: rename and export do_memory_op as xc_memory_op

2022-05-31 Thread Tamas K Lengyel
On Tue, May 31, 2022 at 9:43 AM Anthony PERARD wrote: > > On Thu, May 19, 2022 at 01:16:35PM -0400, Tamas K Lengyel wrote: > > Make the do_memory_op function accessible to tools linking with libxc. > > Similar functions are already available for both domctl and sysctl. As part > > of this patch we

Re: [PATCH v2] tools/libs/ctrl: rename and export do_memory_op as xc_memory_op

2022-05-31 Thread Anthony PERARD
On Thu, May 19, 2022 at 01:16:35PM -0400, Tamas K Lengyel wrote: > Make the do_memory_op function accessible to tools linking with libxc. > Similar functions are already available for both domctl and sysctl. As part > of this patch we also change the input 'cmd' to be unsigned int to accurately > r

Re: [PATCH v2] tools/libs/ctrl: rename and export do_memory_op as xc_memory_op

2022-05-23 Thread Juergen Gross
On 19.05.22 19:16, Tamas K Lengyel wrote: Make the do_memory_op function accessible to tools linking with libxc. Similar functions are already available for both domctl and sysctl. As part of this patch we also change the input 'cmd' to be unsigned int to accurately reflect what the hypervisor ex

[PATCH v2] tools/libs/ctrl: rename and export do_memory_op as xc_memory_op

2022-05-19 Thread Tamas K Lengyel
Make the do_memory_op function accessible to tools linking with libxc. Similar functions are already available for both domctl and sysctl. As part of this patch we also change the input 'cmd' to be unsigned int to accurately reflect what the hypervisor expects. Signed-off-by: Tamas K Lengyel ---