[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAOMdWS+HJfjDpQX1yE+2O3nb1qAkQJC_GSiCjrrAJVrRB5r_rg@mail.gmail.com>
Date: Thu, 1 Aug 2024 15:00:23 -0700
From: Allen <allen.lkml@...il.com>
To: Jakub Kicinski <kuba@...nel.org>
Cc: "David S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>,
Paolo Abeni <pabeni@...hat.com>, jes@...ined-monkey.org, kda@...ux-powerpc.org,
cai.huoqing@...ux.dev, dougmill@...ux.ibm.com, npiggin@...il.com,
christophe.leroy@...roup.eu, aneesh.kumar@...nel.org,
naveen.n.rao@...ux.ibm.com, nnac123@...ux.ibm.com, tlfalcon@...ux.ibm.com,
cooldavid@...ldavid.org, marcin.s.wojtas@...il.com, mlindner@...vell.com,
stephen@...workplumber.org, nbd@....name, sean.wang@...iatek.com,
Mark-MC.Lee@...iatek.com, lorenzo@...nel.org, matthias.bgg@...il.com,
angelogioacchino.delregno@...labora.com, borisp@...dia.com,
bryan.whitehead@...rochip.com, UNGLinuxDriver@...rochip.com,
louis.peens@...igine.com, richardcochran@...il.com,
linux-rdma@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-acenic@...site.dk, linux-net-drivers@....com, netdev@...r.kernel.org,
Sunil Goutham <sgoutham@...vell.com>
Subject: Re: [net-next v3 05/15] net: cavium/liquidio: Convert tasklet API to
new bottom half workqueue mechanism
Jakub,
> > - tasklet_enable(&oct_priv->droq_tasklet);
> > + enable_and_queue_work(system_bh_wq, &oct_priv->droq_bh_work);
> >
> > if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
> > unregister_netdev(netdev);
>
> > if (OCTEON_CN23XX_PF(oct))
> > oct->droq[0]->ops.poll_mode = 0;
> >
> > - tasklet_enable(&oct_priv->droq_tasklet);
> > + enable_and_queue_work(system_bh_wq, &oct_priv->droq_bh_work);
>
> Could you shed some light in the cover letter or this patch why
> tasklet_enable() is converted to enable_and_queue_work() at
> the face of it those two do not appear to do the same thing?
With the transition to workqueues, the implementation on the workqueue side is:
tasklet_enable() -> enable_work() + queue_work()
Ref: https://lore.kernel.org/all/20240227172852.2386358-7-tj@kernel.org/
enable_and_queue_work() is a helper which combines the two calls.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=474a549ff4c989427a14fdab851e562c8a63fe24
Hope this answers your question.
Thanks,
Allen
>
> I'll apply patches 1-4 already.
Powered by blists - more mailing lists