From: Allen Pais <apais@linux.microsoft.com>
To: Allen Pais <allen.lkml@gmail.com>, herbert@gondor.apana.org.au
Cc: davem@davemloft.net, nicolas.ferre@microchip.com,
alexandre.belloni@bootlin.com, ludovic.desroches@microchip.com,
jesper.nilsson@axis.com, lars.persson@axis.com,
horia.geanta@nxp.com, aymen.sghaier@nxp.com,
gcherian@marvell.com, thomas.lendacky@amd.com,
john.allen@amd.com, gilad@benyossef.com, bbrezillon@kernel.org,
arno@natisbad.org, schalla@marvell.com, matthias.bgg@gmail.com,
jamie@jamieiles.com, giovanni.cabiddu@intel.com, heiko@sntech.de,
krzk@kernel.org, vz@mleia.com, k.konieczny@samsung.com,
linux-crypto@vger.kernel.org, linux-mediatek@lists.infradead.org,
qat-linux@intel.com, linux-rockchip@lists.infradead.org,
linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH v5 00/19]crypto: convert tasklets to use new tasklet_setup API()
Date: Mon, 8 Feb 2021 15:16:42 +0530 [thread overview]
Message-ID: <9e26b2b1-2bd3-4398-5ed1-981eac87953d@linux.microsoft.com> (raw)
In-Reply-To: <20210208094238.571015-1-allen.lkml@gmail.com>
> From: Allen Pais <apais@linux.microsoft.com>
>
> Commit 12cc923f1ccc ("tasklet: Introduce new initialization API")
> introduced a new tasklet initialization API. This series converts
> all the crypto modules to use the new tasklet_setup() API
>
> The series is based on v5.11-rc4 (19c329f68089)
I missed updating this bit. The series is based on
v5.11-rc7 (92bf22614b21).
Thanks.
> v5:
> - Fix amcc build failure.
>
> v4:
> - added acks
> - fixed checkpatch errors(Giovanni Cabiddu)
>
> v3:
> - fixed rockchip driver(Emil Renner Berthing)
>
> v2:
> - added acks
> - addressed comments [Krzysztof and Gilad]
>
> Allen Pais (19):
> crypto: amcc: convert tasklets to use new tasklet_setup() API
> crypto: atmel: convert tasklets to use new tasklet_setup() API
> crypto: axis: convert tasklets to use new tasklet_setup() API
> crypto: caam: convert tasklets to use new tasklet_setup() API
> crypto: cavium: convert tasklets to use new tasklet_setup() API
> crypto: ccp: convert tasklets to use new tasklet_setup() API
> crypto: ccree: convert tasklets to use new tasklet_setup() API
> crypto: hifn_795x: convert tasklets to use new tasklet_setup() API
> crypto: img-hash: convert tasklets to use new tasklet_setup() API
> crypto: ixp4xx: convert tasklets to use new tasklet_setup() API
> crypto: mediatek: convert tasklets to use new tasklet_setup() API
> crypto: omap: convert tasklets to use new tasklet_setup() API
> crypto: picoxcell: convert tasklets to use new tasklet_setup() API
> crypto: qat: convert tasklets to use new tasklet_setup() API
> crypto: qce: convert tasklets to use new tasklet_setup() API
> crypto: rockchip: convert tasklets to use new tasklet_setup() API
> crypto: s5p: convert tasklets to use new tasklet_setup() API
> crypto: talitos: convert tasklets to use new tasklet_setup() API
> crypto: octeontx: convert tasklets to use new tasklet_setup() API
>
> drivers/crypto/amcc/crypto4xx_core.c | 10 ++---
> drivers/crypto/atmel-aes.c | 14 +++----
> drivers/crypto/atmel-sha.c | 14 +++----
> drivers/crypto/atmel-tdes.c | 14 +++----
> drivers/crypto/axis/artpec6_crypto.c | 7 ++--
> drivers/crypto/caam/jr.c | 9 ++--
> drivers/crypto/cavium/cpt/cptvf_main.c | 9 ++--
> drivers/crypto/cavium/nitrox/nitrox_common.h | 2 +-
> drivers/crypto/cavium/nitrox/nitrox_isr.c | 13 +++---
> drivers/crypto/cavium/nitrox/nitrox_reqmgr.c | 4 +-
> drivers/crypto/ccp/ccp-dev-v3.c | 9 ++--
> drivers/crypto/ccp/ccp-dev-v5.c | 9 ++--
> drivers/crypto/ccp/ccp-dmaengine.c | 7 ++--
> drivers/crypto/ccree/cc_fips.c | 8 ++--
> drivers/crypto/ccree/cc_request_mgr.c | 12 +++---
> drivers/crypto/hifn_795x.c | 6 +--
> drivers/crypto/img-hash.c | 12 +++---
> drivers/crypto/ixp4xx_crypto.c | 4 +-
> .../crypto/marvell/octeontx/otx_cptvf_main.c | 12 +++---
> drivers/crypto/mediatek/mtk-aes.c | 14 +++----
> drivers/crypto/mediatek/mtk-sha.c | 14 +++----
> drivers/crypto/omap-aes.c | 6 +--
> drivers/crypto/omap-des.c | 6 +--
> drivers/crypto/omap-sham.c | 6 +--
> drivers/crypto/picoxcell_crypto.c | 7 ++--
> drivers/crypto/qat/qat_common/adf_isr.c | 5 +--
> drivers/crypto/qat/qat_common/adf_sriov.c | 10 ++---
> drivers/crypto/qat/qat_common/adf_transport.c | 4 +-
> .../qat/qat_common/adf_transport_internal.h | 2 +-
> drivers/crypto/qat/qat_common/adf_vf_isr.c | 11 +++--
> drivers/crypto/qce/core.c | 7 ++--
> drivers/crypto/rockchip/rk3288_crypto.c | 14 +++----
> drivers/crypto/s5p-sss.c | 13 +++---
> drivers/crypto/talitos.c | 42 +++++++++----------
> 34 files changed, 154 insertions(+), 182 deletions(-)
>
prev parent reply other threads:[~2021-02-08 9:50 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-08 9:42 [PATCH v5 00/19]crypto: convert tasklets to use new tasklet_setup API() Allen Pais
2021-02-08 9:42 ` [PATCH v5 01/19] crypto: amcc: convert tasklets to use new tasklet_setup() API Allen Pais
2021-03-04 6:26 ` Herbert Xu
2021-03-09 9:29 ` Allen Pais
2021-02-08 9:42 ` [PATCH v5 02/19] crypto: atmel: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 03/19] crypto: axis: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 04/19] crypto: caam: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 05/19] crypto: cavium: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 06/19] crypto: ccp: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 07/19] crypto: ccree: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 08/19] crypto: hifn_795x: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 09/19] crypto: img-hash: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 10/19] crypto: ixp4xx: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 11/19] crypto: mediatek: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 12/19] crypto: omap: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 13/19] crypto: picoxcell: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 14/19] crypto: qat: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 15/19] crypto: qce: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 16/19] crypto: rockchip: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 17/19] crypto: s5p: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 18/19] crypto: talitos: " Allen Pais
2021-02-08 9:42 ` [PATCH v5 19/19] crypto: octeontx: " Allen Pais
2021-02-08 9:46 ` Allen Pais [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9e26b2b1-2bd3-4398-5ed1-981eac87953d@linux.microsoft.com \
--to=apais@linux.microsoft.com \
--cc=alexandre.belloni@bootlin.com \
--cc=allen.lkml@gmail.com \
--cc=arno@natisbad.org \
--cc=aymen.sghaier@nxp.com \
--cc=bbrezillon@kernel.org \
--cc=davem@davemloft.net \
--cc=gcherian@marvell.com \
--cc=gilad@benyossef.com \
--cc=giovanni.cabiddu@intel.com \
--cc=heiko@sntech.de \
--cc=herbert@gondor.apana.org.au \
--cc=horia.geanta@nxp.com \
--cc=jamie@jamieiles.com \
--cc=jesper.nilsson@axis.com \
--cc=john.allen@amd.com \
--cc=k.konieczny@samsung.com \
--cc=krzk@kernel.org \
--cc=lars.persson@axis.com \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=ludovic.desroches@microchip.com \
--cc=matthias.bgg@gmail.com \
--cc=nicolas.ferre@microchip.com \
--cc=qat-linux@intel.com \
--cc=schalla@marvell.com \
--cc=thomas.lendacky@amd.com \
--cc=vz@mleia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox