Re: [Qemu-devel] [PATCH v4 01/13] cryptodev: introduce cryptodev backend interface

2016-10-04 Thread Gonglei (Arei)
> -Original Message- > From: Stefan Hajnoczi [mailto:stefa...@redhat.com] > Sent: Tuesday, October 04, 2016 12:11 AM > Subject: Re: [PATCH v4 01/13] cryptodev: introduce cryptodev backend > interface > > On Wed, Sep 28, 2016 at 04:25:40PM +0800, Gonglei wrote: > > diff --git a/backends/cr

Re: [Qemu-devel] [PATCH v4 01/13] cryptodev: introduce cryptodev backend interface

2016-10-03 Thread Daniel P. Berrange
On Mon, Oct 03, 2016 at 05:10:48PM +0100, Stefan Hajnoczi wrote: > On Wed, Sep 28, 2016 at 04:25:40PM +0800, Gonglei wrote: > > diff --git a/backends/cryptodev.c b/backends/cryptodev.c > > new file mode 100644 > > index 000..a15904b > > --- /dev/null > > +++ b/backends/cryptodev.c > > @@ -0,0 +

Re: [Qemu-devel] [PATCH v4 01/13] cryptodev: introduce cryptodev backend interface

2016-10-03 Thread Stefan Hajnoczi
On Wed, Sep 28, 2016 at 04:25:40PM +0800, Gonglei wrote: > diff --git a/backends/cryptodev.c b/backends/cryptodev.c > new file mode 100644 > index 000..a15904b > --- /dev/null > +++ b/backends/cryptodev.c > @@ -0,0 +1,175 @@ > +/* > + * QEMU Crypto Device Implement s/Implement/Implementation/

[Qemu-devel] [PATCH v4 01/13] cryptodev: introduce cryptodev backend interface

2016-09-28 Thread Gonglei
cryptodev backend interface is used to realize the active work for virtual crypto device. This patch only add the framework, doesn't include specific operations. Signed-off-by: Gonglei --- backends/Makefile.objs | 2 + backends/cryptodev.c | 175 +