Crypto Fixes for 4.2

2015-06-26 Thread Herbert Xu
Hi Linus: This push fixes the following issues: * Move -O0 jitterentropy code into its own file instead of using gcc pragma magic. * Kill testmgr warning for gcm-aes-aesni. * Fix build failure in old rsa. Other minor fixes: * Ignore asn1 files generated by new rsa. * Remove unnecessary kzfree

Crypto Fixes for 4.2

2015-06-30 Thread Herbert Xu
Hi Linus: This push fixes the aesni setkey error and removes a couple of unnecessary NULL checks in the Intel qat driver. Please pull from git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git Markus Elfring (1): crypto: qat - Deletion of unnecessary checks before two fu

Crypto Fixes for 4.2

2015-07-12 Thread Herbert Xu
Hi Linus: This push fixes a duplicate dma_unmap_sg call in omap-des and reentrancy bugs in the powerpc nx driver which may cause bogus output or worse memory corruption. Please pull from git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git Herbert Xu (1): crypto: nx - Fi

Crypto Fixes for 4.2

2015-08-03 Thread Herbert Xu
Hi Linus: This push fixes the following issues: * A bogus BUG_ON in ixp4xx that can be triggered by a dst buffer that is an SG list. * The error handling in hwrngd may cause a crash in case of an error. * Fix a race condition in qat registration when multiple devices are present. Please pul

Crypto Fixes for 4.2

2015-08-17 Thread Herbert Xu
Hi Linus: This push fixes the following issues: * A regression caused by the conversion of IPsec ESP to the new AEAD interface: ESN with authencesn no longer works because it relied on the AD input SG list having a specific layout which is no longer the case. In linux-next authencesn is fi

Re: Crypto Fixes for 4.2

2015-06-26 Thread Linus Torvalds
On Fri, Jun 26, 2015 at 3:22 AM, Herbert Xu wrote: > > * Kill testmgr warning for gcm-aes-aesni. Hmm. You killed one of the warnings, but the setkey one remains. alg: aead: setkey failed on test 1 for rfc4106-gcm-aesni: flags=0 Expected? Linus -- To unsubscribe from this lis

Re: Crypto Fixes for 4.2

2015-06-26 Thread Herbert Xu
On Fri, Jun 26, 2015 at 01:07:02PM -0700, Linus Torvalds wrote: > On Fri, Jun 26, 2015 at 3:22 AM, Herbert Xu > wrote: > > > > * Kill testmgr warning for gcm-aes-aesni. > > Hmm. You killed one of the warnings, but the setkey one remains. > > alg: aead: setkey failed on test 1 for rfc4106-gc

Re: Crypto Fixes for 4.2

2015-06-27 Thread Linus Torvalds
On Fri, Jun 26, 2015 at 11:56 PM, Herbert Xu wrote: > > So I think Tadeusz's patch is the simplest fix for 4.2. Could you > please test it to see if it makes your warning go away? Seems to silence it here. I get the feeling that the patch is still wrong - why are not the *tests* run at late tim

Re: Crypto Fixes for 4.2

2015-06-29 Thread Herbert Xu
On Sat, Jun 27, 2015 at 09:40:24AM -0700, Linus Torvalds wrote: > On Fri, Jun 26, 2015 at 11:56 PM, Herbert Xu > wrote: > > > > So I think Tadeusz's patch is the simplest fix for 4.2. Could you > > please test it to see if it makes your warning go away? > > Seems to silence it here. OK I'll app