Re: [PATCH 1/2] crypto: camellia-x86_64 - module init/exit functions should be static

2012-03-22 Thread Herbert Xu
On Thu, Mar 22, 2012 at 02:18:01PM -0700, H. Peter Anvin wrote: > > > Thanks for the reminder, I'll push these through today. > > Please push these to Linus ASAP, it is breaking the x86-64 allyesconfig > build upstream right now. I've pushed them through. Thanks, -- Email: Herbert Xu Home Page

Re: [PATCH] powerpc/crypto: caam - add backward compatible string sec4.0

2012-03-22 Thread Kim Phillips
On Wed, 21 Mar 2012 14:09:10 +0800 Shengzhou Liu wrote: > In some device trees of previous version, there were string "fsl,sec4.0". > To be backward compatible with device trees, we have CAAM driver first > check "fsl,sec-v4.0", if it fails, then check for "fsl,sec4.0". > > Signed-off-by: Shengz

Re: [PATCH 1/3] crypto: ux500: Add driver for CRYP hardware.

2012-03-22 Thread Kim Phillips
On Thu, 22 Mar 2012 09:45:45 +0100 Andreas WESTIN wrote: > Hi Kim, Hi Andreas, > >> +int cryp_configure_key_values(struct cryp_device_data *device_data, > >> + enum cryp_key_reg_index key_reg_index, > >> + struct cryp_key_value key_value) > >>

Re: [PATCH 1/2] crypto: camellia-x86_64 - module init/exit functions should be static

2012-03-22 Thread H. Peter Anvin
On 03/21/2012 05:46 PM, Herbert Xu wrote: > On Wed, Mar 21, 2012 at 05:40:03PM -0700, Randy Dunlap wrote: >> On 03/15/2012 01:11 PM, Jussi Kivilinna wrote: >> >>> This caused conflict with twofish-x86_64-3way when compiled into kernel, >>> same function names and not static. >> >> Have these patche

Re: [PATCH 00/17] Platform Facilities Option and crypto accelerator driver

2012-03-22 Thread Kent Yoder
Hi Kumar, > Is there a reason this isn't in drivers/crypto/ Other arch-specific dirs have their crypto subdir as well such as arch/s390. I was just matching that. Kent > - k -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majord...@vge

Re: [PATCH 00/17] Platform Facilities Option and crypto accelerator driver

2012-03-22 Thread Kumar Gala
On Mar 21, 2012, at 4:28 PM, Kent Yoder wrote: > arch/powerpc/crypto/nx/Makefile | 11 + > arch/powerpc/crypto/nx/nx-aes-cbc.c | 135 + > arch/powerpc/crypto/nx/nx-aes-ccm.c | 466 ++ > arch/powerpc/crypto/nx/nx-aes-ctr.c | 175 +++ > a

[PATCH] crypto: ixp4xx - include fix

2012-03-22 Thread Michał Wróbel
Before commit de47725421ad5627a5c905f4e40bb844ebc06d29 ("include: replace linux/module.h with "struct module" wherever possible") was implicitly included through -> . Signed-off-by: Michał Wróbel --- drivers/crypto/ixp4xx_crypto.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) dif

Re: Bug?

2012-03-22 Thread Kormos 'Morc' Gábor
Anyone cares to give me some feedback on this? Thanks, Morc. Kormos 'Morc' Gábor wrote: Hi Guys, Sorry if I post this on the wrong list, but don't know who this belongs to and first time trying to post a kernel bug. Please direct me to the list it's appropriate on if it's not this

Re: [PATCH 05/17] pseries: Enabled the PFO-based RNG accelerator

2012-03-22 Thread Anton Blanchard
Hi, +#if defined(CONFIG_HW_RANDOM_PSERIES) || \ + defined(CONFIG_HW_RANDOM_PSERIES_MODULE) +#define OV5_PFO_HW_RNG 0x80/* PFO Random Number Generator */ +#else +#define OV5_PFO_HW_RNG 0x00 +#endif Milton tipped me off about this. We really don't want to be doing ibm,cli

Re: [PATCH 2/3] crypto: ux500: Add driver for HASH hardware

2012-03-22 Thread Andreas WESTIN
On 2012-03-21 01:35, Kim Phillips wrote: On Wed, 14 Mar 2012 09:45:47 +0100 Andreas Westin wrote: diff --git a/drivers/crypto/ux500/hash/hash_alg_p.h b/drivers/crypto/ux500/hash/hash_alg_p.h new file mode 100644 index 000..a44047a --- /dev/null +++ b/drivers/crypto/ux500/hash/hash_alg_p

Re: [PATCH 1/3] crypto: ux500: Add driver for CRYP hardware.

2012-03-22 Thread Andreas WESTIN
Hi Kim, On 2012-03-21 01:35, Kim Phillips wrote: On Wed, 14 Mar 2012 09:45:46 +0100 Andreas Westin wrote: +config CRYPTO_DEV_UX500 + tristate "Driver for ST-Ericsson UX500 crypto hardware acceleration" + #depends on ARCH_U8500 guessing this should be either removed or modified to

Re: [PATCH v2.2 2/7] crypto: GnuPG based MPI lib - header files (part 2)

2012-03-22 Thread Kasatkin, Dmitry
On Wed, Mar 21, 2012 at 10:39 AM, Geert Uytterhoeven wrote: > Ping? > > On Sun, Mar 11, 2012 at 10:55, Geert Uytterhoeven > wrote: >> On Wed, 19 Oct 2011, Dmitry Kasatkin wrote: >>> Adds the multi-precision-integer maths library which was originally taken >>> from GnuPG and ported to the kernel