netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dimitris Michailidis <d.michailidis@fungible.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: davem@davemloft.net, netdev@vger.kernel.org,
	Andrew Lunn <andrew@lunn.ch>
Subject: Re: [PATCH net-next v6 3/8] net/funeth: probing and netdev ops
Date: Wed, 16 Feb 2022 18:57:36 -0800	[thread overview]
Message-ID: <CAOkoqZ=jF=oK+_s_QTr8eL+6Dw6r7710mGpgqLjgWbAruS_Ucg@mail.gmail.com> (raw)
In-Reply-To: <20220112144550.17c38ccd@kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net>

On Wed, Jan 12, 2022 at 2:45 PM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Sun,  9 Jan 2022 17:56:31 -0800 Dimitris Michailidis wrote:
> > +static void fun_update_link_state(const struct fun_ethdev *ed,
> > +                               const struct fun_admin_port_notif *notif)
> > +{
> > +     unsigned int port_idx = be16_to_cpu(notif->id);
> > +     struct net_device *netdev;
> > +     struct funeth_priv *fp;
> > +
> > +     if (port_idx >= ed->num_ports)
> > +             return;
> > +
> > +     netdev = ed->netdevs[port_idx];
> > +     fp = netdev_priv(netdev);
> > +
> > +     write_seqcount_begin(&fp->link_seq);
> > +     fp->link_speed = be32_to_cpu(notif->speed) * 10;  /* 10 Mbps->Mbps */
> > +     fp->active_fc = notif->flow_ctrl;
> > +     fp->active_fec = notif->fec;
> > +     fp->xcvr_type = notif->xcvr_type;
> > +     fp->link_down_reason = notif->link_down_reason;
> > +     fp->lp_advertising = be64_to_cpu(notif->lp_advertising);
> > +
> > +     if ((notif->link_state | notif->missed_events) & FUN_PORT_FLAG_MAC_DOWN)
> > +             netif_carrier_off(netdev);
> > +     if (notif->link_state & FUN_PORT_FLAG_MAC_UP)
> > +             netif_carrier_on(netdev);
> > +
> > +     write_seqcount_end(&fp->link_seq);
> > +     fun_report_link(netdev);
> > +}
> > +
> > +/* handler for async events delivered through the admin CQ */
> > +static void fun_event_cb(struct fun_dev *fdev, void *entry)
> > +{
> > +     u8 op = ((struct fun_admin_rsp_common *)entry)->op;
> > +
> > +     if (op == FUN_ADMIN_OP_PORT) {
> > +             const struct fun_admin_port_notif *rsp = entry;
> > +
> > +             if (rsp->subop == FUN_ADMIN_SUBOP_NOTIFY) {
> > +                     fun_update_link_state(to_fun_ethdev(fdev), rsp);
>
> Is there locking between service task and admin queue events?

There isn't any lock between them. They coordinate through atomic
bitops and the synchronization work_structs provide.

  reply	other threads:[~2022-02-17  2:57 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-10  1:56 [PATCH net-next v6 0/8] new Fungible Ethernet driver Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 1/8] PCI: Add Fungible Vendor ID to pci_ids.h Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 2/8] net/fungible: Add service module for Fungible drivers Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 3/8] net/funeth: probing and netdev ops Dimitris Michailidis
2022-01-12 22:45   ` Jakub Kicinski
2022-02-17  2:57     ` Dimitris Michailidis [this message]
2022-01-12 22:51   ` Jakub Kicinski
2022-02-17  3:06     ` Dimitris Michailidis
2022-01-12 22:56   ` Jakub Kicinski
2022-02-17  3:07     ` Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 4/8] net/funeth: ethtool operations Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 5/8] net/funeth: devlink support Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 6/8] net/funeth: add the data path Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 7/8] net/funeth: add kTLS TX control part Dimitris Michailidis
2022-01-12 22:32   ` Jakub Kicinski
2022-01-12 22:35   ` Jakub Kicinski
2022-01-12 22:40     ` Jakub Kicinski
2022-02-17  3:10       ` Dimitris Michailidis
2022-01-10  1:56 ` [PATCH net-next v6 8/8] net/fungible: Kconfig, Makefiles, and MAINTAINERS Dimitris Michailidis
2022-01-10  2:55 ` [PATCH net-next v6 0/8] new Fungible Ethernet driver Jakub Kicinski
2022-01-12 23:17   ` Jakub Kicinski

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='CAOkoqZ=jF=oK+_s_QTr8eL+6Dw6r7710mGpgqLjgWbAruS_Ucg@mail.gmail.com' \
    --to=d.michailidis@fungible.com \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).