From: Allen Pais <apais@linux.microsoft.com>
To: Emil Renner Berthing <emil.renner.berthing@gmail.com>,
Allen Pais <allen.lkml@gmail.com>
Cc: giovanni.cabiddu@intel.com, alexandre.belloni@bootlin.com,
aymen.sghaier@nxp.com, Heiko Stuebner <heiko@sntech.de>,
schalla@marvell.com, jamie@jamieiles.com,
jesper.nilsson@axis.com, linux-samsung-soc@vger.kernel.org,
herbert@gondor.apana.org.au, horia.geanta@nxp.com,
k.konieczny@samsung.com, qat-linux@intel.com, krzk@kernel.org,
"open list:ARM/Rockchip SoC..."
<linux-rockchip@lists.infradead.org>,
ludovic.desroches@microchip.com, thomas.lendacky@amd.com,
arno@natisbad.org, vz@mleia.com, gilad@benyossef.com,
gcherian@marvell.com, linux-mediatek@lists.infradead.org,
lars.persson@axis.com, matthias.bgg@gmail.com,
john.allen@amd.com, bbrezillon@kernel.org,
nicolas.ferre@microchip.com, linux-crypto@vger.kernel.org,
Romain Perier <romain.perier@gmail.com>,
"David S . Miller" <davem@davemloft.net>
Subject: Re: [PATCH v2 16/19] crypto: rockchip: convert tasklets to use new tasklet_setup() API
Date: Thu, 7 Jan 2021 18:15:56 +0530 [thread overview]
Message-ID: <546446ed-27e0-e74d-f290-cd8c9097b1ca@linux.microsoft.com> (raw)
In-Reply-To: <CANBLGcziNt5R9H2eh=3y=jUUjFzHJo+G1FgVVYRgxZpfE8W-6Q@mail.gmail.com>
>
> On Thu, 7 Jan 2021 at 13:32, Allen Pais <allen.lkml@gmail.com> wrote:
>>
>> From: Allen Pais <apais@linux.microsoft.com>
>>
>> In preparation for unconditionally passing the
>> struct tasklet_struct pointer to all tasklet
>> callbacks, switch to using the new tasklet_setup()
>> and from_tasklet() to pass the tasklet pointer explicitly.
>>
>> Signed-off-by: Romain Perier <romain.perier@gmail.com>
>> Signed-off-by: Allen Pais <apais@linux.microsoft.com>
>> ---
>> drivers/crypto/rockchip/rk3288_crypto.c | 14 ++++++--------
>> 1 file changed, 6 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/crypto/rockchip/rk3288_crypto.c b/drivers/crypto/rockchip/rk3288_crypto.c
>> index 35d73061d156..af6ad9f49009 100644
>> --- a/drivers/crypto/rockchip/rk3288_crypto.c
>> +++ b/drivers/crypto/rockchip/rk3288_crypto.c
>> @@ -201,9 +201,9 @@ static int rk_crypto_enqueue(struct rk_crypto_info *dev,
>> return ret;
>> }
>>
>> -static void rk_crypto_queue_task_cb(unsigned long data)
>> +static void rk_crypto_queue_task_cb(struct tasklet_struct *T)
>> {
>> - struct rk_crypto_info *dev = (struct rk_crypto_info *)data;
>> + struct rk_crypto_info *dev = from_tasklet(dev, t, queue_task);
>
> This doesn't look right. First it's called T and then t. I wonder how
> this even compiles..
>
Thanks for catching it. I am not sure how I missed it and it even
compiled. I will fix it.
Thanks.
>> struct crypto_async_request *async_req, *backlog;
>> unsigned long flags;
>> int err = 0;
>> @@ -231,9 +231,9 @@ static void rk_crypto_queue_task_cb(unsigned long data)
>> dev->complete(dev->async_req, err);
>> }
>>
>> -static void rk_crypto_done_task_cb(unsigned long data)
>> +static void rk_crypto_done_task_cb(struct tasklet_struct *t)
>> {
>> - struct rk_crypto_info *dev = (struct rk_crypto_info *)data;
>> + struct rk_crypto_info *dev = from_tasklet(dev, t, done_task);
>>
>> if (dev->err) {
>> dev->complete(dev->async_req, dev->err);
>> @@ -389,10 +389,8 @@ static int rk_crypto_probe(struct platform_device *pdev)
>> crypto_info->dev = &pdev->dev;
>> platform_set_drvdata(pdev, crypto_info);
>>
>> - tasklet_init(&crypto_info->queue_task,
>> - rk_crypto_queue_task_cb, (unsigned long)crypto_info);
>> - tasklet_init(&crypto_info->done_task,
>> - rk_crypto_done_task_cb, (unsigned long)crypto_info);
>> + tasklet_setup(&crypto_info->queue_task, rk_crypto_queue_task_cb);
>> + tasklet_setup(&crypto_info->done_task, rk_crypto_done_task_cb);
>> crypto_init_queue(&crypto_info->queue, 50);
>>
>> crypto_info->enable_clk = rk_crypto_enable_clk;
>> --
>> 2.25.1
>>
>>
>> _______________________________________________
>> Linux-rockchip mailing list
>> Linux-rockchip@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-rockchip
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek
next prev parent reply other threads:[~2021-01-07 12:54 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-07 12:29 [PATCH v2 04/19] crypto: caam: convert tasklets to use new tasklet_setup() API Allen Pais
2021-01-07 12:29 ` [PATCH v2 05/19] crypto: cavium: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 06/19] crypto: ccp: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 07/19] crypto: ccree: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 08/19] crypto: hifn_795x: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 09/19] crypto: img-hash: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 10/19] crypto: ixp4xx: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 11/19] crypto: mediatek: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 12/19] crypto: omap: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 13/19] crypto: picoxcell: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 14/19] crypto: qat: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 15/19] crypto: qce: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 16/19] crypto: rockchip: " Allen Pais
2021-01-07 12:40 ` Emil Renner Berthing
2021-01-07 12:45 ` Allen Pais [this message]
2021-01-07 12:29 ` [PATCH v2 17/19] crypto: s5p: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 18/19] crypto: talitos: " Allen Pais
2021-01-07 12:29 ` [PATCH v2 19/19] crypto: octeontx: " Allen Pais
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=546446ed-27e0-e74d-f290-cd8c9097b1ca@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=emil.renner.berthing@gmail.com \
--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=romain.perier@gmail.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