]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: mac802154: Create a hot tx path
authorMiquel Raynal <miquel.raynal@bootlin.com>
Thu, 19 May 2022 15:05:11 +0000 (17:05 +0200)
committerStefan Schmidt <stefan@datenfreihafen.org>
Fri, 10 Jun 2022 07:48:40 +0000 (09:48 +0200)
Let's rename the current Tx path to show that this is the "hot" Tx
path. We will soon introduce a slower Tx path for MLME commands.

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

index 6a53c83cf0399a58cc341cfa5fce656ef43fc0d6..607019b8f8ab5cfee4b4040bbd5ae7327c38d62e 100644 (file)
@@ -106,6 +106,12 @@ err_free_skb:
        return NETDEV_TX_OK;
 }
 
+static netdev_tx_t
+ieee802154_hot_tx(struct ieee802154_local *local, struct sk_buff *skb)
+{
+       return ieee802154_tx(local, skb);
+}
+
 netdev_tx_t
 ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev)
 {
@@ -113,7 +119,7 @@ ieee802154_monitor_start_xmit(struct sk_buff *skb, struct net_device *dev)
 
        skb->skb_iif = dev->ifindex;
 
-       return ieee802154_tx(sdata->local, skb);
+       return ieee802154_hot_tx(sdata->local, skb);
 }
 
 netdev_tx_t
@@ -135,5 +141,5 @@ ieee802154_subif_start_xmit(struct sk_buff *skb, struct net_device *dev)
 
        skb->skb_iif = dev->ifindex;
 
-       return ieee802154_tx(sdata->local, skb);
+       return ieee802154_hot_tx(sdata->local, skb);
 }