aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
authorTom Herbert <therbert@google.com>2011-11-28 11:32:52 -0500
committerDavid S. Miller <davem@davemloft.net>2011-11-29 12:46:19 -0500
commitc5d67bd78c5dc540e3461c36fb3d389fbe0de4c3 (patch)
treee0536d39c7f01adc4b6041806aea15deccee8a8b /include/linux/netdevice.h
parent7346649826382b769cfadf4a2fe8a84d060c55e9 (diff)
net: Add netdev interfaces for recording sends/comp
Add interfaces for drivers to call for recording number of packets and bytes at send time and transmit completion. Also, added a function to "reset" a queue. These will be used by Byte Queue Limits. Signed-off-by: Tom Herbert <therbert@google.com> Acked-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index d19f93265cac..9b24cc7a54d1 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1859,6 +1859,34 @@ static inline int netif_xmit_frozen_or_stopped(const struct netdev_queue *dev_qu
1859 return dev_queue->state & QUEUE_STATE_ANY_XOFF_OR_FROZEN; 1859 return dev_queue->state & QUEUE_STATE_ANY_XOFF_OR_FROZEN;
1860} 1860}
1861 1861
1862static inline void netdev_tx_sent_queue(struct netdev_queue *dev_queue,
1863 unsigned int bytes)
1864{
1865}
1866
1867static inline void netdev_sent_queue(struct net_device *dev, unsigned int bytes)
1868{
1869 netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes);
1870}
1871
1872static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue,
1873 unsigned pkts, unsigned bytes)
1874{
1875}
1876
1877static inline void netdev_completed_queue(struct net_device *dev,
1878 unsigned pkts, unsigned bytes)
1879{
1880 netdev_tx_completed_queue(netdev_get_tx_queue(dev, 0), pkts, bytes);
1881}
1882
1883static inline void netdev_tx_reset_queue(struct netdev_queue *q)
1884{
1885}
1886
1887static inline void netdev_reset_queue(struct net_device *dev_queue)
1888{
1889 netdev_tx_reset_queue(netdev_get_tx_queue(dev_queue, 0));
1862} 1890}
1863 1891
1864/** 1892/**