aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
Diffstat (limited to 'net/core')
-rw-r--r--net/core/dev.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 79ee26ef509..e2b9fa2c917 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -5323,13 +5323,13 @@ static void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
5323 * @dev: device to get statistics from 5323 * @dev: device to get statistics from
5324 * @storage: place to store stats 5324 * @storage: place to store stats
5325 * 5325 *
5326 * Get network statistics from device. The device driver may provide 5326 * Get network statistics from device. Return @storage.
5327 * its own method by setting dev->netdev_ops->get_stats64 or 5327 * The device driver may provide its own method by setting
5328 * dev->netdev_ops->get_stats; otherwise the internal statistics 5328 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
5329 * structure is used. 5329 * otherwise the internal statistics structure is used.
5330 */ 5330 */
5331const struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev, 5331struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
5332 struct rtnl_link_stats64 *storage) 5332 struct rtnl_link_stats64 *storage)
5333{ 5333{
5334 const struct net_device_ops *ops = dev->netdev_ops; 5334 const struct net_device_ops *ops = dev->netdev_ops;
5335 5335