err_tx: /* Restart the netif queue on each sub_if_data object. */
ieee802154_release_queue(local); if (atomic_dec_and_test(&local->phy->ongoing_txs))
wake_up(&local->phy->sync_txq);
kfree_skb(skb);
netdev_dbg(dev, "transmission failed\n");
}
/* Stop the netif queue on each sub_if_data object. */
ieee802154_hold_queue(local);
atomic_inc(&local->phy->ongoing_txs);
/* Drivers should preferably implement the async callback. In some rare * cases they only provide a sync callback which we will use as a * fallback.
*/ if (local->ops->xmit_async) { unsignedint len = skb->len;
ret = drv_xmit_async(local, skb); if (ret) goto err_wake_netif_queue;
err_wake_netif_queue:
ieee802154_release_queue(local); if (atomic_dec_and_test(&local->phy->ongoing_txs))
wake_up(&local->phy->sync_txq);
err_free_skb:
kfree_skb(skb); return NETDEV_TX_OK;
}
staticint ieee802154_sync_queue(struct ieee802154_local *local)
{ int ret;
ieee802154_hold_queue(local);
ieee802154_disable_queue(local);
wait_event(local->phy->sync_txq, !atomic_read(&local->phy->ongoing_txs));
ret = local->tx_result;
ieee802154_release_queue(local);
return ret;
}
int ieee802154_sync_and_hold_queue(struct ieee802154_local *local)
{ int ret;
ieee802154_hold_queue(local);
ret = ieee802154_sync_queue(local);
set_bit(WPAN_PHY_FLAG_STATE_QUEUE_STOPPED, &local->phy->flags);
return ret;
}
int ieee802154_mlme_op_pre(struct ieee802154_local *local)
{ return ieee802154_sync_and_hold_queue(local);
}
int ieee802154_mlme_tx_locked(struct ieee802154_local *local, struct ieee802154_sub_if_data *sdata, struct sk_buff *skb)
{ /* Avoid possible calls to ->ndo_stop() when we asynchronously perform * MLME transmissions.
*/
ASSERT_RTNL();
/* Ensure the device was not stopped, otherwise error out */ if (!local->open_count) return -ENETDOWN;
/* Warn if the ieee802154 core thinks MLME frames can be sent while the * net interface expects this cannot happen.
*/ if (WARN_ON_ONCE(!netif_running(sdata->dev))) return -ENETDOWN;
static netdev_tx_t
ieee802154_hot_tx(struct ieee802154_local *local, struct sk_buff *skb)
{ /* Warn if the net interface tries to transmit frames while the * ieee802154 core assumes the queue is stopped.
*/
WARN_ON_ONCE(ieee802154_queue_is_stopped(local));
/* TODO we should move it to wpan_dev_hard_header and dev_hard_header * functions. The reason is wireshark will show a mac header which is * with security fields but the payload is not encrypted.
*/
rc = mac802154_llsec_encrypt(&sdata->sec, skb); if (rc) {
netdev_warn(dev, "encryption failed: %i\n", rc);
kfree_skb(skb); return NETDEV_TX_OK;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.