All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] crypto: caam - fixes, clean-up
@ 2017-07-07 13:05 Horia Geantă
  2017-07-07 13:05 ` [PATCH 01/13] crypto: caam/qi - fix typo in authenc alg driver name Horia Geantă
                   ` (13 more replies)
  0 siblings, 14 replies; 31+ messages in thread
From: Horia Geantă @ 2017-07-07 13:05 UTC (permalink / raw)
  To: Herbert Xu; +Cc: David S. Miller, linux-crypto, Dan Douglass, Tudor Ambarus

Hi,

Current patch set consists of:

Patches 1-4 fix some issues in caam/qi driver;
they should be sent to -stable.

Patches 5-7 also fix some problems in caam/qi driver, however these are
ARM-specific. Considering that caam/qi does not have support for ARM in
kernel v4.12 (lacking one dependency - Queue Manager), there's no need
to be applied on v4.12.y.

Patches 8-13 contain code clean-up.

Thanks,
Horia

Horia Geantă (11):
  crypto: caam/qi - fix typo in authenc alg driver name
  crypto: caam/qi - fix compilation with DEBUG enabled
  crypto: caam/qi - fix compilation with
    CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y
  crypto: caam/qi - properly set IV after {en,de}crypt
  crypto: caam/qi - handle large number of S/Gs case
  crypto: caam/qi - fix AD length endianness in S/G entry
  crypto: caam/qi - explicitly set dma_ops
  crypto: caam/qi - remove unused header sg_sw_sec4.h
  crypto: caam/qi - lower driver verbosity
  crypto: caam - remove unused sg_to_sec4_sg_len()
  crypto: caam - clean-up in caam_init_rng()

Tudor Ambarus (2):
  crypto: caam - remove unused variables in caam_drv_private
  crypto: caam - fix condition for the jump over key(s) command

 drivers/crypto/caam/caamalg.c      | 66 +++++++++-----------------------------
 drivers/crypto/caam/caamalg_desc.c |  5 ++-
 drivers/crypto/caam/caamalg_qi.c   | 47 ++++++++++++++++++++++-----
 drivers/crypto/caam/caamrng.c      |  6 +---
 drivers/crypto/caam/ctrl.c         |  1 -
 drivers/crypto/caam/error.c        | 40 +++++++++++++++++++++++
 drivers/crypto/caam/error.h        |  4 +++
 drivers/crypto/caam/intern.h       |  3 --
 drivers/crypto/caam/qi.c           | 14 ++++----
 drivers/crypto/caam/qi.h           |  3 ++
 drivers/crypto/caam/sg_sw_sec4.h   | 15 ---------
 11 files changed, 110 insertions(+), 94 deletions(-)

-- 
2.12.0.264.gd6db3f216544

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2017-07-18 10:40 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-07 13:05 [PATCH 00/13] crypto: caam - fixes, clean-up Horia Geantă
2017-07-07 13:05 ` [PATCH 01/13] crypto: caam/qi - fix typo in authenc alg driver name Horia Geantă
2017-07-07 13:05 ` [PATCH 02/13] crypto: caam/qi - fix compilation with DEBUG enabled Horia Geantă
2017-07-07 13:05 ` [PATCH 03/13] crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y Horia Geantă
2017-07-07 13:05 ` [PATCH 04/13] crypto: caam/qi - properly set IV after {en,de}crypt Horia Geantă
2017-07-07 13:05 ` [PATCH 05/13] crypto: caam/qi - handle large number of S/Gs case Horia Geantă
2017-07-10  5:23   ` Horia Geantă
2017-07-07 13:05 ` [PATCH 06/13] crypto: caam/qi - fix AD length endianness in S/G entry Horia Geantă
2017-07-07 13:05 ` [PATCH 07/13] crypto: caam/qi - explicitly set dma_ops Horia Geantă
2017-07-07 13:05 ` [PATCH 08/13] crypto: caam/qi - remove unused header sg_sw_sec4.h Horia Geantă
2017-07-07 13:05 ` [PATCH 09/13] crypto: caam/qi - lower driver verbosity Horia Geantă
2017-07-07 13:05 ` [PATCH 10/13] crypto: caam - remove unused sg_to_sec4_sg_len() Horia Geantă
2017-07-07 13:05 ` [PATCH 11/13] crypto: caam - remove unused variables in caam_drv_private Horia Geantă
2017-07-07 13:05 ` [PATCH 12/13] crypto: caam - clean-up in caam_init_rng() Horia Geantă
2017-07-07 13:16   ` Horia Geantă
2017-07-07 13:05 ` [PATCH 13/13] crypto: caam - fix condition for the jump over key(s) command Horia Geantă
2017-07-10  5:40 ` [PATCH v2 00/13] crypto: caam - fixes, clean-up Horia Geantă
2017-07-10  5:40   ` [PATCH v2 01/13] crypto: caam/qi - fix typo in authenc alg driver name Horia Geantă
2017-07-10  5:40   ` [PATCH v2 02/13] crypto: caam/qi - fix compilation with DEBUG enabled Horia Geantă
2017-07-10  5:40   ` [PATCH v2 03/13] crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y Horia Geantă
2017-07-10  5:40   ` [PATCH v2 04/13] crypto: caam/qi - properly set IV after {en,de}crypt Horia Geantă
2017-07-10  5:40   ` [PATCH v2 05/13] crypto: caam/qi - handle large number of S/Gs case Horia Geantă
2017-07-10  5:40   ` [PATCH v2 06/13] crypto: caam/qi - fix AD length endianness in S/G entry Horia Geantă
2017-07-10  5:40   ` [PATCH v2 07/13] crypto: caam/qi - explicitly set dma_ops Horia Geantă
2017-07-10  5:40   ` [PATCH v2 08/13] crypto: caam/qi - remove unused header sg_sw_sec4.h Horia Geantă
2017-07-10  5:40   ` [PATCH v2 09/13] crypto: caam/qi - lower driver verbosity Horia Geantă
2017-07-10  5:40   ` [PATCH v2 10/13] crypto: caam - remove unused sg_to_sec4_sg_len() Horia Geantă
2017-07-10  5:40   ` [PATCH v2 11/13] crypto: caam - remove unused variables in caam_drv_private Horia Geantă
2017-07-10  5:40   ` [PATCH v2 12/13] crypto: caam - clean-up in caam_init_rng() Horia Geantă
2017-07-10  5:40   ` [PATCH v2 13/13] crypto: caam - fix condition for the jump over key(s) command Horia Geantă
2017-07-18 10:39   ` [PATCH v2 00/13] crypto: caam - fixes, clean-up Herbert Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.