Re: [PATCH v2 4/8] powerpc: add io{read,write}64 accessors

2016-05-10 Thread Michael Ellerman
On Tue, 2016-05-10 at 18:50 +, Scott Wood wrote: > On 05/09/2016 03:20 AM, Horia Ioan Geanta Neag wrote: > > On 5/5/2016 6:37 PM, Horia Geantă wrote: > > > This will allow device drivers to consistently use io{read,write}XX > > > also for 64-bit accesses. > > > > > > Signed-off-by: Horia

Re: [PATCH v2 4/8] powerpc: add io{read,write}64 accessors

2016-05-10 Thread Scott Wood
On 05/09/2016 03:20 AM, Horia Ioan Geanta Neag wrote: > On 5/5/2016 6:37 PM, Horia Geantă wrote: >> This will allow device drivers to consistently use io{read,write}XX >> also for 64-bit accesses. >> >> Signed-off-by: Horia Geantă > > It would be great if PPC maintainers

RE: [PATCH] crypto: caam: add backlogging support

2016-05-10 Thread Alexandru Porosanu
Hi, > -Original Message- > From: Horia Ioan Geanta Neag > Sent: Monday, May 09, 2016 5:51 PM > To: Catalin Vasile ; linux-crypto@vger.kernel.org > Cc: linux-crypto-ow...@vger.kernel.org; Alexandru Porosanu > ; Scott Wood

RE: [PATCH v5 0/3] Key-agreement Protocol Primitives (KPP) API

2016-05-10 Thread Benedetto, Salvatore
> -Original Message- > From: Stephan Mueller [mailto:smuel...@chronox.de] > Sent: Tuesday, May 10, 2016 8:03 AM > To: Benedetto, Salvatore > Cc: herb...@gondor.apana.org.au; linux-crypto@vger.kernel.org > Subject: Re: [PATCH v5 0/3] Key-agreement Protocol

Re: [PATCH] crypto: caam: fix caam_jr_alloc() ret code

2016-05-10 Thread Herbert Xu
Catalin Vasile wrote: > caam_jr_alloc() used to return NULL if a JR device could not be > allocated for a session. In turn, every user of this function used > IS_ERR() function to verify if anything went wrong, which does NOT look > for NULL values. This made the kernel crash

Re: [PATCH] crypto: vmx - comply with ABIs that specify vrsave as reserved.

2016-05-10 Thread Herbert Xu
On Thu, May 05, 2016 at 11:09:27AM -0300, Paulo Flabiano Smorigo wrote: > It gives significant improvements ( ~+15%) on some modes. > > These code has been adopted from OpenSSL project in collaboration > with the original author (Andy Polyakov ). > > Signed-off-by: Paulo

Re: [PATCH] crypto: caam: add backlogging support

2016-05-10 Thread Herbert Xu
Catalin Vasile wrote: > caam_jr_enqueue() function returns -EBUSY once there are no more slots > available in the JR, but it doesn't actually save the current request. > This breaks the functionality of users that expect that even if there is > no more space for the request,

Re: [PATCH v2 2/8] asm-generic/io.h: add io{read,write}64 accessors

2016-05-10 Thread Herbert Xu
On Tue, May 10, 2016 at 05:33:21PM +0800, Herbert Xu wrote: > On Thu, May 05, 2016 at 06:35:56PM +0300, Horia Geantă wrote: > > This will allow device drivers to consistently use io{read,write}XX > > also for 64-bit accesses. > > > > Signed-off-by: Horia Geantă > > I don't

Re: [PATCH v2 2/8] asm-generic/io.h: add io{read,write}64 accessors

2016-05-10 Thread Herbert Xu
On Thu, May 05, 2016 at 06:35:56PM +0300, Horia Geantă wrote: > This will allow device drivers to consistently use io{read,write}XX > also for 64-bit accesses. > > Signed-off-by: Horia Geantă I don't see patch 1/8. Cheers, -- Email: Herbert Xu

Re: [PATCH v5 0/3] Key-agreement Protocol Primitives (KPP) API

2016-05-10 Thread Stephan Mueller
Am Montag, 9. Mai 2016, 22:40:38 schrieb Salvatore Benedetto: Hi Salvatore, > Hi Herb, > > the following patchset introduces a new API for abstracting key-agreement > protocols such as DH and ECDH. It provides the primitives required for > implementing the protocol, thus the name KPP