public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/22] staging: ccree: fixes and simplifications
@ 2017-08-15  6:26 Gilad Ben-Yossef
  2017-08-15  6:26 ` [PATCH v3 01/22] staging: ccree: fix split strings Gilad Ben-Yossef
                   ` (22 more replies)
  0 siblings, 23 replies; 26+ messages in thread
From: Gilad Ben-Yossef @ 2017-08-15  6:26 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-crypto, driverdev-devel, devel,
	linux-kernel
  Cc: Ofir Drang

The series includes various bug fixes, code simplification and style
cleanups. 

Changer from v2:
- Drop M32R as supported architecture, which resolve the kbuild bot
  warnings on Joe Perches patch.
- Bug fix that properly saves last bytes of ciphertext for CTS in
  skcipher
- Even more coding style fixes

Changes from v1:

- Rebase on top of current staging-next.
- Added resource release on error simplification patch suggested by
  Dan C. as part of the review.

Based on top of staging-next commit 0116ced91d3a
("staging: fsl-mc: add explicit dependencies for compile-tested arches")

Gilad Ben-Yossef (18):
  staging: ccree: fix split strings
  staging: ccree: kmalloc by sizeof var not type
  staging: ccree: simplify resource release on error
  staging: ccree: remove unused completion
  staging: ccree: remove m32r as supported platform
  staging: ccree: rewrite GET_DMA_BUFFER_TYPE as func
  staging: ccree: fix line indentation and breaks
  staging: ccree: align box comment correctly
  staging: ccree: fix line indentation and breaks
  staging: ccree: fix struct init braces
  staging: ccree: fix line indentation and breaks
  staging: ccree: fix spelling mistakes
  staging: ccree: clean up comments
  staging: ccree: move over to BIT macro for bit defines
  staging: ccree: fix code indent
  staging: ccree: replace noop macro with inline
  staging: ccree: save ciphertext for CTS IV
  staging: ccree: remove BUG macro usage

Joe Perches (1):
  staging: ccree: Fix format/argument mismatches

Suniel Mahesh (3):
  staging: ccree: Replace kzalloc with devm_kzalloc
  staging: ccree: Convert to devm_ioremap_resource for map, unmap
  staging: ccree: Use platform_get_irq and devm_request_irq

 drivers/staging/ccree/Kconfig           |    2 +-
 drivers/staging/ccree/ssi_aead.c        | 1076 ++++++++++++++++---------------
 drivers/staging/ccree/ssi_aead.h        |   47 +-
 drivers/staging/ccree/ssi_buffer_mgr.c  |  216 ++++---
 drivers/staging/ccree/ssi_buffer_mgr.h  |    6 +-
 drivers/staging/ccree/ssi_cipher.c      |   88 ++-
 drivers/staging/ccree/ssi_cipher.h      |   10 +-
 drivers/staging/ccree/ssi_config.h      |    7 +-
 drivers/staging/ccree/ssi_driver.c      |  306 +++++----
 drivers/staging/ccree/ssi_driver.h      |   26 +-
 drivers/staging/ccree/ssi_hash.c        |  598 +++++++++--------
 drivers/staging/ccree/ssi_hash.h        |   12 +-
 drivers/staging/ccree/ssi_ivgen.c       |   19 +-
 drivers/staging/ccree/ssi_ivgen.h       |    3 +-
 drivers/staging/ccree/ssi_pm.c          |    3 +-
 drivers/staging/ccree/ssi_request_mgr.c |   75 ++-
 drivers/staging/ccree/ssi_request_mgr.h |    2 +-
 drivers/staging/ccree/ssi_sysfs.c       |   13 +-
 18 files changed, 1364 insertions(+), 1145 deletions(-)

-- 
2.1.4

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

end of thread, other threads:[~2017-08-16 22:12 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15  6:26 [PATCH v3 00/22] staging: ccree: fixes and simplifications Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 01/22] staging: ccree: fix split strings Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 02/22] staging: ccree: kmalloc by sizeof var not type Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 03/22] staging: ccree: Replace kzalloc with devm_kzalloc Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 04/22] staging: ccree: Convert to devm_ioremap_resource for map, unmap Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 05/22] staging: ccree: Use platform_get_irq and devm_request_irq Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 06/22] staging: ccree: simplify resource release on error Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 07/22] staging: ccree: remove unused completion Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 08/22] staging: ccree: remove m32r as supported platform Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 09/22] staging: ccree: Fix format/argument mismatches Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 10/22] staging: ccree: rewrite GET_DMA_BUFFER_TYPE as func Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 11/22] staging: ccree: fix line indentation and breaks Gilad Ben-Yossef
2017-08-15  6:44   ` Joe Perches
2017-08-16 22:08   ` Greg Kroah-Hartman
2017-08-15  6:26 ` [PATCH v3 12/22] staging: ccree: align box comment correctly Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 13/22] staging: ccree: fix line indentation and breaks Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 14/22] staging: ccree: fix struct init braces Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 15/22] staging: ccree: fix line indentation and breaks Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 16/22] staging: ccree: fix spelling mistakes Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 17/22] staging: ccree: clean up comments Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 18/22] staging: ccree: move over to BIT macro for bit defines Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 19/22] staging: ccree: fix code indent Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 20/22] staging: ccree: replace noop macro with inline Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 21/22] staging: ccree: save ciphertext for CTS IV Gilad Ben-Yossef
2017-08-15  6:26 ` [PATCH v3 22/22] staging: ccree: remove BUG macro usage Gilad Ben-Yossef
2017-08-16 22:12 ` [PATCH v3 00/22] staging: ccree: fixes and simplifications Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox