mbox series

[v3,0/3] crypto: scatterwalk - scatterwalk_next and memcpy_sglist

Message ID cover.1741437826.git.herbert@gondor.apana.org.au (mailing list archive)
Headers show
Series crypto: scatterwalk - scatterwalk_next and memcpy_sglist | expand

Message

Herbert Xu March 8, 2025, 12:45 p.m. UTC
v3 renames maddr to __maddr.

This patch series changes the calling convention of scatterwalk_next
and adds a new helper memcpy_sglist.

Herbert Xu (3):
  crypto: scatterwalk - Change scatterwalk_next calling convention
  crypto: scatterwalk - Add memcpy_sglist
  crypto: skcipher - Eliminate duplicate virt.addr field

 arch/arm/crypto/ghash-ce-glue.c       |  7 ++---
 arch/arm64/crypto/aes-ce-ccm-glue.c   |  9 +++---
 arch/arm64/crypto/ghash-ce-glue.c     |  7 ++---
 arch/arm64/crypto/sm4-ce-ccm-glue.c   |  8 +++---
 arch/arm64/crypto/sm4-ce-gcm-glue.c   |  8 +++---
 arch/s390/crypto/aes_s390.c           | 21 ++++++--------
 arch/x86/crypto/aegis128-aesni-glue.c |  7 ++---
 arch/x86/crypto/aesni-intel_glue.c    |  9 +++---
 crypto/aegis128-core.c                |  7 ++---
 crypto/scatterwalk.c                  | 41 +++++++++++++++++++++------
 crypto/skcipher.c                     | 35 +++++++++++------------
 drivers/crypto/nx/nx.c                |  7 ++---
 include/crypto/algapi.h               |  8 ++++++
 include/crypto/internal/skcipher.h    | 26 +++++++++++++----
 include/crypto/scatterwalk.h          | 38 ++++++++++++++-----------
 15 files changed, 140 insertions(+), 98 deletions(-)

Comments

Eric Biggers March 10, 2025, 4:56 p.m. UTC | #1
On Sat, Mar 08, 2025 at 08:45:18PM +0800, Herbert Xu wrote:
> v3 renames maddr to __maddr.
> 
> This patch series changes the calling convention of scatterwalk_next
> and adds a new helper memcpy_sglist.
> 
> Herbert Xu (3):
>   crypto: scatterwalk - Change scatterwalk_next calling convention
>   crypto: scatterwalk - Add memcpy_sglist
>   crypto: skcipher - Eliminate duplicate virt.addr field
> 
>  arch/arm/crypto/ghash-ce-glue.c       |  7 ++---
>  arch/arm64/crypto/aes-ce-ccm-glue.c   |  9 +++---
>  arch/arm64/crypto/ghash-ce-glue.c     |  7 ++---
>  arch/arm64/crypto/sm4-ce-ccm-glue.c   |  8 +++---
>  arch/arm64/crypto/sm4-ce-gcm-glue.c   |  8 +++---
>  arch/s390/crypto/aes_s390.c           | 21 ++++++--------
>  arch/x86/crypto/aegis128-aesni-glue.c |  7 ++---
>  arch/x86/crypto/aesni-intel_glue.c    |  9 +++---
>  crypto/aegis128-core.c                |  7 ++---
>  crypto/scatterwalk.c                  | 41 +++++++++++++++++++++------
>  crypto/skcipher.c                     | 35 +++++++++++------------
>  drivers/crypto/nx/nx.c                |  7 ++---
>  include/crypto/algapi.h               |  8 ++++++
>  include/crypto/internal/skcipher.h    | 26 +++++++++++++----
>  include/crypto/scatterwalk.h          | 38 ++++++++++++++-----------
>  15 files changed, 140 insertions(+), 98 deletions(-)
> 

Reviewed-by: Eric Biggers <ebiggers@kernel.org>

- Eric