Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-17 Thread Paulina Szubarczyk
On Fri, 2016-06-17 at 17:43 +0100, Wei Liu wrote: > On Thu, Jun 16, 2016 at 01:16:54PM +0100, Wei Liu wrote: > [...] > [...] > > > diff --git a/tools/libs/gnttab/private.h b/tools/libs/gnttab/private.h > > > index d286c86..22ad53a 100644 > > > --- a/tools/libs/gnttab/private.h > > > +++ b/tools/lib

Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-17 Thread Wei Liu
On Thu, Jun 16, 2016 at 01:16:54PM +0100, Wei Liu wrote: [...] [...] > > diff --git a/tools/libs/gnttab/private.h b/tools/libs/gnttab/private.h > > index d286c86..22ad53a 100644 > > --- a/tools/libs/gnttab/private.h > > +++ b/tools/libs/gnttab/private.h > > @@ -9,6 +9,20 @@ struct xengntdev_handle

Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-16 Thread Wei Liu
On Thu, Jun 16, 2016 at 01:36:32PM +0100, David Vrabel wrote: > On 16/06/16 13:16, Wei Liu wrote: > > On Mon, Jun 13, 2016 at 11:43:55AM +0200, Paulina Szubarczyk wrote: > >> Implentation of interface for grant copy operation in libs and > >> libxc. > >> > >> In a linux part an ioctl(gntdev, IOCTL_

Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-16 Thread David Vrabel
On 16/06/16 13:16, Wei Liu wrote: > On Mon, Jun 13, 2016 at 11:43:55AM +0200, Paulina Szubarczyk wrote: >> Implentation of interface for grant copy operation in libs and >> libxc. >> >> In a linux part an ioctl(gntdev, IOCTL_GNTDEV_GRANT_COPY, ..) >> system call is invoked. In mini-os the operation

Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-16 Thread Wei Liu
On Mon, Jun 13, 2016 at 11:43:55AM +0200, Paulina Szubarczyk wrote: > Implentation of interface for grant copy operation in libs and > libxc. > > In a linux part an ioctl(gntdev, IOCTL_GNTDEV_GRANT_COPY, ..) > system call is invoked. In mini-os the operation is yet not > implemented. For other OSs

Re: [Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-13 Thread David Vrabel
On 13/06/16 10:43, Paulina Szubarczyk wrote: > Implentation of interface for grant copy operation in libs and > libxc. > > In a linux part an ioctl(gntdev, IOCTL_GNTDEV_GRANT_COPY, ..) > system call is invoked. In mini-os the operation is yet not > implemented. For other OSs there is a dummy imple

[Xen-devel] [PATCH v2 1/2] libs, libxc: Interface for grant copy operation

2016-06-13 Thread Paulina Szubarczyk
Implentation of interface for grant copy operation in libs and libxc. In a linux part an ioctl(gntdev, IOCTL_GNTDEV_GRANT_COPY, ..) system call is invoked. In mini-os the operation is yet not implemented. For other OSs there is a dummy implementation. Signed-off-by: Paulina Szubarczyk --- Chang