[PATCH 2/6] crypto: asymmetric_keys: pkcs7_parser: delete duplicated word

2020-07-30 Thread Randy Dunlap
Drop the doubled word "the". Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/asymmetric_keys/pkcs7_parser.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200730.orig/cr

[PATCH 6/6] crypto: tcrypt: delete duplicated words in messages

2020-07-30 Thread Randy Dunlap
Drop the doubled word "failed" in pr_err() messages. Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/tcrypt.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200730.orig/crypto/tcr

[PATCH 5/6] crypto: crypto_engine: delete duplicated word

2020-07-30 Thread Randy Dunlap
Drop the doubled word "a". Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/crypto_engine.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200730.orig/crypto/crypto_engine.c +++ linux-

[PATCH 1/6] crypto: algif_aead: delete duplicated word

2020-07-30 Thread Randy Dunlap
Drop the doubled word "is". Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/algif_aead.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200730.orig/crypto/algif_aead.c +++ linux-

[PATCH 3/6] crypto: crc32c_generic: delete and fix duplicated words

2020-07-30 Thread Randy Dunlap
Drop the doubled word "the". Change "at at" to "at a". Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/crc32c_generic.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH 4/6] crypto: crct10dif_generic: fix duplicated words

2020-07-30 Thread Randy Dunlap
Change the doubled word "at" to "at a". Signed-off-by: Randy Dunlap Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org --- crypto/crct10dif_generic.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200730.orig/crypto

[PATCH 0/6] crypto: delete or fix duplicated words

2020-07-30 Thread Randy Dunlap
Drop doubled words or fix them to what they should be. Cc: Herbert Xu Cc: "David S. Miller" Cc: linux-crypto@vger.kernel.org crypto/algif_aead.c |2 +- crypto/asymmetric_keys/pkcs7_parser.h |2 +- crypto/crc32c_generic.c |4 ++-- crypto/crct10dif_ge

Re: Help getting aesni crypto patch upstream

2020-07-30 Thread Ben Greear
On 7/29/20 1:06 PM, Ard Biesheuvel wrote: On Wed, 29 Jul 2020 at 22:29, Ben Greear wrote: On 7/29/20 12:09 PM, Ard Biesheuvel wrote: On Wed, 29 Jul 2020 at 15:27, Ben Greear wrote: On 7/28/20 11:06 PM, Ard Biesheuvel wrote: On Wed, 29 Jul 2020 at 01:03, Ben Greear wrote: Hello, As par

Re: crypto: aegis128: error: incompatible types when initializing type 'unsigned char' using type 'uint8x16_t'

2020-07-30 Thread Andrea Righi
On Thu, Jul 30, 2020 at 10:11:52AM -0500, Justin Forbes wrote: > On Mon, Jul 27, 2020 at 8:05 AM Andrea Righi > wrote: > > > > I'm experiencing this build error on arm64 after updating to gcc 10: > > > > crypto/aegis128-neon-inner.c: In function 'crypto_aegis128_init_neon': > > crypto/aegis128-ne

Re: crypto: aegis128: error: incompatible types when initializing type 'unsigned char' using type 'uint8x16_t'

2020-07-30 Thread Justin Forbes
On Mon, Jul 27, 2020 at 8:05 AM Andrea Righi wrote: > > I'm experiencing this build error on arm64 after updating to gcc 10: > > crypto/aegis128-neon-inner.c: In function 'crypto_aegis128_init_neon': > crypto/aegis128-neon-inner.c:151:3: error: incompatible types when > initializing type 'unsigne

[PATCH] crypto: caam - Move debugfs fops into standalone file

2020-07-30 Thread Herbert Xu
Currently the debugfs fops are defined in caam/intern.h. This causes problems because it creates identical static functions and variables in multiple files. It also creates warnings when those files don't use the fops. This patch moves them into a standalone file, debugfs.c. It also removes unn

[PATCH] crypto: algapi - Move crypto_yield into internal.h

2020-07-30 Thread Herbert Xu
crypto: algapi - Move crypto_yield into internal.h This patch moves crypto_yield into internal.h as it's only used by internal code such as skcipher. It also adds a missing inclusion of sched.h which is required for cond_resched. The header files in internal.h have been cleaned up to remove some

[PATCH] crypto: qat - add delay before polling mailbox

2020-07-30 Thread Giovanni Cabiddu
The mailbox CSR register has a write latency and requires a delay before being read. This patch replaces readl_poll_timeout with read_poll_timeout that allows to sleep before read. The initial sleep was removed when the mailbox poll loop was replaced with readl_poll_timeout. Fixes: a79d471c6510 ("

Re: [PATCH v3 3/3] Input: snvs_pwrkey - only IRQ_HANDLED for our own events

2020-07-30 Thread Marco Felsch
Hi Dmitry, On 20-07-29 23:06, Dmitry Torokhov wrote: > Hi Marco, > > On Wed, Jul 29, 2020 at 09:55:13AM +0200, Marco Felsch wrote: > > Hi, > > > > On 20-07-23 10:43, Horia Geantă wrote: > > > From: André Draszik > > > > > > The snvs_pwrkey shares the SNVS LPSR status register with the snvs_rtc

Re: [PATCH v3 2/3] Input: snvs_pwrkey - enable snvs clock as needed

2020-07-30 Thread Marco Felsch
Hi Dmitry, On 20-07-29 23:04, Dmitry Torokhov wrote: > On Wed, Jul 29, 2020 at 09:33:23AM +0200, Marco Felsch wrote: > > Hi, > > > > On 20-07-23 10:43, Horia Geantă wrote: > > > From: André Draszik > > > > > > At the moment, enabling this driver without the SNVS RTC driver > > > being active wi