mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-13 20:33:15 +00:00
mac802154: tx: allow xmit complete from hard irq
Replace consume_skb with dev_consume_skb_any in ieee802154_xmit_complete which can be called in hard irq and other contexts. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
a2c390aa3d
commit
3862eba691
@ -85,11 +85,10 @@ void ieee802154_xmit_complete(struct ieee802154_hw *hw, struct sk_buff *skb,
|
|||||||
hrtimer_start(&local->ifs_timer,
|
hrtimer_start(&local->ifs_timer,
|
||||||
ktime_set(0, hw->phy->sifs_period * NSEC_PER_USEC),
|
ktime_set(0, hw->phy->sifs_period * NSEC_PER_USEC),
|
||||||
HRTIMER_MODE_REL);
|
HRTIMER_MODE_REL);
|
||||||
|
|
||||||
consume_skb(skb);
|
|
||||||
} else {
|
} else {
|
||||||
ieee802154_wake_queue(hw);
|
ieee802154_wake_queue(hw);
|
||||||
consume_skb(skb);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dev_consume_skb_any(skb);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(ieee802154_xmit_complete);
|
EXPORT_SYMBOL(ieee802154_xmit_complete);
|
||||||
|
Loading…
Reference in New Issue
Block a user