All of lore.kernel.org
 help / color / mirror / Atom feed
From: Allen <allen.lkml@gmail.com>
To: Gilad Ben-Yossef <gilad@benyossef.com>
Cc: "Herbert Xu" <herbert@gondor.apana.org.au>,
	"David Miller" <davem@davemloft.net>,
	nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com,
	ludovic.desroches@microchip.com, jesper.nilsson@axis.com,
	lars.persson@axis.com, "Horia Geantă" <horia.geanta@nxp.com>,
	aymen.sghaier@nxp.com, bbrezillon@kernel.org,
	"Arnaud Ebalard" <arno@natisbad.org>,
	schalla@marvell.com, "Matthias Brugger" <matthias.bgg@gmail.com>,
	heiko@sntech.de, krzk@kernel.org, vz@mleia.com,
	k.konieczny@samsung.com,
	"Linux Crypto Mailing List" <linux-crypto@vger.kernel.org>,
	"Allen Pais" <apais@microsoft.com>,
	"Romain Perier" <romain.perier@gmail.com>
Subject: Re: [RESEND 07/19] crypto: ccree: convert tasklets to use new tasklet_setup() API
Date: Wed, 9 Dec 2020 17:05:12 +0530	[thread overview]
Message-ID: <CAOMdWSKz3+K0fPuiCJN3QxQCY7zYTORF0AhgHeDNrYVLA9puVw@mail.gmail.com> (raw)
In-Reply-To: <CAOtvUMeAQYwoB_9jmMdwi8tTYtD8=-r5T7RFTiKgEnDHgkbP+g@mail.gmail.com>

> >
> > Signed-off-by: Romain Perier <romain.perier@gmail.com>
> > Signed-off-by: Allen Pais <apais@microsoft.com>
> > ---
> >  drivers/crypto/ccree/cc_fips.c        |  6 +++---
> >  drivers/crypto/ccree/cc_request_mgr.c | 12 ++++++------
> >  2 files changed, 9 insertions(+), 9 deletions(-)
> >
> > diff --git a/drivers/crypto/ccree/cc_fips.c b/drivers/crypto/ccree/cc_fips.c
> > index 702aefc21447..bad228a36776 100644
> > --- a/drivers/crypto/ccree/cc_fips.c
> > +++ b/drivers/crypto/ccree/cc_fips.c
> > @@ -109,9 +109,9 @@ void cc_tee_handle_fips_error(struct cc_drvdata *p_drvdata)
> >  }
> >
> >  /* Deferred service handler, run as interrupt-fired tasklet */
> > -static void fips_dsr(unsigned long devarg)
> > +static void fips_dsr(struct tasklet_struct *t)
>
> Sorry for the nitpick, but I would really prefer to have a more
> meaningful name for this parameter than just 't'.
>
> tasklet, task, tsk... any descriptive name is fine.
>

 Sure, I will fix it and send out V2.

Thanks.

> >  {
> > -       struct cc_drvdata *drvdata = (struct cc_drvdata *)devarg;
> > +       struct cc_drvdata *drvdata = from_tasklet(drvdata, t, tasklet);
> >         u32 irq, val;
> >
> >         irq = (drvdata->irq & (CC_GPR0_IRQ_MASK));
> > @@ -143,7 +143,7 @@ int cc_fips_init(struct cc_drvdata *p_drvdata)
> >         p_drvdata->fips_handle = fips_h;
> >
> >         dev_dbg(dev, "Initializing fips tasklet\n");
> > -       tasklet_init(&fips_h->tasklet, fips_dsr, (unsigned long)p_drvdata);
> > +       tasklet_setup(&fips_h->tasklet, fips_dsr);
> >         fips_h->drvdata = p_drvdata;
> >         fips_h->nb.notifier_call = cc_ree_fips_failure;
> >         atomic_notifier_chain_register(&fips_fail_notif_chain, &fips_h->nb);
> > diff --git a/drivers/crypto/ccree/cc_request_mgr.c b/drivers/crypto/ccree/cc_request_mgr.c
> > index 33fb27745d52..ec0f3bf00d33 100644
> > --- a/drivers/crypto/ccree/cc_request_mgr.c
> > +++ b/drivers/crypto/ccree/cc_request_mgr.c
> > @@ -70,7 +70,7 @@ static const u32 cc_cpp_int_masks[CC_CPP_NUM_ALGS][CC_CPP_NUM_SLOTS] = {
> >           BIT(CC_HOST_IRR_REE_OP_ABORTED_SM_7_INT_BIT_SHIFT) }
> >  };
> >
> > -static void comp_handler(unsigned long devarg);
> > +static void comp_handler(struct tasklet_struct *t);
> >  #ifdef COMP_IN_WQ
> >  static void comp_work_handler(struct work_struct *work);
> >  #endif
> > @@ -140,8 +140,7 @@ int cc_req_mgr_init(struct cc_drvdata *drvdata)
> >         INIT_DELAYED_WORK(&req_mgr_h->compwork, comp_work_handler);
> >  #else
> >         dev_dbg(dev, "Initializing completion tasklet\n");
> > -       tasklet_init(&req_mgr_h->comptask, comp_handler,
> > -                    (unsigned long)drvdata);
> > +       tasklet_setup(&req_mgr_h->comptask, comp_handler);
> >  #endif
> >         req_mgr_h->hw_queue_size = cc_ioread(drvdata,
> >                                              CC_REG(DSCRPTR_QUEUE_SRAM_SIZE));
> > @@ -611,11 +610,12 @@ static inline u32 cc_axi_comp_count(struct cc_drvdata *drvdata)
> >  }
> >
> >  /* Deferred service handler, run as interrupt-fired tasklet */
> > -static void comp_handler(unsigned long devarg)
> > +static void comp_handler(struct tasklet_struct *t)
> >  {
> > -       struct cc_drvdata *drvdata = (struct cc_drvdata *)devarg;
> >         struct cc_req_mgr_handle *request_mgr_handle =
> > -                                               drvdata->request_mgr_handle;
> > +                               from_tasklet(request_mgr_handle, t, comptask);
> > +       struct cc_drvdata *drvdata = container_of((void *)request_mgr_handle,
> > +                                    typeof(*drvdata), request_mgr_handle);
> >         struct device *dev = drvdata_to_dev(drvdata);
> >         u32 irq;
> >
> > --
> > 2.25.1
> >
>
> Other than that it looks good to me.
>
> Thanks,
> Gilad
>
> --
> Gilad Ben-Yossef
> Chief Coffee Drinker
>
> values of β will give rise to dom!



-- 
       - Allen

  reply	other threads:[~2020-12-09 11:36 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07  8:59 [RESEND 00/19] crypto: convert tasklets to use new tasklet_setup API() Allen Pais
2020-12-07  8:59 ` [RESEND 01/19] crypto: amcc: convert tasklets to use new tasklet_setup() API Allen Pais
2020-12-07  8:59 ` [RESEND 02/19] crypto: atmel: " Allen Pais
2020-12-07  8:59 ` [RESEND 03/19] crypto: axis: " Allen Pais
2020-12-07  8:59 ` [RESEND 04/19] crypto: caam: " Allen Pais
2020-12-14 17:21   ` Horia Geantă
2020-12-07  8:59 ` [RESEND 05/19] crypto: cavium: " Allen Pais
2020-12-07  8:59 ` [RESEND 06/19] crypto: ccp: " Allen Pais
2020-12-07  8:59 ` [RESEND 07/19] crypto: ccree: " Allen Pais
2020-12-07 18:23   ` kernel test robot
2020-12-09  6:46   ` Gilad Ben-Yossef
2020-12-09 11:35     ` Allen [this message]
2020-12-07  8:59 ` [RESEND 08/19] crypto: hifn_795x: " Allen Pais
2020-12-07  8:59 ` [RESEND 09/19] crypto: img-hash: " Allen Pais
2020-12-07  8:59 ` [RESEND 10/19] crypto: ixp4xx: " Allen Pais
2020-12-07  8:59 ` [RESEND 11/19] crypto: mediatek: " Allen Pais
2020-12-07  8:59 ` [RESEND 12/19] crypto: omap: " Allen Pais
2020-12-07  8:59 ` [RESEND 13/19] crypto: picoxcell: " Allen Pais
2020-12-07  8:59 ` [RESEND 14/19] crypto: qat: " Allen Pais
2020-12-07  8:59 ` [RESEND 15/19] crypto: qce: " Allen Pais
2020-12-07  8:59 ` [RESEND 16/19] crypto: rockchip: " Allen Pais
2020-12-07  8:59 ` [RESEND 17/19] crypto: s5p: " Allen Pais
2020-12-07  9:50   ` Krzysztof Kozlowski
2020-12-07  8:59 ` [RESEND 18/19] crypto: talitos: " Allen Pais
2020-12-07  8:59 ` [RESEND 19/19] crypto: octeontx: " Allen Pais
2020-12-07  9:13 ` [RESEND 00/19] crypto: convert tasklets to use new tasklet_setup API() Krzysztof Kozlowski

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=CAOMdWSKz3+K0fPuiCJN3QxQCY7zYTORF0AhgHeDNrYVLA9puVw@mail.gmail.com \
    --to=allen.lkml@gmail.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=apais@microsoft.com \
    --cc=arno@natisbad.org \
    --cc=aymen.sghaier@nxp.com \
    --cc=bbrezillon@kernel.org \
    --cc=davem@davemloft.net \
    --cc=gilad@benyossef.com \
    --cc=heiko@sntech.de \
    --cc=herbert@gondor.apana.org.au \
    --cc=horia.geanta@nxp.com \
    --cc=jesper.nilsson@axis.com \
    --cc=k.konieczny@samsung.com \
    --cc=krzk@kernel.org \
    --cc=lars.persson@axis.com \
    --cc=linux-crypto@vger.kernel.org \
    --cc=ludovic.desroches@microchip.com \
    --cc=matthias.bgg@gmail.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=romain.perier@gmail.com \
    --cc=schalla@marvell.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 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.