summaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
authorBen Hutchings2010-07-09 11:12:41 +0200
committerDavid S. Miller2010-07-10 02:41:57 +0200
commitd77535162e736c47978d5c01469c56e1781dc91b (patch)
tree7210d55197b283c72bb8c74a0aeb8cd386b21a74 /net/core/dev.c
parentnet: Get rid of rtnl_link_stats64 / net_device_stats union (diff)
downloadkernel-qcow2-linux-d77535162e736c47978d5c01469c56e1781dc91b.tar.gz
kernel-qcow2-linux-d77535162e736c47978d5c01469c56e1781dc91b.tar.xz
kernel-qcow2-linux-d77535162e736c47978d5c01469c56e1781dc91b.zip
net: Document that dev_get_stats() returns the given pointer
Document that dev_get_stats() returns the same stats pointer it was given. Remove const qualification from the returned pointer since the caller may do what it likes with that structure. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
-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 79ee26ef5095..e2b9fa2c917e 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,
* @dev: device to get statistics from
* @storage: place to store stats
*
- * Get network statistics from device. The device driver may provide
- * its own method by setting dev->netdev_ops->get_stats64 or
- * dev->netdev_ops->get_stats; otherwise the internal statistics
- * structure is used.
+ * Get network statistics from device. Return @storage.
+ * The device driver may provide its own method by setting
+ * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
+ * otherwise the internal statistics structure is used.
*/
-const struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
- struct rtnl_link_stats64 *storage)
+struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
+ struct rtnl_link_stats64 *storage)
{
const struct net_device_ops *ops = dev->netdev_ops;