net: mac802154: Introduce a synchronous API for MLME commands
authorMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 19 May 2022 15:05:14 +0000 (17:05 +0200)
committerStefan Schmidt <stefan@datenfreihafen.org>
Fri, 10 Jun 2022 07:48:40 +0000 (09:48 +0200)
This is the slow path, we need to wait for each command to be processed
before continuing so let's introduce an helper which does the
transmission and blocks until it gets notified of its asynchronous
completion. This helper is going to be used when introducing scan
support.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Acked-by: Alexander Aring <aahringo@redhat.com>
Link: https://lore.kernel.org/r/20220519150516.443078-10-miquel.raynal@bootlin.com
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
net/mac802154/ieee802154_i.h
net/mac802154/tx.c

index a057827fc48a5c66bbc9ba3a7b82605143445e83..8a4816ae71e7b732b41925713716692df88e5593 100644 (file)
@@ -125,6 +125,10 @@ extern struct ieee802154_mlme_ops mac802154_mlme_wpan;
 void ieee802154_rx(struct ieee802154_local *local, struct sk_buff *skb);
 void ieee802154_xmit_sync_worker(struct work_struct *work);
 int ieee802154_sync_and_hold_queue(struct ieee802154_local *local);
+int ieee802154_mlme_op_pre(struct ieee802154_local *local);
+int ieee802154_mlme_tx(struct ieee802154_local *local, struct sk_buff *skb);
+void ieee802154_mlme_op_post(struct ieee802154_local *local);
+int ieee802154_mlme_tx_one(struct ieee802154_local *local, struct sk_buff *skb);
 netdev_tx_t
 ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev);
 netdev_tx_t
index 38f74b8b674029bf933fe5ea9d4acb7a1e29536c..4827391600f6a0e9f2ba15cf8a5340c6f8ad5fc7 100644 (file)
@@ -128,6 +128,50 @@ int ieee802154_sync_and_hold_queue(struct ieee802154_local *local)
        return ieee802154_sync_queue(local);
 }
 
+int ieee802154_mlme_op_pre(struct ieee802154_local *local)
+{
+       return ieee802154_sync_and_hold_queue(local);
+}
+
+int ieee802154_mlme_tx(struct ieee802154_local *local, struct sk_buff *skb)
+{
+       int ret;
+
+       /* Avoid possible calls to ->ndo_stop() when we asynchronously perform
+        * MLME transmissions.
+        */
+       rtnl_lock();
+
+       /* Ensure the device was not stopped, otherwise error out */
+       if (!local->open_count) {
+               rtnl_unlock();
+               return -ENETDOWN;
+       }
+
+       ieee802154_tx(local, skb);
+       ret = ieee802154_sync_queue(local);
+
+       rtnl_unlock();
+
+       return ret;
+}
+
+void ieee802154_mlme_op_post(struct ieee802154_local *local)
+{
+       ieee802154_release_queue(local);
+}
+
+int ieee802154_mlme_tx_one(struct ieee802154_local *local, struct sk_buff *skb)
+{
+       int ret;
+
+       ieee802154_mlme_op_pre(local);
+       ret = ieee802154_mlme_tx(local, skb);
+       ieee802154_mlme_op_post(local);
+
+       return ret;
+}
+
 static netdev_tx_t
 ieee802154_hot_tx(struct ieee802154_local *local, struct sk_buff *skb)
 {