Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 620344c4 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller
Browse files

net: core: add __netdev_sent_queue as variant of __netdev_tx_sent_queue



Similar to netdev_sent_queue add helper __netdev_sent_queue as variant
of __netdev_tx_sent_queue.

Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 358be656
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -3226,6 +3226,14 @@ static inline void netdev_sent_queue(struct net_device *dev, unsigned int bytes)
	netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes);
}

static inline bool __netdev_sent_queue(struct net_device *dev,
				       unsigned int bytes,
				       bool xmit_more)
{
	return __netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes,
				      xmit_more);
}

static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue,
					     unsigned int pkts, unsigned int bytes)
{